2017-12-04 07:17:29 +00:00
|
|
|
module.exports = Self => {
|
|
|
|
Self.remoteMethod('sumAmount', {
|
2018-01-29 11:37:54 +00:00
|
|
|
description: 'Returns the sum of greuge for a client',
|
2017-12-04 07:17:29 +00:00
|
|
|
accessType: 'READ',
|
|
|
|
accepts: [{
|
|
|
|
arg: 'id',
|
|
|
|
type: 'number',
|
|
|
|
required: true,
|
|
|
|
description: 'clientFk',
|
|
|
|
http: {source: 'path'}
|
|
|
|
}],
|
|
|
|
returns: {
|
|
|
|
arg: 'sumAmount'
|
|
|
|
},
|
|
|
|
http: {
|
|
|
|
path: `/:id/sumAmount`,
|
|
|
|
verb: 'get'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Self.sumAmount = (clientFk, callback) => {
|
2018-01-29 11:37:54 +00:00
|
|
|
let query = `SELECT SUM(amount) AS sumAmount FROM vn.greuge WHERE clientFk = ?`;
|
|
|
|
Self.rawSql(query, [clientFk])
|
|
|
|
.then(response => {
|
|
|
|
callback(null, response.length ? response[0].sumAmount : 0);
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
callback(err);
|
|
|
|
});
|
2017-12-04 07:17:29 +00:00
|
|
|
};
|
|
|
|
};
|