Hi, I want to change the color of the kanban view based on the expiration date
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- सीआरएम
- e-Commerce
- लेखांकन
- इन्वेंटरी
- PoS
- Project
- MRP
This question has been flagged
2
Replies
8034
Views
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
try this
decoration-danger="condition"
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
मार्च 15
|
4994 | ||
|
2
मई 25
|
1340 | ||
|
1
अग॰ 21
|
3494 | ||
|
1
मार्च 19
|
13374 | ||
|
2
अक्तू॰ 16
|
5176 |
a nice idea, did you find a solution?