refs #5525 suppliercif
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Carlos Satorres 2023-12-27 17:46:46 +01:00
parent 18e87a05c4
commit df1c9e3d9f
1 changed files with 3 additions and 4 deletions

View File

@ -8,7 +8,6 @@ module.exports = {
this.client = await this.findOneFromDef('client', [this.companyId, this.companyId, this.id]);
this.checkMainEntity(this.client);
this.supplier = await this.findOneFromDef('supplier', [this.companyId, this.companyId, this.id]);
console.log(this.supplier);
},
props: {
id: {
@ -26,9 +25,9 @@ module.exports = {
return db.findOne(`
SELECT sa.iban, s.nif
FROM supplierAccount sa
INNER JOIN supplier s ON sa.supplierFk = s.id
WHERE s.countryFk = ?
LIMIT 1`), [this.countryFk];
JOIN company co ON co.supplierAccountFk = sa.id
JOIN supplier s ON sa.supplierFk = s.id
WHERE co.id = ?`) [this.companyId];
}
}