From af2c69f0e5acae89372c6aead7f02af2d38f6820 Mon Sep 17 00:00:00 2001 From: Nicolas Martinelli <nim@odoo.com> Date: Wed, 8 Jun 2016 10:52:23 +0200 Subject: [PATCH] [FIX] account: duplicate journal entry When a journal entry includes taxes, it is impossible to duplicate it because of an unbalanced entry error. Indeed, by default the taxes are computed at the creation of the account move lines, leading to the creation of a new tax line, therefore unbalancing the account move. Fixes #11919 opw-676788 --- addons/account/models/account_move.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/addons/account/models/account_move.py b/addons/account/models/account_move.py index 2c3486541d6d..ce6f88fe5366 100644 --- a/addons/account/models/account_move.py +++ b/addons/account/models/account_move.py @@ -101,6 +101,10 @@ class AccountMove(models.Model): move.assert_balanced() return move + @api.multi + def copy(self, default=None): + return super(AccountMove, self.with_context(dont_create_taxes=True)).copy(default) + @api.multi def write(self, vals): if 'line_ids' in vals: -- GitLab