Skip to Content
Menu
This question has been flagged
1 Reply
21680 Views

Hy folks,

I was wondering how is possible to change the background color of an item in the same way as for tree, calendar, etc... I tried this :

<kanban position="attributes">
<attribute name="colors">green:membership_state='none';red:membership_state</attribute></kanban>

How is it possible to condition color? Where can I found example of this in the mdoules?

Thanks

Avatar
Discard

Hi, Any luck? Having the same question. Many thanks!

Author Best Answer

Changing the color in kanban could be done by setting a class like that :

<code>
<field name="member_color"/>
.../...
<templates>
.../...
<div t-attf-class="oe_kanban_color_#{kanban_getcolor(record.member_color.raw_value)}" >
.../...
</div>
</code>

I created a functionnl field :
```python
'member_color': fields.function(_check_color, 'Couleur', type="integer")
.../...
def _check_color(self, cr, uid, ids, field_name, arg, context):
        pp = pprint.PrettyPrinter(indent=4)
        res = {}       
        for record in self.browse(cr, uid, ids, context):
            color = 0
            if record.membership_state == u'paid':
                color = 4
            elif record.membership_state == u'invoiced':
                color = 3
            elif record.membership_state == u'canceled':
                color = 3
            elif record.membership_state == u'waiting':
                color = 5
            elif record.membership_state == u'old':
                color= 1
            res[record.id] = color
        return res

```

The principle is that the web  widget that handle Kanban will load the color thanks to its css. Check ".openerp .oe_kanban_view .oe_kanban_color_X" css classes in the web css.
AFAIK The color number is limited to 0->9 caus the js method is designed like this.

Hope it could help
 

Avatar
Discard
Related Posts Replies Views Activity
1
Jul 22
1459
2
Mar 15
14580
1
Sep 22
8941
1
Oct 20
3357
0
Nov 24
68