Skip to content

Commit

Permalink
Merge PR #694 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Jan 3, 2025
2 parents 3e6180f + 7e7afb4 commit 1e75b08
Show file tree
Hide file tree
Showing 6 changed files with 390 additions and 80 deletions.
6 changes: 5 additions & 1 deletion account_reconcile_oca/models/account_account_reconcile.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,11 @@ def _recompute_data(self, data):
for line_id in counterparts:
max_amount = amount if line_id == counterparts[-1] else 0
lines = self._get_reconcile_line(
self.env["account.move.line"].browse(line_id), "other", True, max_amount
self.env["account.move.line"].browse(line_id),
"other",
True,
max_amount,
move=True,
)
new_data["data"] += lines
amount += sum(line["amount"] for line in lines)
Expand Down
Loading

0 comments on commit 1e75b08

Please sign in to comment.