6745-2404_testToMaster #1950

Merged
alexm merged 191 commits from 6745-2404_testToMaster into master 2024-01-25 07:39:13 +00:00
1 changed files with 8 additions and 3 deletions
Showing only changes of commit c4ff4c1984 - Show all commits

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();
}
};