62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
module.exports = function(Self) {
|
|
Self.remoteMethod('canBeInvoiced', {
|
|
description: 'Change property isEqualizated in all client addresses',
|
|
accessType: 'READ',
|
|
accepts: [
|
|
{
|
|
arg: 'id',
|
|
type: 'number',
|
|
required: true,
|
|
description: 'Client id',
|
|
http: {source: 'path'}
|
|
},
|
|
{
|
|
arg: 'companyFk',
|
|
description: 'The company id',
|
|
type: 'number',
|
|
required: true
|
|
}
|
|
],
|
|
returns: {
|
|
arg: 'data',
|
|
type: 'boolean',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/:id/canBeInvoiced`,
|
|
verb: 'get'
|
|
}
|
|
});
|
|
|
|
Self.canBeInvoiced = async(id, companyFk, options) => {
|
|
const models = Self.app.models;
|
|
const myOptions = {};
|
|
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
const client = await models.Client.findById(id, {
|
|
fields: ['id', 'isTaxDataChecked', 'hasToInvoice', 'payMethodFk'],
|
|
include:
|
|
{
|
|
relation: 'payMethod',
|
|
scope: {
|
|
fields: ['code']
|
|
}
|
|
}
|
|
}, myOptions);
|
|
|
|
const company = await models.Company.findById(companyFk, {fields: ['supplierAccountFk']}, myOptions);
|
|
|
|
if (client.payMethod().code === 'wireTransfer' && !company.supplierAccountFk)
|
|
throw new UserError('The company has not informed the supplier account for bank transfers');
|
|
|
|
if (client.isTaxDataChecked && client.hasToInvoice)
|
|
return true;
|
|
|
|
return false;
|
|
};
|
|
};
|