79765631

Date: 2025-09-15 21:34:42
Score: 1
Natty:
Report link

A lot of the settings in the Odoo settings page are fields on the res.company model. You could extend the res.company model with the default overridden.

from odoo import fields, models


class ResCompany(models.Model):
    _inherit = "res.company"

    some_overridden_setting = fields.Boolean(default=True)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RecursionError