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

[14.0][FIX] account_invoice_overdue_reminder: fix wizard overdue reminder total_residual #413

Merged
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def print_invoices(self):
def total_residual(self):
self.ensure_one()
res = defaultdict(float)
for inv in self.invoice_ids:
for inv in self.get_invoices():
res[inv.currency_id] += inv.amount_residual * (
inv.move_type == "out_refund" and -1 or 1
)
Expand Down
Loading