Files
bank-statement-import/account_statement_import_camt54/models/account_journal.py
2021-01-18 10:49:09 +02:00

15 lines
363 B
Python

# Copyright 2020 Camptocamp SA
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import fields, models
class AccountBankStatementImport(models.Model):
_inherit = "account.journal"
transfer_line = fields.Boolean(
string="Add balance Line",
help="Generate balance line on total of bank statement import",
)