You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
825 B
33 lines
825 B
**Change a python dictionary (context for example)**
|
|
|
|
|
|
.. code-block:: xml
|
|
|
|
<attribute name="$attribute" operation="python_dict" key="$key">
|
|
$new_value
|
|
</attribute>
|
|
|
|
Note that views are subject to evaluation of xmlids anyways, so if you need
|
|
to refer to some xmlid, say ``%(xmlid)s``.
|
|
|
|
**Add to values in a list (states for example)**
|
|
|
|
.. code-block:: xml
|
|
|
|
<attribute name="$attribute" operation="list_add">
|
|
$new_value(s)
|
|
</attribute>
|
|
|
|
**Remove values from a list (states for example)**
|
|
|
|
.. code-block:: xml
|
|
|
|
<attribute name="$attribute" operation="list_remove">
|
|
$remove_value(s)
|
|
</attribute>
|
|
|
|
**Move an element in the view**
|
|
|
|
This feature is now native, cf the `official Odoo documentation <https://www.odoo.com/documentation/12.0/reference/views.html#inheritance-specs>`_.
|
|
|
|
|