salix/services/loopback/common/methods/item/updateTaxes.js

43 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-02-23 12:04:44 +00:00
module.exports = Self => {
Self.remoteMethod('updateTaxes', {
description: 'Updates the item taxes',
accessType: 'WRITE',
accepts: [{
arg: 'id',
type: 'number',
required: true,
description: 'The item id',
http: {source: 'path'}
}, {
arg: 'niches',
type: ['object'],
required: true,
description: 'The list of taxes to update',
http: {source: 'body'}
}],
returns: {
type: 'boolean',
root: true
},
http: {
path: `/:id/updateTaxes`,
verb: 'post'
}
});
Self.updateTaxes = async(id, taxes) => {
2018-02-23 12:04:44 +00:00
let promises = [];
2018-02-26 11:56:42 +00:00
for (let tax of taxes) {
if (!tax.taxClassFk)
throw new Error('Tax class cannot be blank');
2018-02-23 12:04:44 +00:00
promises.push(Self.app.models.ItemTaxCountry.updateAll(
{id: tax.id},
{taxClassFk: tax.taxClassFk}
));
2018-02-26 11:56:42 +00:00
}
2018-02-23 12:04:44 +00:00
await Promise.all(promises);
return true;
};
};