Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
4 Trả lời
5039 Lượt xem

I have been trying to get the tree view to show all items with priority of High as red on my list view and found some code to do this but it is not working for me:

<tree string="My Tickets" colors="red:priority=='High'">

Priority is listed as a view in my tree view. I am missing something here?



This works fine if I create a selection:

priority = fields.Selection([('1', 'Low'), ('2', 'Medium'), ('3', 'High')], string='Priority')


Is there a way to get it to work on Many2one fields that can be edited?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

This is working for many2one:

<tree string="My Tickets" colors="red:priority[1]=='High'">

or with the ID

<tree string="My Tickets" colors="red:priority[0]==3">


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

As you have written,

<tree string="My Tickets" colors="red:priority=='High'">

Have you seen that column "priority" have value exact "High" because comparison is case sensitive. So, you have to give value in proper case. Might be "priority" column have value as "high" then you have to write down as like below.

<tree string="My Tickets" colors="red:priority=='high'">

Ảnh đại diện
Huỷ bỏ
Tác giả

that's the first thing I checked. It is a many2one field and I gave it vale "High". Does colors work on many2one fields?

ohh, then I think you need to write down like , I hope it will work.

Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 4 24
2400
0
thg 12 19
5554
3
thg 8 22
7178
1
thg 2 22
9589
1
thg 9 18
12435