[MIG] account_tax_balance: Migration to 15.0

pull/937/head
Valentin Vinagre Urteaga 2021-12-10 10:22:24 +01:00 committed by David Ramia
parent 37a257f6b7
commit 491f4211d6
2 changed files with 3 additions and 3 deletions

View File

@ -139,8 +139,8 @@ class AccountTax(models.Model):
domain = [
("move_id.state", "in", state_list),
("tax_line_id", "=", self.id),
("tax_exigible", "=", True),
]
domain.extend(self.env["account.move.line"]._get_tax_exigible_domain())
if type_list:
domain.append(("move_id.financial_type", "in", type_list))
return domain
@ -149,8 +149,8 @@ class AccountTax(models.Model):
domain = [
("move_id.state", "in", state_list),
("tax_ids", "in", self.id),
("tax_exigible", "=", True),
]
domain.extend(self.env["account.move.line"]._get_tax_exigible_domain())
if type_list:
domain.append(("move_id.financial_type", "in", type_list))
return domain

View File

@ -7,4 +7,4 @@
* Iván Antón <ozono@ozonomultimedia.com>
* `Sygel <https://www.sygel.es>`__:
* Valentin Vinagre
* Valentin Vinagre