36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
let UserError = require('../../helpers').UserError;
|
|
|
|
module.exports = Self => {
|
|
Self.remoteMethod('removes', {
|
|
description: 'Change the state of a ticket',
|
|
accessType: '',
|
|
accepts: [{
|
|
arg: 'params',
|
|
type: 'object',
|
|
required: true,
|
|
description: '[sales IDs], actualTicketFk',
|
|
http: {source: 'body'}
|
|
}],
|
|
returns: {
|
|
type: 'string',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/removes`,
|
|
verb: 'post'
|
|
}
|
|
});
|
|
|
|
Self.removes = async params => {
|
|
let thisTicketIsEditable = await Self.app.models.Ticket.isEditable(params.actualTicketFk);
|
|
if (!thisTicketIsEditable)
|
|
throw new UserError(`The sales of this ticket can't be modified`);
|
|
|
|
let promises = [];
|
|
for (let i = 0; i < params.sales.length; i++) {
|
|
promises.push(Self.app.models.Sale.destroyById(params.sales[i].id));
|
|
}
|
|
return Promise.all(promises);
|
|
};
|
|
};
|