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