2018-08-02 07:49:00 +00:00
|
|
|
let UserError = require('../../helpers').UserError;
|
|
|
|
|
2018-07-13 10:37:58 +00:00
|
|
|
module.exports = Self => {
|
|
|
|
Self.remoteMethodCtx('updateBillingData', {
|
|
|
|
description: 'Updates billing data of a client',
|
|
|
|
accessType: 'WRITE',
|
|
|
|
accepts: [{
|
|
|
|
arg: 'data',
|
|
|
|
type: 'Object',
|
|
|
|
required: true,
|
|
|
|
description: 'Params to update',
|
|
|
|
http: {source: 'body'}
|
|
|
|
}, {
|
|
|
|
arg: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
description: 'Model id',
|
|
|
|
http: {source: 'path'}
|
|
|
|
}],
|
|
|
|
returns: {
|
|
|
|
arg: 'data',
|
|
|
|
type: 'Worker',
|
|
|
|
root: true
|
|
|
|
},
|
|
|
|
http: {
|
|
|
|
path: `/:id/updateBillingData`,
|
|
|
|
verb: 'PATCH'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Self.updateBillingData = async(ctx, params, id) => {
|
|
|
|
let userId = ctx.req.accessToken.userId;
|
|
|
|
let isAdministrative = await Self.app.models.Account.hasRole(userId, 'administrative');
|
|
|
|
|
|
|
|
let [taxData] = await Self.app.models.Client.find({where: {id: id}, fields: ['isTaxDataChecked']});
|
|
|
|
if (!isAdministrative && taxData.isTaxDataChecked)
|
2018-08-02 07:49:00 +00:00
|
|
|
throw new UserError(`You don't have enough privileges to do that`);
|
2018-07-13 10:37:58 +00:00
|
|
|
|
|
|
|
let validUpdateParams = [
|
|
|
|
'payMethodFk',
|
|
|
|
'dueDay',
|
|
|
|
'iban',
|
|
|
|
'hasLcr',
|
|
|
|
'hasCoreVnl',
|
|
|
|
'hasSepaVnl'
|
|
|
|
];
|
|
|
|
|
|
|
|
for (const key in params) {
|
|
|
|
if (validUpdateParams.indexOf(key) === -1)
|
2018-08-02 07:49:00 +00:00
|
|
|
throw new UserError(`You don't have enough privileges to do that`);
|
2018-07-13 10:37:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return await Self.app.models.Client.update({id: id}, params);
|
|
|
|
};
|
|
|
|
};
|