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

[IMP] account_reconcile_oca: Fix multicurrency journal management #668

Merged
merged 5 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions account_reconcile_oca/models/account_account_reconcile.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ def _recompute_data(self, data):
counterparts = data["counterparts"]
amount = 0.0
for line_id in counterparts:
line = self._get_reconcile_line(
lines = self._get_reconcile_line(
self.env["account.move.line"].browse(line_id), "other", True, amount
)
new_data["data"].append(line)
amount += line["amount"]
new_data["data"] += lines
amount += sum(line["amount"] for line in lines)
return new_data

def clean_reconcile(self):
Expand Down
Loading
Loading