Skip to content

Commit

Permalink
[FIX] l10n_br_fiscal: landed inverse for invoice case
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoParadeda authored and rvalyi committed Dec 9, 2024
1 parent 91f28a4 commit 84de5bb
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions l10n_br_fiscal/models/document_mixin_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _inverse_amount_landed_cost(self, field_name):
Set landed costs values to the document lines; rate by amount.
Args:
field_name: "freight_value|insurance_value|other_value"
field_name: "freight_value|insurance_value|other_value"
"""
for record in self.filtered(lambda doc: doc._get_product_amount_lines()):
if (
Expand Down Expand Up @@ -179,14 +179,17 @@ def _inverse_amount_landed_cost(self, field_name):
for line in record._get_product_amount_lines():
line._onchange_fiscal_taxes()
record._fields["amount_total"].compute_value(record)
record.write(
{
name: value
for name, value in record._cache.items()
if record._fields[name].compute == "_amount_all"

# Case Sale, Purchase or POS
vals = {}
for name, value in record._cache.items():
if (
record._fields[name].compute == "_amount_all"
and not record._fields[name].inverse
}
)
):
vals[name] = value
if vals:
record.write(vals)

def _inverse_amount_freight(self):
return self._inverse_amount_landed_cost("freight_value")
Expand Down

0 comments on commit 84de5bb

Please sign in to comment.