From 2934b0c7eccf7d251b53aebc8aab02691d95151c Mon Sep 17 00:00:00 2001 From: Carlos Dauden Date: Thu, 22 Oct 2020 11:21:06 +0200 Subject: [PATCH] [IMP] account_banking_mandate: Improve inheritability TT26356 --- account_banking_mandate/models/account_move.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_banking_mandate/models/account_move.py b/account_banking_mandate/models/account_move.py index 587183813..3405c9734 100644 --- a/account_banking_mandate/models/account_move.py +++ b/account_banking_mandate/models/account_move.py @@ -22,7 +22,7 @@ class AccountMove(models.Model): def post(self): self.line_ids.mandate_id = self.mandate_id - super(AccountMove, self).post() + return super(AccountMove, self).post() @api.model def create(self, vals):