const UserError = require('vn-loopback/util/user-error'); module.exports = Self => { Self.remoteMethod('removes', { description: 'Delete an Order Row', accessType: '', accepts: [{ arg: 'params', type: 'object', required: true, description: '[Row IDs], actualOrderId', http: {source: 'body'} }], returns: { type: 'string', root: true }, http: { path: `/removes`, verb: 'post' } }); Self.removes = async params => { if (!params.rows || !params.rows.length) throw new UserError('There is nothing to delete'); let isEditable = await Self.app.models.Order.isEditable(params.actualOrderId); if (!isEditable) throw new UserError('This order is not editable'); let promises = []; for (let i = 0; i < params.rows.length; i++) promises.push(Self.app.models.OrderRow.destroyById(params.rows[i])); return await Promise.all(promises); }; };