mirror of https://github.com/OCA/web.git
[BOT] post-merge updates
parent
4f5e875ef7
commit
ba87706d6e
|
@ -67,6 +67,7 @@ addon | version | maintainers | summary
|
||||||
[web_timeline](web_timeline/) | 16.0.1.1.7 | [](https://github.com/tarteo) | Interactive visualization chart to show events in time
|
[web_timeline](web_timeline/) | 16.0.1.1.7 | [](https://github.com/tarteo) | Interactive visualization chart to show events in time
|
||||||
[web_touchscreen](web_touchscreen/) | 16.0.1.0.1 | [](https://github.com/yajo) [](https://github.com/rafaelbn) | UX improvements for touch screens
|
[web_touchscreen](web_touchscreen/) | 16.0.1.0.1 | [](https://github.com/yajo) [](https://github.com/rafaelbn) | UX improvements for touch screens
|
||||||
[web_tree_duplicate](web_tree_duplicate/) | 16.0.1.0.1 | [](https://github.com/tarteo) | Duplicate records directly from the tree view.
|
[web_tree_duplicate](web_tree_duplicate/) | 16.0.1.0.1 | [](https://github.com/tarteo) | Duplicate records directly from the tree view.
|
||||||
|
[web_tree_dynamic_colored_field](web_tree_dynamic_colored_field/) | 16.0.1.0.0 | | Allows you to dynamically color fields on tree views
|
||||||
[web_tree_many2one_clickable](web_tree_many2one_clickable/) | 16.0.1.0.0 | | Open the linked resource when clicking on their name
|
[web_tree_many2one_clickable](web_tree_many2one_clickable/) | 16.0.1.0.0 | | Open the linked resource when clicking on their name
|
||||||
[web_widget_bokeh_chart](web_widget_bokeh_chart/) | 16.0.1.1.0 | [](https://github.com/LoisRForgeFlow) [](https://github.com/ChrisOForgeFlow) | This widget allows to display charts using Bokeh library.
|
[web_widget_bokeh_chart](web_widget_bokeh_chart/) | 16.0.1.1.0 | [](https://github.com/LoisRForgeFlow) [](https://github.com/ChrisOForgeFlow) | This widget allows to display charts using Bokeh library.
|
||||||
[web_widget_char_size](web_widget_char_size/) | 16.0.1.0.0 | | Add size option to Char widget
|
[web_widget_char_size](web_widget_char_size/) | 16.0.1.0.0 | | Add size option to Char widget
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
16.0.20241216.0
|
16.0.20250225.0
|
|
@ -54,6 +54,7 @@ setuptools.setup(
|
||||||
'odoo-addon-web_timeline>=16.0dev,<16.1dev',
|
'odoo-addon-web_timeline>=16.0dev,<16.1dev',
|
||||||
'odoo-addon-web_touchscreen>=16.0dev,<16.1dev',
|
'odoo-addon-web_touchscreen>=16.0dev,<16.1dev',
|
||||||
'odoo-addon-web_tree_duplicate>=16.0dev,<16.1dev',
|
'odoo-addon-web_tree_duplicate>=16.0dev,<16.1dev',
|
||||||
|
'odoo-addon-web_tree_dynamic_colored_field>=16.0dev,<16.1dev',
|
||||||
'odoo-addon-web_tree_many2one_clickable>=16.0dev,<16.1dev',
|
'odoo-addon-web_tree_many2one_clickable>=16.0dev,<16.1dev',
|
||||||
'odoo-addon-web_widget_bokeh_chart>=16.0dev,<16.1dev',
|
'odoo-addon-web_widget_bokeh_chart>=16.0dev,<16.1dev',
|
||||||
'odoo-addon-web_widget_char_size>=16.0dev,<16.1dev',
|
'odoo-addon-web_widget_char_size>=16.0dev,<16.1dev',
|
||||||
|
|
|
@ -7,7 +7,7 @@ Colorize field in tree views
|
||||||
!! This file is generated by oca-gen-addon-readme !!
|
!! This file is generated by oca-gen-addon-readme !!
|
||||||
!! changes will be overwritten. !!
|
!! changes will be overwritten. !!
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
!! source digest: sha256:6521bdb39984b1f0b648e2ab5e2798ab30f3b70c504669ef51a772bcb92663da
|
!! source digest: sha256:3ada4e5c3475a760e028bcac0d81857e0dfd6d603cbd5a19a2c992cf21fbac2c
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||||
|
@ -34,10 +34,10 @@ view according to data in the record.
|
||||||
Features
|
Features
|
||||||
--------
|
--------
|
||||||
|
|
||||||
- Add attribute ``bg_color`` on field's ``options`` to color background
|
- Add attribute ``bg_color`` on field's ``options`` to color background
|
||||||
of a cell in tree view
|
of a cell in tree view
|
||||||
- Add attribute ``fg_color`` on field's ``options`` to change text
|
- Add attribute ``fg_color`` on field's ``options`` to change text color
|
||||||
color of a cell in tree view
|
of a cell in tree view
|
||||||
|
|
||||||
**Table of contents**
|
**Table of contents**
|
||||||
|
|
||||||
|
@ -47,44 +47,44 @@ Features
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
|
|
||||||
- In the tree view declaration, put
|
- In the tree view declaration, put
|
||||||
``options='{"bg_color": "red: customer==True"}`` attribute in the
|
``options='{"bg_color": "red: customer==True"}`` attribute in the
|
||||||
``field`` tag:
|
``field`` tag:
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
...
|
...
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="View name">
|
<tree string="View name">
|
||||||
...
|
...
|
||||||
<field name="name" options='{"bg_color": "red: customer == True"}'/>
|
<field name="name" options='{"bg_color": "red: customer == True"}'/>
|
||||||
...
|
...
|
||||||
</tree>
|
</tree>
|
||||||
</field>
|
</field>
|
||||||
...
|
...
|
||||||
|
|
||||||
With this example, column which renders 'name' field will have its **background** colored in red on customer records.
|
With this example, column which renders 'name' field will have its **background** colored in red on customer records.
|
||||||
|
|
||||||
- In the tree view declaration, put
|
- In the tree view declaration, put
|
||||||
``options='{"fg_color": "white:customer == True"}'`` attribute in the
|
``options='{"fg_color": "white:customer == True"}'`` attribute in the
|
||||||
``field`` tag:
|
``field`` tag:
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
...
|
...
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="View name">
|
<tree string="View name">
|
||||||
...
|
...
|
||||||
<field name="name" options='{"fg_color": "white:customer == True"}'/>
|
<field name="name" options='{"fg_color": "white:customer == True"}'/>
|
||||||
...
|
...
|
||||||
</tree>
|
</tree>
|
||||||
</field>
|
</field>
|
||||||
...
|
...
|
||||||
|
|
||||||
With this example, column which renders 'name' field will have its **text** colored in white on customer records.
|
With this example, column which renders 'name' field will have its **text** colored in white on customer records.
|
||||||
|
|
||||||
- If you want to use more than one color, you can split the attributes
|
- If you want to use more than one color, you can split the attributes
|
||||||
using ';':
|
using ';':
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
|
@ -104,21 +104,21 @@ Example:
|
||||||
</field>
|
</field>
|
||||||
...
|
...
|
||||||
|
|
||||||
- Can use strings too... In the tree view declaration, put
|
- Can use strings too... In the tree view declaration, put
|
||||||
``options="{'fg_color': 'green:customer_state == \'success\''}"``
|
``options="{'fg_color': 'green:customer_state == \'success\''}"``
|
||||||
attribute in the ``field`` tag:
|
attribute in the ``field`` tag:
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
...
|
...
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="View name">
|
<tree string="View name">
|
||||||
...
|
...
|
||||||
<field name="name" options="{'fg_color': 'green:customer_state == \'success\''}"/>
|
<field name="name" options="{'fg_color': 'green:customer_state == \'success\''}"/>
|
||||||
...
|
...
|
||||||
</tree>
|
</tree>
|
||||||
</field>
|
</field>
|
||||||
...
|
...
|
||||||
|
|
||||||
**Note that you can use single or normal quotes. If the declaration of
|
**Note that you can use single or normal quotes. If the declaration of
|
||||||
the options doesn't follow the JSON format, the options string will be
|
the options doesn't follow the JSON format, the options string will be
|
||||||
|
@ -127,14 +127,14 @@ evaluated using py.eval()**
|
||||||
Known issues / Roadmap
|
Known issues / Roadmap
|
||||||
======================
|
======================
|
||||||
|
|
||||||
- Before version 13.0, this module had a feature allowing to change the
|
- Before version 13.0, this module had a feature allowing to change the
|
||||||
color of a line depending on a field, using a ``colors`` attribute
|
color of a line depending on a field, using a ``colors`` attribute
|
||||||
with the name of the field on the ``<tree>`` element. Since 13.0, the
|
with the name of the field on the ``<tree>`` element. Since 13.0, the
|
||||||
``colors`` attribute is no longer in the RelaxNG schema of the tree
|
``colors`` attribute is no longer in the RelaxNG schema of the tree
|
||||||
view, so we can't use it anymore. This feature has then been dropped,
|
view, so we can't use it anymore. This feature has then been dropped,
|
||||||
but could be reimplement in another way.
|
but could be reimplement in another way.
|
||||||
- Since version 17.0 coloring is written into ``style`` attribute of
|
- Since version 17.0 coloring is written into ``style`` attribute of
|
||||||
(td) element
|
(td) element
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
@ -158,22 +158,21 @@ Authors
|
||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
- Damien Crier <damien.crier@camptocamp.com>
|
- Damien Crier <damien.crier@camptocamp.com>
|
||||||
- Holger Brunn <hbrunn@therp.nl>
|
- Holger Brunn <hbrunn@therp.nl>
|
||||||
- Artem Kostyuk <a.kostyuk@mobilunity.com>
|
- Artem Kostyuk <a.kostyuk@mobilunity.com>
|
||||||
- Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
- Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||||
- Phuc Tran Thanh <phuc@trobz.com>
|
- Phuc Tran Thanh <phuc@trobz.com>
|
||||||
- Sylvain LE GAL
|
- Sylvain LE GAL <https://twitter.com/legalsylvain>
|
||||||
<`https://twitter.com/legalsylvain <https://twitter.com/legalsylvain>`__>
|
- Jurgis Pralgauskis <jurgis@versada.eu>
|
||||||
- Jurgis Pralgauskis <jurgis@versada.eu>
|
|
||||||
|
|
||||||
Other credits
|
Other credits
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
The development of this module has been financially supported by:
|
The development of this module has been financially supported by:
|
||||||
|
|
||||||
- Camptocamp
|
- Camptocamp
|
||||||
- Versada
|
- Versada
|
||||||
|
|
||||||
Maintainers
|
Maintainers
|
||||||
-----------
|
-----------
|
||||||
|
|
|
@ -367,7 +367,7 @@ ul.auto-toc {
|
||||||
!! This file is generated by oca-gen-addon-readme !!
|
!! This file is generated by oca-gen-addon-readme !!
|
||||||
!! changes will be overwritten. !!
|
!! changes will be overwritten. !!
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
!! source digest: sha256:6521bdb39984b1f0b648e2ab5e2798ab30f3b70c504669ef51a772bcb92663da
|
!! source digest: sha256:3ada4e5c3475a760e028bcac0d81857e0dfd6d603cbd5a19a2c992cf21fbac2c
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/16.0/web_tree_dynamic_colored_field"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_tree_dynamic_colored_field"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/16.0/web_tree_dynamic_colored_field"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_tree_dynamic_colored_field"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||||
<p>This module aims to add support for dynamically coloring fields in tree
|
<p>This module aims to add support for dynamically coloring fields in tree
|
||||||
|
@ -377,8 +377,8 @@ view according to data in the record.</p>
|
||||||
<ul class="simple">
|
<ul class="simple">
|
||||||
<li>Add attribute <tt class="docutils literal">bg_color</tt> on field’s <tt class="docutils literal">options</tt> to color background
|
<li>Add attribute <tt class="docutils literal">bg_color</tt> on field’s <tt class="docutils literal">options</tt> to color background
|
||||||
of a cell in tree view</li>
|
of a cell in tree view</li>
|
||||||
<li>Add attribute <tt class="docutils literal">fg_color</tt> on field’s <tt class="docutils literal">options</tt> to change text
|
<li>Add attribute <tt class="docutils literal">fg_color</tt> on field’s <tt class="docutils literal">options</tt> to change text color
|
||||||
color of a cell in tree view</li>
|
of a cell in tree view</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p><strong>Table of contents</strong></p>
|
<p><strong>Table of contents</strong></p>
|
||||||
<div class="contents local topic" id="contents">
|
<div class="contents local topic" id="contents">
|
||||||
|
@ -506,8 +506,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
||||||
<li>Artem Kostyuk <<a class="reference external" href="mailto:a.kostyuk@mobilunity.com">a.kostyuk@mobilunity.com</a>></li>
|
<li>Artem Kostyuk <<a class="reference external" href="mailto:a.kostyuk@mobilunity.com">a.kostyuk@mobilunity.com</a>></li>
|
||||||
<li>Guewen Baconnier <<a class="reference external" href="mailto:guewen.baconnier@camptocamp.com">guewen.baconnier@camptocamp.com</a>></li>
|
<li>Guewen Baconnier <<a class="reference external" href="mailto:guewen.baconnier@camptocamp.com">guewen.baconnier@camptocamp.com</a>></li>
|
||||||
<li>Phuc Tran Thanh <<a class="reference external" href="mailto:phuc@trobz.com">phuc@trobz.com</a>></li>
|
<li>Phuc Tran Thanh <<a class="reference external" href="mailto:phuc@trobz.com">phuc@trobz.com</a>></li>
|
||||||
<li>Sylvain LE GAL
|
<li>Sylvain LE GAL <<a class="reference external" href="https://twitter.com/legalsylvain">https://twitter.com/legalsylvain</a>></li>
|
||||||
<<a class="reference external" href="https://twitter.com/legalsylvain">https://twitter.com/legalsylvain</a>></li>
|
|
||||||
<li>Jurgis Pralgauskis <<a class="reference external" href="mailto:jurgis@versada.eu">jurgis@versada.eu</a>></li>
|
<li>Jurgis Pralgauskis <<a class="reference external" href="mailto:jurgis@versada.eu">jurgis@versada.eu</a>></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue