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
gitea/salix/pipeline/head This commit looks good
Details
Reviewed-on: #1318
This commit is contained in:
commit
a094eedfe3
|
@ -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]);
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue