[MIG][14.0] account_statement_import_camt_oca

This commit is contained in:
Iryna Vyshnevska
2021-01-11 15:35:19 +02:00
committed by Holger Brunn
parent fc75dc9477
commit 64a0eb0aa7
38 changed files with 3132 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models
class AccountBankStatement(models.Model):
_inherit = "account.bank.statement"
def reconciliation_widget_preprocess(self):
return super(
AccountBankStatement, self.with_context(no_reassign_empty_name=True)
).reconciliation_widget_preprocess()