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 3 additions and 4 deletions
Showing only changes of commit df1c9e3d9f - Show all commits

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];
}
}