Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
22876 Tampilan

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
Buang

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

Penulis Jawaban Terbai

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
Buang
Post Terkait Replies Tampilan Aktivitas
1
Jul 22
2757
2
Mar 15
15729
1
Sep 22
10132
1
Okt 20
3403
1
Jan 25
1714