mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
15 lines
363 B
Python
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",
|
|
)
|