salix/modules/supplier/back/models/supplier.js

162 lines
5.1 KiB
JavaScript
Raw Normal View History

2020-11-02 13:30:33 +00:00
const UserError = require('vn-loopback/util/user-error');
const validateTin = require('vn-loopback/util/validateTin');
const LoopBackContext = require('loopback-context');
2020-11-02 13:30:33 +00:00
module.exports = Self => {
require('../methods/supplier/filter')(Self);
2020-10-20 07:44:44 +00:00
require('../methods/supplier/getSummary')(Self);
2020-10-30 14:11:45 +00:00
require('../methods/supplier/updateFiscalData')(Self);
2020-12-16 07:05:41 +00:00
require('../methods/supplier/consumption')(Self);
2022-03-17 13:27:55 +00:00
require('../methods/supplier/freeAgencies')(Self);
2022-09-26 11:33:27 +00:00
require('../methods/supplier/campaignMetricsPdf')(Self);
require('../methods/supplier/campaignMetricsEmail')(Self);
2022-10-17 05:25:25 +00:00
require('../methods/supplier/newSupplier')(Self);
2020-11-02 13:30:33 +00:00
Self.validatesPresenceOf('name', {
message: 'The social name cannot be empty'
});
if (this.city) {
Self.validatesPresenceOf('city', {
message: 'City cannot be empty'
});
}
if (this.nif) {
Self.validatesPresenceOf('nif', {
message: 'The nif cannot be empty'
});
}
2020-11-02 13:30:33 +00:00
Self.validatesUniquenessOf('nif', {
message: 'TIN must be unique'
});
Self.validateAsync('nif', tinIsValid, {
message: 'Invalid TIN'
});
2020-11-04 10:37:54 +00:00
Self.validatesLengthOf('postCode', {
allowNull: true,
allowBlank: true,
min: 3, max: 10
});
Self.validateAsync('postCode', hasValidPostcode, {
message: `The postcode doesn't exist. Please enter a correct one`
});
async function hasValidPostcode(err, done) {
if (!this.postcode)
return done();
const models = Self.app.models;
const postcode = await models.Postcode.findById(this.postcode);
if (!postcode) err();
done();
}
2020-11-02 13:30:33 +00:00
async function tinIsValid(err, done) {
2022-10-17 05:25:25 +00:00
if (!this.countryFk)
return done();
2020-11-02 13:30:33 +00:00
const filter = {
fields: ['code'],
where: {id: this.countryFk}
};
const country = await Self.app.models.Country.findOne(filter);
const code = country ? country.code.toLowerCase() : null;
if (!this.nif || !validateTin(this.nif, code))
err();
done();
}
2023-04-12 10:03:55 +00:00
Self.validateAsync('nif', areFirstTwoCharsLetters, nifInvalid, {
message: 'The first two values are letters.'});
function areFirstTwoCharsLetters(str) {
return /^[a-zA-Z]{2}/.test(str);
}
async function nifInvalid(err, areFirstTwoCharsLetters) {
if (this.isVies == 1 && areFirstTwoCharsLetters(this.nif))
err();
}
2020-11-02 13:30:33 +00:00
function isAlpha(value) {
const regexp = new RegExp(/^[ñça-zA-Z0-9\s]*$/i);
return regexp.test(value);
}
2020-12-14 15:09:17 +00:00
Self.validateAsync('payMethodFk', hasSupplierAccount, {
message: 'You can not select this payment method without a registered bankery account'
});
async function hasSupplierAccount(err, done) {
2022-10-17 05:25:25 +00:00
if (!this.payMethodFk) return done();
2020-12-14 15:09:17 +00:00
const payMethod = await Self.app.models.PayMethod.findById(this.payMethodFk);
const supplierAccount = await Self.app.models.SupplierAccount.findOne({where: {supplierFk: this.id}});
const hasIban = supplierAccount && supplierAccount.iban;
const isMissingIban = payMethod && payMethod.isIbanRequiredForSuppliers && !hasIban;
2020-12-14 15:09:17 +00:00
if (isMissingIban)
2020-12-14 15:09:17 +00:00
err();
2020-12-15 08:59:53 +00:00
2020-12-14 15:09:17 +00:00
done();
}
2020-11-02 13:30:33 +00:00
Self.observe('before save', async function(ctx) {
2022-10-17 05:25:25 +00:00
if (ctx.isNewInstance) return;
const loopbackContext = LoopBackContext.getCurrentContext();
const changes = ctx.data || ctx.instance;
const orgData = ctx.currentInstance;
const userId = loopbackContext.active.accessToken.userId;
const isNotFinancial = !await Self.app.models.Account.hasRole(userId, 'financial');
const isPayMethodChecked = changes.isPayMethodChecked || orgData.isPayMethodChecked;
const hasChanges = orgData && changes;
const isPayMethodCheckedChanged = hasChanges
2022-10-17 05:25:25 +00:00
&& orgData.isPayMethodChecked != isPayMethodChecked;
if (isNotFinancial && isPayMethodCheckedChanged)
throw new UserError('You can not modify is pay method checked');
});
Self.validateAsync('name', 'countryFk', hasSupplierSameName, {
message: 'A supplier with the same name already exists. Change the country.'
});
async function hasSupplierSameName(err, done) {
if (!this.name || !this.countryFk) done();
const supplier = await Self.app.models.Supplier.findOne(
{
where: {
name: this.name,
countryFk: this.countryFk
},
fields: ['id']
});
if (supplier && supplier.id != this.id)
err();
done();
}
Self.observe('before save', async function(ctx) {
const changes = ctx.data || ctx.instance;
const orgData = ctx.currentInstance;
2020-11-02 13:30:33 +00:00
const socialName = changes.name || orgData.name;
const hasChanges = orgData && changes;
const socialNameChanged = hasChanges
&& orgData.socialName != socialName;
if ((socialNameChanged) && !isAlpha(socialName))
throw new UserError('The social name has an invalid format');
2020-11-02 13:30:33 +00:00
});
};