50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
module.exports = Self => {
|
|
Self.remoteMethod('refund', {
|
|
description: 'Create refund tickets with sales and services if provided',
|
|
accessType: 'WRITE',
|
|
accepts: [{
|
|
arg: 'ref',
|
|
type: 'string',
|
|
description: 'The invoice reference'
|
|
}],
|
|
returns: {
|
|
type: ['number'],
|
|
root: true
|
|
},
|
|
http: {
|
|
path: '/refund',
|
|
verb: 'post'
|
|
}
|
|
});
|
|
|
|
Self.refund = async(ref, 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: {refFk: ref}};
|
|
const tickets = await models.Ticket.find(filter, myOptions);
|
|
|
|
const ticketsIds = tickets.map(ticket => ticket.id);
|
|
|
|
const refundedTickets = await models.Ticket.refund(ticketsIds, myOptions);
|
|
|
|
if (tx) await tx.commit();
|
|
|
|
return refundedTickets;
|
|
} catch (e) {
|
|
if (tx) await tx.rollback();
|
|
throw e;
|
|
}
|
|
};
|
|
};
|