Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] l10n_ar_sale: campo monto total (amount_total) de orden de venta si cambia alícuota de percepción en partner. #152

Open
wants to merge 1 commit into
base: 16.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions l10n_ar_sale/models/sale_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ def _compute_tax_totals(self):
for rec in self:
rec = rec.with_context(invoice_date=rec.date_order)
super(SaleOrder, rec)._compute_tax_totals()
# Agregamos esto porque necesitamos que también se recompute el campo amount_total si llega a cambiarse
# alguna alícuota en el partner para cálculo de percepciones, ejemplo: arba
rec._compute_amounts()
# discriminamos o no impuestos solo en pdf y portal. En backend siempre los mostramos. Para esto evaluamos:
# commit_assetsbundle viene cuando sacamos pdf
# portal_view lo mandamos cuando mostramos campo en portal
Expand Down