108 lines
3.5 KiB
JavaScript
108 lines
3.5 KiB
JavaScript
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
module.exports = Self => {
|
|
Self.remoteMethodCtx('transferInvoice', {
|
|
description: 'Transfer an issued invoice to another client',
|
|
accessType: 'WRITE',
|
|
accepts: [
|
|
{
|
|
arg: 'id',
|
|
type: 'number',
|
|
required: true,
|
|
description: 'Issued invoice id'
|
|
},
|
|
{
|
|
arg: 'refFk',
|
|
type: 'string',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'newClientFk',
|
|
type: 'number',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'cplusRectificationTypeFk',
|
|
type: 'number',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'siiTypeInvoiceOutFk',
|
|
type: 'number',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'invoiceCorrectionTypeFk',
|
|
type: 'number',
|
|
required: true
|
|
},
|
|
],
|
|
returns: {
|
|
type: 'boolean',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: '/transferInvoice',
|
|
verb: 'post'
|
|
}
|
|
});
|
|
|
|
Self.transferInvoice = async(ctx, options) => {
|
|
const models = Self.app.models;
|
|
const myOptions = {userId: ctx.req.accessToken.userId};
|
|
const {id, refFk, newClientFk, cplusRectificationTypeFk, siiTypeInvoiceOutFk, invoiceCorrectionTypeFk} = ctx.args;
|
|
let tx;
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
const {clientFk} = await models.InvoiceOut.findById(id);
|
|
|
|
if (clientFk == newClientFk)
|
|
throw new UserError(`Select a different client`);
|
|
|
|
if (!myOptions.transaction) {
|
|
tx = await Self.beginTransaction({});
|
|
myOptions.transaction = tx;
|
|
}
|
|
try {
|
|
const filterRef = {where: {refFk: refFk}};
|
|
const tickets = await models.Ticket.find(filterRef, myOptions);
|
|
const ticketsIds = tickets.map(ticket => ticket.id);
|
|
const refundTickets = await models.Ticket.refund(ctx, ticketsIds, null, myOptions);
|
|
|
|
const filterTicket = {where: {ticketFk: {inq: ticketsIds}}};
|
|
|
|
const services = await models.TicketService.find(filterTicket, myOptions);
|
|
const servicesIds = services.map(service => service.id);
|
|
|
|
const sales = await models.Sale.find(filterTicket, myOptions);
|
|
const salesIds = sales.map(sale => sale.id);
|
|
|
|
const clonedTickets = await models.Sale.clone(ctx, salesIds, servicesIds, null, false, myOptions);
|
|
const clonedTicketIds = [];
|
|
|
|
for (const clonedTicket of clonedTickets) {
|
|
await clonedTicket.updateAttribute('clientFk', newClientFk, myOptions);
|
|
clonedTicketIds.push(clonedTicket.id);
|
|
}
|
|
|
|
const invoiceCorrection = {
|
|
correctedFk: id,
|
|
cplusRectificationTypeFk,
|
|
siiTypeInvoiceOutFk,
|
|
invoiceCorrectionTypeFk
|
|
};
|
|
const refundTicketIds = refundTickets.map(ticket => ticket.id);
|
|
|
|
await models.Ticket.invoiceTickets(ctx, refundTicketIds, invoiceCorrection, myOptions);
|
|
|
|
const [invoiceId] = await models.Ticket.invoiceTicketsAndPdf(ctx, clonedTicketIds, null, myOptions);
|
|
|
|
return invoiceId;
|
|
} catch (e) {
|
|
if (tx) await tx.rollback();
|
|
throw e;
|
|
}
|
|
};
|
|
};
|