mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
13 lines
376 B
Python
13 lines
376 B
Python
# Copyright 2022 Akretion France - Alexis de Lattre
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
account_bank_reconciliation_start = fields.Date(
|
|
related="company_id.account_bank_reconciliation_start", readonly=False
|
|
)
|