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.
33 lines
1.1 KiB
33 lines
1.1 KiB
# Copyright 2020 NextERP Romania SRL
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class IrModel(models.Model):
|
|
_inherit = "ir.model"
|
|
|
|
is_comment_template = fields.Boolean(
|
|
string="Comment Template",
|
|
default=False,
|
|
help="Whether this model supports in reports to add comment templates.",
|
|
)
|
|
|
|
def _reflect_model_params(self, model):
|
|
vals = super(IrModel, self)._reflect_model_params(model)
|
|
vals["is_comment_template"] = issubclass(
|
|
type(model), self.pool["comment.template"]
|
|
)
|
|
return vals
|
|
|
|
@api.model
|
|
def _instanciate(self, model_data):
|
|
model_class = super(IrModel, self)._instanciate(model_data)
|
|
if (
|
|
model_data.get("is_comment_template")
|
|
and model_class._name != "comment.template"
|
|
):
|
|
parents = model_class._inherit or []
|
|
parents = [parents] if isinstance(parents, str) else parents
|
|
model_class._inherit = parents + ["comment.template"]
|
|
return model_class
|