refs #6291 validateTin #1836

Merged
carlossa merged 12 commits from 6291-comprobarDNI into dev 2024-01-09 14:03:21 +00:00
2 changed files with 4 additions and 9 deletions
Showing only changes of commit c77715d865 - Show all commits

View File

@ -3014,7 +3014,7 @@ UPDATE `vn`.`client`
SET fi='65004204V'
WHERE id=1;
UPDATE `vn`.`client`
UPDATE `vn`.`worker`
SET fi='59328808D'
WHERE id=1106;

View File

@ -34,17 +34,12 @@ 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 client = (await Self.findById(this.id, {
include: {relation: 'client'}}))?.client();
if (client) {
const countryCode = client.fi?.toLowerCase().substring(0, 2);
const countryCode = this.fi?.toLowerCase().substring(0, 2);
if (!client.fi || !validateTin(client.fi, code) || countryCode == code)
err();
}
if (!this.fi || !validateTin(this.fi, code) || countryCode == code)
err();
done();
}
};