odoo_account_ebics/account_ebics/models/account_bank_statement.py
Luc De Meyer d2bcab7dba lpgl
2019-12-22 10:54:00 +01:00

12 lines
308 B
Python

# Copyright 2009-2018 Noviat.
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
from odoo import fields, models
class AccountBankStatement(models.Model):
_inherit = 'account.bank.statement'
ebics_file_id = fields.Many2one(
comodel_name='ebics.file', string='EBICS Data File')