You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
525 B
15 lines
525 B
# -*- coding: utf-8 -*-
|
|
|
|
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.\
|
|
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."""
|
|
)
|