Skip to content

Commit

Permalink
temp rebasing PR 469 (d39483f)
Browse files Browse the repository at this point in the history
  • Loading branch information
roboadhoc committed Nov 27, 2023
2 parents 77fbd2b + d39483f commit cd5ef38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account_ux/wizards/res_config_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def _compute_tax_ids(self):
for rec in self:
company_id = rec.company_id.id

taxes_ids = ir_default.get('product.template', 'taxes_id', company_id=company_id) or \
taxes_ids = ir_default._get('product.template', 'taxes_id', company_id=company_id) or \
rec.company_id.account_sale_tax_id.ids
supplier_taxes_ids = ir_default.get('product.template', 'supplier_taxes_id', company_id=company_id) or \
supplier_taxes_ids = ir_default._get('product.template', 'supplier_taxes_id', company_id=company_id) or \
rec.company_id.account_purchase_tax_id.ids

rec.sale_tax_ids = taxes_ids
Expand Down

0 comments on commit cd5ef38

Please sign in to comment.