Skip to content

Commit

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

Signed-off-by: matiasperalta1 <[email protected]>
  • Loading branch information
lef-adhoc committed Jan 26, 2024
1 parent a3758cc commit 25bf652
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions mail_activity_board_ux/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
'name': 'Mail Activity Board UX',
'version': "16.0.1.0.0",
'version': "17.0.1.0.0",
'category': 'Base',
'sequence': 14,
'summary': '',
Expand All @@ -36,14 +36,14 @@
],
"assets": {
"web.assets_backend": [
('remove', 'mail_activity_board/static/src/components/chatter_topbar/chatter_topbar.xml'),
('remove', 'mail_activity_board/static/src/components/chatter/chatter.xml'),
],
},
'demo': [
],
'test': [
],
'installable': False,
'installable': True,
'auto_install': False,
'application': False,
}
16 changes: 8 additions & 8 deletions mail_activity_board_ux/views/mail_activity_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@
<button name="open_origin" type="object" title="Open" icon="fa-external-link"/>
</field>
<tree>
<field name="res_model_id" invisible="1"/>
<field name="res_model" invisible="1"/>
<field name="chaining_type" invisible="1"/>
<field name="res_model_id" column_invisible="True"/>
<field name="res_model" column_invisible="True"/>
<field name="chaining_type" column_invisible="True"/>

<button icon="fa-check-circle" title="Mark as Done" help="Mark as Done" disabled="True" attrs="{'invisible': [('chaining_type', '=', 'suggest')]}"
<button icon="fa-check-circle" title="Mark as Done" help="Mark as Done" disabled="True" invisible="chaining_type == 'suggest'"
name="action_done" type="object" context="{'mail_activity_quick_update': True}"/>
<button icon="fa-check-circle" title="Mark as Done" help="Mark as Done" attrs="{'invisible': [('chaining_type', '=', 'trigger')]}"
<button icon="fa-check-circle" title="Mark as Done" help="Mark as Done" invisible="chaining_type == 'trigger'"
name="action_done" type="object" context="{'mail_activity_quick_update': True}"/>

<button icon="fa-clock-o" title="Done &amp; Schedule Next" help="Done &amp; Schedule Next" attrs="{'invisible': [('chaining_type', '=', 'trigger')]}"
<button icon="fa-clock-o" title="Done &amp; Schedule Next" help="Done &amp; Schedule Next" invisible="chaining_type == 'trigger'"
name="action_done_schedule_next" type="object" context="{'mail_activity_quick_update': True}"/>
<button icon="fa-clock-o" title="Done &amp; Launch Next" help="Done &amp; Launch Next" attrs="{'invisible': [('chaining_type', '!=', 'trigger')]}"
<button icon="fa-clock-o" title="Done &amp; Launch Next" help="Done &amp; Launch Next" invisible="chaining_type != 'trigger'"
name="action_done_schedule_next" type="object" context="{'mail_activity_quick_update': True}"/>
<button icon="fa-trash" title="Discard" help="Discard" special="cancel"/>
<button icon="fa-trash" title="Discard" help="Discard" name="unlink" type="object"/>
<button icon="fa-pencil" title="Edit" help="Edit" type="object" name="open_activity_dashboard_form"/>
</tree>
<tree position="attributes">
Expand Down

0 comments on commit 25bf652

Please sign in to comment.