From 1d007b2ad9ac5d27cb7cfdc6128ad1faa3e4213b Mon Sep 17 00:00:00 2001 From: Florian da Costa Date: Thu, 26 Jan 2017 19:23:56 +0100 Subject: [PATCH] [Fix] fix reconciliation when reversing an account move --- account_reversal/models/account_move.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_reversal/models/account_move.py b/account_reversal/models/account_move.py index 70bf8fd58..366f6f178 100644 --- a/account_reversal/models/account_move.py +++ b/account_reversal/models/account_move.py @@ -112,5 +112,5 @@ class AccountMove(models.Model): if moves and post: moves.post() if reconcile: - moves.move_reverse_reconcile() + self.move_reverse_reconcile() return moves