39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
module.exports = Self => {
|
|
Self.remoteMethodCtx('updateConcept', {
|
|
description: 'Updates the concept of a sale',
|
|
accessType: 'WRITE',
|
|
accepts: [{
|
|
arg: 'id',
|
|
type: 'number',
|
|
required: true,
|
|
description: 'sale ID',
|
|
http: {source: 'path'}
|
|
}, {
|
|
arg: 'newConcept',
|
|
type: 'any',
|
|
required: true,
|
|
description: 'new concept'
|
|
}],
|
|
returns: {
|
|
type: 'string',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/:id/updateConcept`,
|
|
verb: 'post'
|
|
}
|
|
});
|
|
|
|
Self.updateConcept = async(ctx, id, newConcept) => {
|
|
const models = Self.app.models;
|
|
const currentLine = await models.Sale.findById(id);
|
|
|
|
const canEditSale = await models.Sale.canEdit(ctx, [id]);
|
|
|
|
if (!canEditSale)
|
|
throw new UserError(`Sale(s) blocked, please contact production`);
|
|
|
|
return await currentLine.updateAttributes({concept: newConcept});
|
|
};
|
|
};
|