125 lines
4.3 KiB
JavaScript
125 lines
4.3 KiB
JavaScript
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
module.exports = function(Self) {
|
|
Self.remoteMethodCtx('makeInvoice', {
|
|
description: 'Make out an invoice from one or more tickets',
|
|
accessType: 'WRITE',
|
|
accepts: [
|
|
{
|
|
arg: 'invoiceType',
|
|
description: 'The invoice type',
|
|
type: 'string',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'companyFk',
|
|
description: 'The company id',
|
|
type: 'number',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'invoiceDate',
|
|
description: 'The invoice date',
|
|
type: 'date',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'invoiceCorrection',
|
|
description: 'The invoice correction',
|
|
type: 'object',
|
|
}
|
|
],
|
|
returns: {
|
|
type: ['object'],
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/makeInvoice`,
|
|
verb: 'POST'
|
|
}
|
|
});
|
|
|
|
Self.makeInvoice = async(ctx, invoiceType, companyFk, invoiceDate, invoiceCorrection, options) => {
|
|
const models = Self.app.models;
|
|
invoiceDate.setHours(0, 0, 0, 0);
|
|
|
|
const myOptions = {userId: ctx.req.accessToken.userId};
|
|
let tx;
|
|
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
if (!myOptions.transaction) {
|
|
tx = await Self.beginTransaction({});
|
|
myOptions.transaction = tx;
|
|
}
|
|
|
|
try {
|
|
const ticketToInvoice = await Self.rawSql(`
|
|
SELECT id
|
|
FROM tmp.ticketToInvoice`, null, myOptions);
|
|
|
|
const ticketsIds = ticketToInvoice.map(ticket => ticket.id);
|
|
const tickets = await models.Ticket.find({
|
|
where: {
|
|
id: {inq: ticketsIds}
|
|
},
|
|
fields: ['id', 'clientFk', 'addressFk']
|
|
}, myOptions);
|
|
|
|
await models.Ticket.canBeInvoiced(ctx, ticketsIds, !!invoiceCorrection, myOptions);
|
|
|
|
const [firstTicket] = tickets;
|
|
const clientId = firstTicket.clientFk;
|
|
const clientCanBeInvoiced =
|
|
await models.Client.canBeInvoiced(clientId, companyFk, myOptions);
|
|
|
|
if (!clientCanBeInvoiced)
|
|
throw new UserError(`This client can't be invoiced`);
|
|
|
|
const serial = !invoiceCorrection
|
|
? await models.InvoiceOut.getSerial(clientId, companyFk, firstTicket.addressFk, invoiceType, myOptions)
|
|
: 'R';
|
|
|
|
await Self.rawSql('CALL invoiceOut_new(?, ?, null, @invoiceId)', [serial, invoiceDate], myOptions);
|
|
|
|
const [resultInvoice] = await Self.rawSql('SELECT @invoiceId id', [], myOptions);
|
|
if (!resultInvoice?.id)
|
|
throw new UserError('No tickets to invoice', 'notInvoiced');
|
|
|
|
if (invoiceCorrection) {
|
|
await models.InvoiceCorrection.create(
|
|
Object.assign(invoiceCorrection, {correctingFk: resultInvoice.id}),
|
|
myOptions
|
|
);
|
|
}
|
|
|
|
await Self.rawSql('CALL invoiceOutBooking(?)', [resultInvoice.id], myOptions);
|
|
|
|
const client = await models.Client.findById(clientId,
|
|
{fields: ['hasElectronicInvoice', 'name', 'email']}, myOptions);
|
|
if (client.hasElectronicInvoice) {
|
|
const url = await models.Url.getUrl();
|
|
await models.NotificationQueue.create({
|
|
notificationFk: 'invoice-electronic',
|
|
authorFk: client.id,
|
|
params: JSON.stringify(
|
|
{
|
|
'name': client.name,
|
|
'email': client.email,
|
|
'ticketId': ticketsIds.join(','),
|
|
'url': url + 'ticket/index?q=' + encodeURIComponent(JSON.stringify({clientFk: clientId}))
|
|
})
|
|
}, myOptions);
|
|
}
|
|
|
|
if (tx) await tx.commit();
|
|
|
|
return resultInvoice.id;
|
|
} catch (e) {
|
|
if (tx) await tx.rollback();
|
|
throw e;
|
|
}
|
|
};
|
|
};
|