跳至内容
菜单
此问题已终结
1 回复
22870 查看

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

形象
丢弃

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

编写者 最佳答案

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
 

形象
丢弃
相关帖文 回复 查看 活动
1
7月 22
2754
2
3月 15
15717
1
9月 22
10124
1
10月 20
3403
1
1月 25
1707