Skip to content
Snippets Groups Projects
Commit 53e1fc5d authored by Thibault Delavallée's avatar Thibault Delavallée
Browse files

[FIX] mail: mail_template: issues linked to the migration

- do not browse a browse record
- removed onchange from the form view, as they are managed directly by the new API
parent d62cc5ed
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ class MailTemplate(models.Model):
def onchange_model_id(self):
# TDE CLEANME: should'nt it be a stored related ?
if self.model_id:
self.model = self.env['ir.model'].browse(self.model_id).model
self.model = self.model_id.model
else:
self.model = False
......
......@@ -10,7 +10,7 @@
<div class="oe_title">
<label for="name" class="oe_edit_only"/><h1><field name="name" required="1"/></h1>
<group>
<field name="model_id" required="1" on_change="onchange_model_id(model_id)" options="{'no_create': True}"/>
<field name="model_id" required="1" options="{'no_create': True}"/>
<field name="model" invisible="1"/>
</group>
</div>
......@@ -67,15 +67,12 @@
<page string="Dynamic Placeholder Generator">
<group>
<field name="model_object_field"
domain="[('model_id','=',model_id),('ttype','!=','one2many'),('ttype','!=','many2many')]"
on_change="onchange_sub_model_object_value_field(model_object_field)"/>
domain="[('model_id','=',model_id),('ttype','!=','one2many'),('ttype','!=','many2many')]"/>
<field name="sub_object" readonly="1"/>
<field name="sub_model_object_field"
domain="[('model_id','=',sub_object),('ttype','!=','one2many'),('ttype','!=','many2many')]"
attrs="{'readonly':[('sub_object','=',False)],'required':[('sub_object','!=',False)]}"
on_change="onchange_sub_model_object_value_field(model_object_field,sub_model_object_field)"/>
<field name="null_value"
on_change="onchange_sub_model_object_value_field(model_object_field,sub_model_object_field,null_value)"/>
attrs="{'readonly':[('sub_object','=',False)],'required':[('sub_object','!=',False)]}"/>
<field name="null_value"/>
<field name="copyvalue"/>
</group>
</page>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment