From c9164df64c6c85049961d9f0b42b8350c9ef59fb 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 13.0.1.1.1 --- account_banking_mandate/__manifest__.py | 2 +- account_banking_mandate/models/account_move.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 75489595d..96b9b88e2 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -7,7 +7,7 @@ { "name": "Account Banking Mandate", "summary": "Banking mandates", - "version": "13.0.1.1.0", + "version": "13.0.1.1.1", "license": "AGPL-3", "author": "Compassion CH, " "Tecnativa, " 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):