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

64 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-12-27 11:54:16 +00:00
let UserError = require('vn-loopback/util/user-error');
module.exports = Self => {
2019-03-06 07:54:56 +00:00
Self.remoteMethodCtx('updateDiscount', {
description: 'Changes the discount of a sale',
2019-05-22 10:35:24 +00:00
accessType: 'WRITE',
accepts: [{
arg: 'params',
type: 'object',
required: true,
description: 'sale ID, newDiscount, price',
http: {source: 'body'}
}],
returns: {
type: 'string',
root: true
},
http: {
path: `/updateDiscount`,
verb: 'post'
}
});
2019-03-06 07:54:56 +00:00
Self.updateDiscount = async(ctx, params) => {
2018-07-16 07:19:38 +00:00
if (isNaN(params.editLines[0].discount))
throw new UserError(`The value should be a number`);
2018-07-13 13:21:37 +00:00
let model = Self.app.models;
2019-05-06 05:40:59 +00:00
let ticket = await model.Ticket.findById(params.editLines[0].ticketFk, {
include: {
relation: 'client',
scope: {
fields: ['salesPersonFk']
}
2019-05-06 05:40:59 +00:00
},
});
if (ticket.refFk)
2019-03-06 07:54:56 +00:00
throw new UserError(`The sales of this ticket can't be modified`);
let componentToUse;
2019-05-06 05:40:59 +00:00
let usesMana = await model.WorkerMana.findOne({where: {workerFk: ticket.client().salesPersonFk}, fields: 'amount'});
if (usesMana)
componentToUse = 37;
else
componentToUse = 34;
for (let i = 0; i < params.editLines.length; i++) {
2018-07-13 13:21:37 +00:00
let currentLine = await model.Sale.findOne({where: {id: params.editLines[i].id}, fields: 'price'});
2018-07-16 07:19:38 +00:00
let value = ((-currentLine.price * params.editLines[i].discount) / 100);
2018-07-13 13:21:37 +00:00
await model.SaleComponent.upsert({saleFk: params.editLines[i].id, value: value, componentFk: componentToUse});
2018-07-13 13:21:37 +00:00
await model.Sale.update({id: params.editLines[i].id}, {discount: params.editLines[i].discount});
}
2019-02-14 11:06:14 +00:00
if (usesMana) {
query = `
call vn.manaSpellersRequery(?)`;
2019-05-06 05:40:59 +00:00
await Self.rawSql(query, [ticket.client().salesPersonFk]);
2019-02-14 11:06:14 +00:00
}
};
};