account-closing/account_cutoff_picking/models/res_company.py
2024-05-03 10:29:54 +02:00

28 lines
1.0 KiB
Python

# Copyright 2020-2021 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
from flectra import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
default_cutoff_picking_interval_days = fields.Integer(
string="Analysis Interval",
help="To generate the accrual/prepaid revenue/expenses based on picking "
"dates vs invoice dates, Flectra will analyse all the pickings/invoices from "
"N days before the cutoff date up to the cutoff date. "
"N is the Analysis Interval. If you increase the analysis interval, "
"Flectra will take more time to generate the cutoff lines.",
default=30,
)
_sql_constraints = [
(
"cutoff_picking_interval_days_positive",
"CHECK(default_cutoff_picking_interval_days > 0)",
"The value of the field 'Analysis Interval' must be strictly positive.",
)
]