refs #6291 tin valid
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Carlos Satorres 2023-12-21 15:07:03 +01:00
parent 73d1c1698b
commit c4ff4c1984
1 changed files with 8 additions and 3 deletions

View File

@ -34,12 +34,17 @@ module.exports = Self => {
fields: ['code'],
where: {id: this.countryFk}
};
const country = await Self.app.models.Country.findOne(filter);
const code = country ? country.code.toLowerCase() : null;
const countryCode = this.fi?.toLowerCase().substring(0, 2);
const client = (await Self.findById(this.id, {
include: {relation: 'client'}}))?.client();
if (client) {
const countryCode = client.fi?.toLowerCase().substring(0, 2);
if (!this.fi || !validateTin(this.fi, code) || (this.isVies && countryCode == code))
err();
if (!client.fi || !validateTin(client.fi, code) || countryCode == code)
err();
}
done();
}
};