43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
|
module.exports = function(Client) {
|
||
|
Client.remoteMethod('addressesPropagateRe', {
|
||
|
description: 'Change property isEqualizated in all client addresses',
|
||
|
accessType: 'WRITE',
|
||
|
accepts: [
|
||
|
{
|
||
|
arg: 'id',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
description: 'Client id',
|
||
|
http: {source: 'path'}
|
||
|
},
|
||
|
{
|
||
|
arg: 'data',
|
||
|
type: 'Object',
|
||
|
required: true,
|
||
|
description: 'data with new value',
|
||
|
http: {source: 'body'}
|
||
|
}
|
||
|
],
|
||
|
returns: {
|
||
|
arg: 'data',
|
||
|
type: 'boolean',
|
||
|
root: true
|
||
|
},
|
||
|
http: {
|
||
|
path: `/:id/addressesPropagateRe`,
|
||
|
verb: 'patch'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Client.addressesPropagateRe = (id, data, callback) => {
|
||
|
if (data.hasOwnProperty('isEqualizated')) {
|
||
|
Client.app.models.Address.updateAll({clientFk: id}, data, (err, info) => {
|
||
|
if (err)
|
||
|
return callback(err, null);
|
||
|
callback(null, true);
|
||
|
});
|
||
|
} else {
|
||
|
callback(null, false);
|
||
|
}
|
||
|
};
|
||
|
}
|