diff --git a/README.md b/README.md index 9e70bfd31..9d5a58895 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ addon | version | maintainers | summary [web_timeline](web_timeline/) | 16.0.1.1.7 | [![tarteo](https://github.com/tarteo.png?size=30px)](https://github.com/tarteo) | Interactive visualization chart to show events in time [web_touchscreen](web_touchscreen/) | 16.0.1.0.1 | [![yajo](https://github.com/yajo.png?size=30px)](https://github.com/yajo) [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) | UX improvements for touch screens [web_tree_duplicate](web_tree_duplicate/) | 16.0.1.0.1 | [![tarteo](https://github.com/tarteo.png?size=30px)](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_widget_bokeh_chart](web_widget_bokeh_chart/) | 16.0.1.1.0 | [![LoisRForgeFlow](https://github.com/LoisRForgeFlow.png?size=30px)](https://github.com/LoisRForgeFlow) [![ChrisOForgeFlow](https://github.com/ChrisOForgeFlow.png?size=30px)](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 diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 25c29ec5b..74011e210 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -16.0.20241216.0 \ No newline at end of file +16.0.20250225.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 99507c446..fcba80afd 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -54,6 +54,7 @@ setuptools.setup( 'odoo-addon-web_timeline>=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_dynamic_colored_field>=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_char_size>=16.0dev,<16.1dev', diff --git a/web_tree_dynamic_colored_field/README.rst b/web_tree_dynamic_colored_field/README.rst index b26f0f4be..9486b6b32 100644 --- a/web_tree_dynamic_colored_field/README.rst +++ b/web_tree_dynamic_colored_field/README.rst @@ -7,7 +7,7 @@ Colorize field in tree views !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:6521bdb39984b1f0b648e2ab5e2798ab30f3b70c504669ef51a772bcb92663da + !! source digest: sha256:3ada4e5c3475a760e028bcac0d81857e0dfd6d603cbd5a19a2c992cf21fbac2c !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png @@ -34,10 +34,10 @@ view according to data in the record. Features -------- -- Add attribute ``bg_color`` on field's ``options`` to color background - of a cell in tree view -- Add attribute ``fg_color`` on field's ``options`` to change text - color of a cell in tree view +- Add attribute ``bg_color`` on field's ``options`` to color background + of a cell in tree view +- Add attribute ``fg_color`` on field's ``options`` to change text color + of a cell in tree view **Table of contents** @@ -47,44 +47,44 @@ Features Usage ===== -- In the tree view declaration, put - ``options='{"bg_color": "red: customer==True"}`` attribute in the - ``field`` tag: +- In the tree view declaration, put + ``options='{"bg_color": "red: customer==True"}`` attribute in the + ``field`` tag: - :: + :: - ... - - - ... - - ... - - - ... + ... + + + ... + + ... + + + ... - 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 - ``options='{"fg_color": "white:customer == True"}'`` attribute in the - ``field`` tag: +- In the tree view declaration, put + ``options='{"fg_color": "white:customer == True"}'`` attribute in the + ``field`` tag: - :: + :: - ... - - - ... - - ... - - - ... + ... + + + ... + + ... + + + ... - 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 - using ';': +- If you want to use more than one color, you can split the attributes + using ';': :: @@ -104,21 +104,21 @@ Example: ... -- Can use strings too... In the tree view declaration, put - ``options="{'fg_color': 'green:customer_state == \'success\''}"`` - attribute in the ``field`` tag: +- Can use strings too... In the tree view declaration, put + ``options="{'fg_color': 'green:customer_state == \'success\''}"`` + attribute in the ``field`` tag: - :: + :: - ... - - - ... - - ... - - - ... + ... + + + ... + + ... + + + ... **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 @@ -127,14 +127,14 @@ evaluated using py.eval()** Known issues / Roadmap ====================== -- 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 - with the name of the field on the ```` element. Since 13.0, the - ``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, - but could be reimplement in another way. -- Since version 17.0 coloring is written into ``style`` attribute of - (td) element +- 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 + with the name of the field on the ```` element. Since 13.0, the + ``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, + but could be reimplement in another way. +- Since version 17.0 coloring is written into ``style`` attribute of + (td) element Bug Tracker =========== @@ -158,22 +158,21 @@ Authors Contributors ------------ -- Damien Crier -- Holger Brunn -- Artem Kostyuk -- Guewen Baconnier -- Phuc Tran Thanh -- Sylvain LE GAL - <`https://twitter.com/legalsylvain `__> -- Jurgis Pralgauskis +- Damien Crier +- Holger Brunn +- Artem Kostyuk +- Guewen Baconnier +- Phuc Tran Thanh +- Sylvain LE GAL +- Jurgis Pralgauskis Other credits ------------- The development of this module has been financially supported by: -- Camptocamp -- Versada +- Camptocamp +- Versada Maintainers ----------- diff --git a/web_tree_dynamic_colored_field/static/description/index.html b/web_tree_dynamic_colored_field/static/description/index.html index 2cf59f0cf..b4c31ef31 100644 --- a/web_tree_dynamic_colored_field/static/description/index.html +++ b/web_tree_dynamic_colored_field/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:6521bdb39984b1f0b648e2ab5e2798ab30f3b70c504669ef51a772bcb92663da +!! source digest: sha256:3ada4e5c3475a760e028bcac0d81857e0dfd6d603cbd5a19a2c992cf21fbac2c !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/web Translate me on Weblate Try me on Runboat

This module aims to add support for dynamically coloring fields in tree @@ -377,8 +377,8 @@ view according to data in the record.

  • Add attribute bg_color on field’s options to color background of a cell in tree view
  • -
  • Add attribute fg_color on field’s options to change text -color of a cell in tree view
  • +
  • Add attribute fg_color on field’s options to change text color +of a cell in tree view

Table of contents

@@ -506,8 +506,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
  • Artem Kostyuk <a.kostyuk@mobilunity.com>
  • Guewen Baconnier <guewen.baconnier@camptocamp.com>
  • Phuc Tran Thanh <phuc@trobz.com>
  • -
  • Sylvain LE GAL -<https://twitter.com/legalsylvain>
  • +
  • Sylvain LE GAL <https://twitter.com/legalsylvain>
  • Jurgis Pralgauskis <jurgis@versada.eu>