let UserError = require('vn-loopback/util/user-error'); module.exports = Self => { Self.remoteMethodCtx('updatePrice', { description: 'Changes the price of a sale', 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' } }); Self.updatePrice = async(ctx, id, newPrice, options) => { const $t = ctx.req.__; // $translate const models = Self.app.models; const myOptions = {}; let tx; if (typeof options == 'object') Object.assign(myOptions, options); if (!myOptions.transaction) { tx = await Self.beginTransaction({}); myOptions.transaction = tx; } try { const filter = { include: { relation: 'ticket', scope: { include: { relation: 'client', scope: { fields: ['salesPersonFk'], include: { relation: 'salesPersonUser', scope: { fields: ['id', 'name'] } } } }, fields: ['id', 'clientFk'] } } }; const sale = await models.Sale.findById(id, filter, myOptions); const isEditable = await models.Ticket.isEditable(ctx, sale.ticketFk, myOptions); if (!isEditable) throw new UserError(`The sales of this ticket can't be modified`); const canEditSale = await models.Sale.canEdit(ctx, [id], myOptions); if (!canEditSale) throw new UserError(`Sale(s) blocked, please contact production`); const oldPrice = sale.price; const userId = ctx.req.accessToken.userId; const usesMana = await models.WorkerMana.findOne({where: {workerFk: userId}, fields: 'amount'}, myOptions); const componentCode = usesMana ? 'mana' : 'buyerDiscount'; const discount = await models.Component.findOne({where: {code: componentCode}}, myOptions); const componentId = discount.id; const componentValue = newPrice - sale.price; const where = { componentFk: componentId, saleFk: id }; const saleComponent = await models.SaleComponent.findOne({where}, myOptions); if (saleComponent) { await models.SaleComponent.updateAll(where, { value: saleComponent.value + componentValue }, myOptions); } else { await models.SaleComponent.create({ saleFk: id, componentFk: componentId, value: componentValue }, myOptions); } await sale.updateAttributes({price: newPrice}, myOptions); query = `CALL vn.manaSpellersRequery(?)`; await Self.rawSql(query, [userId], myOptions); const salesPerson = sale.ticket().client().salesPersonUser(); if (salesPerson) { const origin = ctx.req.headers.origin; const message = $t('Changed sale price', { ticketId: sale.ticket().id, itemId: sale.itemFk, concept: sale.concept, quantity: sale.quantity, oldPrice: oldPrice, newPrice: newPrice, ticketUrl: `${origin}/#!/ticket/${sale.ticket().id}/sale`, itemUrl: `${origin}/#!/item/${sale.itemFk}/summary` }); await models.Chat.sendCheckingPresence(ctx, salesPerson.id, message, myOptions); } if (tx) await tx.commit(); return sale; } catch (error) { if (tx) await tx.rollback(); throw error; } }; };