34 lines
845 B
JavaScript
34 lines
845 B
JavaScript
module.exports = Self => {
|
|
Self.remoteMethod('getTotal', {
|
|
description: 'Gets the total for an order',
|
|
accessType: 'READ',
|
|
accepts: [{
|
|
arg: 'id',
|
|
type: 'number',
|
|
required: true,
|
|
description: 'ticket id',
|
|
http: {source: 'path'}
|
|
}],
|
|
returns: {
|
|
type: 'number',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/:id/getTotal`,
|
|
verb: 'GET'
|
|
}
|
|
});
|
|
|
|
Self.getTotal = async(orderFk, options) => {
|
|
const myOptions = {};
|
|
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
const query = `SELECT hedera.order_getTotal(?) total;`;
|
|
const [total] = await Self.rawSql(query, [orderFk], myOptions);
|
|
|
|
return total.total;
|
|
};
|
|
};
|