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.

14 lines
389 B

  1. # Copyright 2021 Quartile Limited
  2. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
  3. from odoo import fields, models
  4. class IrModel(models.Model):
  5. _inherit = "ir.model"
  6. restrict_update = fields.Boolean(
  7. "Update Restrict Model",
  8. help="When selected, the model is restricted to read-only unless the "
  9. "user has the special permission.",
  10. )