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

98 lines
3.0 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-07-22 11:14:00 +00:00
Self.remoteMethodCtx('updatePrice', {
description: 'Changes the price of a sale',
2019-05-22 10:35:24 +00:00
accessType: 'WRITE',
accepts: [
{
arg: 'id',
description: 'The sale id',
type: 'number',
required: true,
http: {source: 'path'}
}, {
arg: 'newPrice',
description: 'The new price',
type: 'number',
required: true
}
],
returns: {
type: 'Number',
root: true
},
http: {
path: `/:id/updatePrice`,
verb: 'post'
}
});
2019-07-22 11:14:00 +00:00
Self.updatePrice = async(ctx, id, newPrice) => {
2019-06-05 05:41:20 +00:00
let models = Self.app.models;
2019-06-13 07:21:36 +00:00
let tx = await Self.beginTransaction({});
2018-08-14 10:48:12 +00:00
try {
2019-06-13 07:21:36 +00:00
let options = {transaction: tx};
let filter = {
include: {
relation: 'ticket',
scope: {
include: {
relation: 'client',
scope: {
fields: ['salesPersonFk']
}
},
fields: ['id', 'clientFk']
}
}
};
2019-06-05 05:41:20 +00:00
let sale = await models.Sale.findById(id, filter, options);
2019-07-22 11:14:00 +00:00
let isEditable = await models.Ticket.isEditable(ctx, sale.ticketFk);
if (!isEditable)
throw new UserError(`The sales of this ticket can't be modified`);
2020-05-15 10:17:34 +00:00
const userId = ctx.req.accessToken.userId;
let usesMana = await models.WorkerMana.findOne({where: {workerFk: userId}, fields: 'amount'}, options);
let componentCode = usesMana ? 'mana' : 'buyerDiscount';
let discount = await models.Component.findOne({where: {code: componentCode}}, options);
let componentId = discount.id;
let componentValue = newPrice - sale.price;
let where = {
2019-05-29 10:41:26 +00:00
componentFk: componentId,
saleFk: id
};
2019-06-05 05:41:20 +00:00
let saleComponent = await models.SaleComponent.findOne({where}, options);
if (saleComponent) {
2019-06-05 05:41:20 +00:00
await models.SaleComponent.updateAll(where, {
value: saleComponent.value + componentValue
}, options);
} else {
2019-06-05 05:41:20 +00:00
await models.SaleComponent.create({
saleFk: id,
componentFk: componentId,
value: componentValue
}, options);
}
2018-08-14 10:48:12 +00:00
await sale.updateAttributes({price: newPrice}, options);
2019-05-29 10:41:26 +00:00
2020-05-15 10:17:34 +00:00
query = `CALL vn.manaSpellersRequery(?)`;
await Self.rawSql(query, [userId], options);
2019-05-29 10:41:26 +00:00
2019-06-13 07:21:36 +00:00
await tx.commit();
return sale;
} catch (error) {
2019-06-13 07:21:36 +00:00
await tx.rollback();
throw error;
}
};
};