mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
14 lines
403 B
Python
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"
|
|
)
|