from odoo import fields, models class ResCompany(models.Model): _inherit = "res.company" account_bank_reconciliation_start = fields.Date( string="Bank Reconciliation Threshold", help="The bank reconciliation widget won't ask to reconcile payments " "older than this date.\n" "This is useful if you install accounting after having used invoicing " "for some time and don't want to reconcile all the past payments with " "bank statements.", )