[FIX] base_comment_template: Typo error
base_comment_template 14.0.3.0.1pull/646/head
parent
153dabf9cb
commit
a50df16916
|
@ -5,7 +5,7 @@
|
||||||
"name": "Base Comments Templates",
|
"name": "Base Comments Templates",
|
||||||
"summary": "Add conditional mako template to any report"
|
"summary": "Add conditional mako template to any report"
|
||||||
"on models that inherits comment.template.",
|
"on models that inherits comment.template.",
|
||||||
"version": "14.0.3.0.0",
|
"version": "14.0.3.0.1",
|
||||||
"category": "Reporting",
|
"category": "Reporting",
|
||||||
"website": "https://github.com/OCA/reporting-engine",
|
"website": "https://github.com/OCA/reporting-engine",
|
||||||
"author": "Camptocamp, Odoo Community Association (OCA)",
|
"author": "Camptocamp, Odoo Community Association (OCA)",
|
||||||
|
|
|
@ -45,7 +45,7 @@ class BaseCommentTemplatePreview(models.TransientModel):
|
||||||
engine = fields.Selection(
|
engine = fields.Selection(
|
||||||
[("jinja", "Jinja"), ("qweb", "QWeb")],
|
[("jinja", "Jinja"), ("qweb", "QWeb")],
|
||||||
string="Template Preview Engine",
|
string="Template Preview Engine",
|
||||||
defult="jinja",
|
default="jinja",
|
||||||
)
|
)
|
||||||
model_ids = fields.Many2many(
|
model_ids = fields.Many2many(
|
||||||
"ir.model", related="base_comment_template_id.model_ids"
|
"ir.model", related="base_comment_template_id.model_ids"
|
||||||
|
|
Loading…
Reference in New Issue