parent
b8f7f7bd69
commit
cdbbec9d36
|
@ -1,12 +1,14 @@
|
|||
module.exports = async function(fi) {
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
module.exports = async function(fi, isVies, countryFk) {
|
||||
const filter = {
|
||||
fields: ['code'],
|
||||
where: {id: this.countryFk}
|
||||
where: {id: countryFk}
|
||||
};
|
||||
const countryCode = this.fi.toUpperCase().substring(0, 2);
|
||||
const country = await app.models.Country.findOne(filter);
|
||||
const countryCode = fi.toUpperCase().substring(0, 2);
|
||||
const country = await models.Country.findOne(filter);
|
||||
const code = country ? country.code : null;
|
||||
if (this.isVies && countryCode == code)
|
||||
err();
|
||||
done();
|
||||
if (isVies && countryCode == code)
|
||||
return false;
|
||||
return true;
|
||||
};
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ module.exports = Self => {
|
|||
message: 'TIN must be unique'
|
||||
});
|
||||
|
||||
Self.validateAsync('fi', validateNIF(fi), {
|
||||
Self.validateAsync(validateNIF(this.fi, this.isVies, this.countryFk), {
|
||||
message: 'Invalid TIN'
|
||||
});
|
||||
|
||||
|
@ -93,6 +93,16 @@ module.exports = Self => {
|
|||
done();
|
||||
}
|
||||
|
||||
Self.validateAsync('fi', validationNIF, {
|
||||
message: 'El NIF es incorrecto por el Vies'
|
||||
});
|
||||
|
||||
async function validationNIF(err, done){
|
||||
if (!validateNIF(this.fi, this.isVies, this.countryFk))
|
||||
err();
|
||||
done();
|
||||
}
|
||||
|
||||
Self.validateAsync('fi', tinIsValid, {
|
||||
message: 'Invalid TIN'
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue