10 lines
271 B
Python
10 lines
271 B
Python
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
module_maintenance_plan_only = fields.Boolean("Hide built-in recurrent settings")
|