Skip to content
Snippets Groups Projects
Commit 65c564b9 authored by Mehdi Bendali Hacine's avatar Mehdi Bendali Hacine
Browse files

[IMP] account_edi_ubl_cii: Add function to apply filter on tax values

For SA, we need to be able to filter on the taxes exported, as
certain taxes should simply not be reported in the UBL.

Part-of: odoo/odoo#124901
parent 84adbb6e
No related branches found
No related tags found
No related merge requests found
......@@ -340,6 +340,19 @@ class AccountEdiXmlUBL20(models.AbstractModel):
'price_vals': self._get_invoice_line_price_vals(line),
}
def _apply_invoice_tax_filter(self, base_line, tax_values):
"""
To be overridden to apply a specific tax filter
"""
return True
def _apply_invoice_line_filter(self, invoice_line):
"""
To be overridden to apply a specific invoice line filter
"""
return True
def _export_invoice_vals(self, invoice):
def grouping_key_generator(base_line, tax_values):
tax = tax_values['tax_repartition_line'].tax_id
......@@ -360,7 +373,9 @@ class AccountEdiXmlUBL20(models.AbstractModel):
self._validate_taxes(invoice)
# Compute the tax details for the whole invoice and each invoice line separately.
taxes_vals = invoice._prepare_edi_tax_details(grouping_key_generator=grouping_key_generator)
taxes_vals = invoice._prepare_edi_tax_details(grouping_key_generator=grouping_key_generator,
filter_to_apply=self._apply_invoice_tax_filter,
filter_invl_to_apply=self._apply_invoice_line_filter)
# Fixed Taxes: filter them on the document level, and adapt the totals
# Fixed taxes are not supposed to be taxes in real live. However, this is the way in Odoo to manage recupel
......@@ -465,7 +480,6 @@ class AccountEdiXmlUBL20(models.AbstractModel):
vals['vals']['credit_note_type_code'] = 381
return vals
def _export_invoice_constraints(self, invoice, vals):
constraints = self._invoice_constraints_common(invoice)
constraints.update({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment