I am using odoo9
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
3
Replies
13163
Tampilan
create new functional fields color in .py file that will change values as per state.
def change_colore_on_kanban(self):
""" this method is used to chenge color index base on fee status ---------------------------------------- :return: index of color for kanban view """
for record in self:
color = 0
if record.status == 'occupied':
color = 2
elif record.status == 'available':
color = 5
elif record.cleaning_status == 'dirty':
color = 7
elif record.cleaning_status == 'cleaned':
color = 5
else:
color=5
record.color = color
color = fields.Integer('Color Index', compute="change_colore_on_kanban")
then define kanban color on new field in xml file.
<div t-attf-class="#{kanban_color(record.color.raw_value)}">
Thanks Ajeet
How could I change the background color of the WHOLE kanban column?
I added a new field to the Stage model like this:
How can I use this field's value when rendering the column in the kanban view?
Thanks!
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
Daftar