Files
account-reconcile/account_reconciliation_widget_limit_aml/models/res_company.py

14 lines
403 B
Python

# Copyright 2023 Valentin Vinagre <valentin.vinagre@sygel.es>
# Copyright 2023 Manuel Regidor <manuel.regidor@sygel.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
account_bank_reconciliation_start_all_aml = fields.Boolean(
string="Filter all account move lines"
)