salix/modules/ticket/back/methods/sale/recalculatePrice.js

35 lines
1013 B
JavaScript
Raw Normal View History

const UserError = require('vn-loopback/util/user-error');
module.exports = Self => {
2019-11-21 11:00:56 +00:00
Self.remoteMethodCtx('recalculatePrice', {
description: 'Calculates the price of a sale and its components',
accessType: 'WRITE',
accepts: [{
arg: 'id',
description: 'The sale id',
type: 'number',
required: true,
http: {source: 'path'}
}],
returns: {
type: 'Number',
root: true
},
http: {
2019-11-21 11:00:56 +00:00
path: `/:id/recalculatePrice`,
verb: 'post'
}
});
2019-11-21 11:00:56 +00:00
Self.recalculatePrice = async(ctx, id) => {
const models = Self.app.models;
const sale = await Self.findById(id);
const isEditable = await models.Ticket.isEditable(ctx, sale.ticketFk);
if (!isEditable)
throw new UserError(`The sales of this ticket can't be modified`);
2020-01-15 12:07:33 +00:00
return Self.rawSql('CALL vn.sale_calculateComponent(?, null)', [id]);
};
};