Skip to content

Commit

Permalink
[FIX] l10n_fr_account_vat_return: filter on VAT taxes for France
Browse files Browse the repository at this point in the history
This commit adapts the code to the scenario where you have VAT taxes for
other countries (EU B2C over 10k€, Polynésie française, ...)
  • Loading branch information
alexis-via committed Dec 17, 2024
1 parent fc86b11 commit eb3e40a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ def _prepare_speedy(self):
("amount_type", "=", "percent"),
("amount", ">", 0),
("unece_type_code", "=", "VAT"),
("country_id", "=", self.env.ref("base.fr").id),
]
sale_regular_vat_tax_domain = vat_tax_domain + [
("fr_vat_autoliquidation", "=", False),
Expand Down

0 comments on commit eb3e40a

Please sign in to comment.