[FIX] web_action_conditionable: Adapt to new api

This commit is contained in:
Alexandre Díaz
2019-07-31 13:18:44 +02:00
committed by Jasmin Solanki
parent c81f3e8ae2
commit de855a52a7
9 changed files with 515 additions and 63 deletions

View File

@@ -1,2 +1,3 @@
* Cristian Salamea <cristian.salamea@gmail.com>
* André Paramés <github@andreparames.com> (https://www.acsone.eu/)
* Alexandre Díaz <alexandre.diaz@tecnativa.com>

View File

@@ -1,14 +1,2 @@
This module was written to extend the functionality of actions in tree views.
Odoo by default support:
::
<tree delete="false" create="false">
with this module you can:
::
<tree delete="state=='draft'">
It works in any tree view, so you can use it in One2many.
This module was written to extend the functionality of actions in
tree view (One2Many fields).

View File

@@ -1 +1,13 @@
This module has no direct interface, it only adds functionality for custom views.
Odoo by default support:
::
<tree delete="false" create="false">
with this module you can:
::
<tree delete="state=='draft'" create="state!='sent'">
It works in any tree view, so you can use it in One2many.