55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
module.exports = Self => {
|
|
Self.remoteMethod('refund', {
|
|
description: 'Create refund tickets with all their sales and services',
|
|
accessType: 'WRITE',
|
|
accepts: [
|
|
{
|
|
arg: 'ticketsIds',
|
|
type: ['number'],
|
|
required: true
|
|
},
|
|
],
|
|
returns: {
|
|
type: ['number'],
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/refund`,
|
|
verb: 'post'
|
|
}
|
|
});
|
|
|
|
Self.refund = async(ticketsIds, options) => {
|
|
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 = {where: {ticketFk: {inq: ticketsIds}}};
|
|
|
|
const sales = await models.Sale.find(filter, myOptions);
|
|
const salesIds = sales.map(sale => sale.id);
|
|
|
|
const services = await models.TicketService.find(filter, myOptions);
|
|
const servicesIds = services.map(service => service.id);
|
|
|
|
const refundedTickets = await models.Sale.refund(salesIds, servicesIds, myOptions);
|
|
|
|
if (tx) await tx.commit();
|
|
|
|
return refundedTickets;
|
|
} catch (e) {
|
|
if (tx) await tx.rollback();
|
|
throw e;
|
|
}
|
|
};
|
|
};
|