odoo_account_ebics/account_ebics/models/account_bank_statement.py

13 lines
334 B
Python
Raw Permalink Normal View History

2018-08-14 14:49:57 +00:00
# -*- coding: utf-8 -*-
# Copyright 2009-2018 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
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')