43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
|
module.exports = Self => {
|
||
|
Self.remoteMethod('summary', {
|
||
|
description: 'The invoiceIn summary',
|
||
|
accessType: 'READ',
|
||
|
accepts: [{
|
||
|
arg: 'id',
|
||
|
type: 'number',
|
||
|
required: true,
|
||
|
description: 'The invoiceIn id',
|
||
|
http: {source: 'path'}
|
||
|
}],
|
||
|
returns: {
|
||
|
type: 'object',
|
||
|
root: true
|
||
|
},
|
||
|
http: {
|
||
|
path: `/:id/summary`,
|
||
|
verb: 'GET'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Self.summary = async id => {
|
||
|
const filter = {
|
||
|
include: [
|
||
|
{
|
||
|
relation: 'company',
|
||
|
scope: {
|
||
|
fields: ['id', 'code']
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
relation: 'supplier',
|
||
|
scope: {
|
||
|
fields: ['id', 'name']
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
return Self.app.models.InvoiceIn.findById(id, filter);
|
||
|
};
|
||
|
};
|