Skip to content

Commit

Permalink
[MIG] base_dynamic_message: Migration to 17.0
Browse files Browse the repository at this point in the history
closes #147

Signed-off-by: Juan José Scarafía <jjs@adhoc.com.ar>
  • Loading branch information
JoelZilli committed Dec 15, 2023
1 parent df18ac6 commit acdebb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions base_dynamic_message/__manifest__.py
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
'name': 'Dynamic Message',
'version': '16.0.1.1.0',
'version': "17.0.1.0.0",
'category': 'Base',
'sequence': 14,
'summary': '',
Expand All @@ -38,7 +38,7 @@
],
'demo': [
],
'installable': False,
'installable': True,
'auto_install': False,
'application': False,
}
4 changes: 2 additions & 2 deletions base_dynamic_message/views/ir_model_dynamic_message_views.xml
Expand Up @@ -26,7 +26,7 @@
<group>
<field name="name"/>
<field name="description"/>
<field name="model_id" force_save="True" options="{'no_create': True, 'no_open': True}" attrs="{'readonly': ['|', ('line_ids', '!=', []), ('id', '!=', False)]}"/>
<field name="model_id" force_save="True" options="{'no_create': True, 'no_open': True}" readonly="line_ids or id"/>
</group>
<group>
<field name="alert_type"/>
Expand All @@ -44,7 +44,7 @@
<field name="domain" optional="show"/>
<field name="message" optional="show"/>
<field name="code" optional="show"/>
<field name="model_name" invisible="True"/>
<field name="model_name" column_invisible="True"/>
</tree>
<form>
<p>En las expresiones, del lado derecho, se puede usar el string "EXP:[expresion]" para poner codigo dinamico. A la hora de pasar el dominio al calculo solo se
Expand Down

0 comments on commit acdebb8

Please sign in to comment.