mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
20 lines
555 B
Python
20 lines
555 B
Python
# Copyright 2019 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
|
|
_inherit = "res.company"
|
|
|
|
contract_forecast_interval = fields.Integer(
|
|
string="Number of contract forecast Periods", default=12
|
|
)
|
|
contract_forecast_rule_type = fields.Selection(
|
|
[("monthly", "Month(s)"), ("yearly", "Year(s)")], default="monthly"
|
|
)
|
|
enable_contract_forecast = fields.Boolean(
|
|
string="Enable contract forecast", default=True
|
|
)
|