Merge pull request 'fix(delivery-note_report): fix taxes' (!1318) from hotFix_delivery-note-report into master
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #1318
This commit is contained in:
Alex Moreno 2023-02-09 13:02:39 +00:00
commit a094eedfe3
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ module.exports = {
this.sales = await this.rawSqlFromDef('sales', [this.id]);
this.address = await this.findOneFromDef(`address`, [this.id]);
this.services = await this.rawSqlFromDef('services', [this.id]);
this.taxes = await this.rawSqlFromDef('taxes', [this.id]);
this.taxes = await this.findOneFromDef('taxes', [this.id]);
this.packagings = await this.rawSqlFromDef('packagings', [this.id]);
this.signature = await this.findOneFromDef('signature', [this.id]);
},