fixed billing data

This commit is contained in:
Joan Sanchez 2018-09-27 08:46:58 +02:00
parent a5e74335a9
commit a0c1388cf0
1 changed files with 21 additions and 21 deletions

View File

@ -30,34 +30,34 @@ module.exports = Self => {
Self.updateBillingData = async(ctx, params, id) => { Self.updateBillingData = async(ctx, params, id) => {
let userId = ctx.req.accessToken.userId; let userId = ctx.req.accessToken.userId;
let isAdministrative = await Self.app.models.Account.hasRole(userId, 'administrative');
let client = await Self.app.models.Client.findOne({where: {id: id}}); let data = filterAttributes(params, [
if (!isAdministrative && client.isTaxDataChecked)
throw new UserError(`You don't have enough privileges to do that`);
let validUpdateParams = [
'payMethodFk', 'payMethodFk',
'dueDay', 'dueDay',
'iban', 'iban',
'hasLcr', 'hasLcr',
'hasCoreVnl', 'hasCoreVnl',
'hasSepaVnl' 'hasSepaVnl']);
];
for (const key in params) { if (!Object.keys(data).length) return;
if (validUpdateParams.indexOf(key) === -1)
let isAdministrative = await Self.app.models.Account.hasRole(userId, 'administrative');
let client = await Self.app.models.Client.findOne({where: {id: id}});
if (!isAdministrative && client.isTaxDataChecked)
throw new UserError(`You don't have enough privileges to do that`); throw new UserError(`You don't have enough privileges to do that`);
}
return client.updateAttributes({ return client.updateAttributes(data);
payMethodFk: params.payMethodFk, };
dueDay: params.dueDay,
iban: params.iban, function filterAttributes(params, allowed) {
hasLcr: params.hasLcr, let newParams = {};
hasCoreVnl: params.hasCoreVnl,
hasSepaVnl: params.hasSepaVnl Object.keys(params).forEach(attribute => {
if (allowed.indexOf(attribute) > -1)
newParams[attribute] = params[attribute];
}); });
};
return newParams;
}
}; };