mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[MIG][14.0] account_statement_import_camt_oca
This commit is contained in:
13
account_statement_import_camt/models/bank_statement.py
Normal file
13
account_statement_import_camt/models/bank_statement.py
Normal 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()
|
||||
Reference in New Issue
Block a user