Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
2 Besvarelser
8127 Visninger

Hi, I want to change the color of the kanban view based on the expiration date  

Avatar
Kassér

a nice idea, did you find a solution?

Bedste svar

Hi

You can use the below XML code to set the color of a kanban view.

<kanban>
<!-- Other fileds-->
<field name="color"/>
<templates>
<t t-name="kanban-box">
<div t-attf-class="{{'oe_kanban_color_' + kanban_getcolor(record.color.raw_value) }} oe_kanban_card oe_kanban_global_click oe_semantic_html_override">
<!-- Define view-->
</div>
</t>
</templates>
</kanban>

And inside your model define a color field and compute its value according to the expiration date.

color = fields.Integer('Color', compute='_get_color')

def _get_color(self):
"""Compute Color value according to the conditions"""
for rec in self:
if rec.expiry_date:
rec.color = 1
else:
rec.color = 2

Hope it helps

Avatar
Kassér
Bedste svar

try this

decoration-danger="condition"

Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
1
mar. 15
5050
2
maj 25
1434
1
aug. 21
3555
1
mar. 19
13444
2
okt. 16
5229