Hi I want to order the kanban view for a particular field.
Example: crm.lead ordered by priority, in view kanban
If someone can give me a hand.
Of course grateful
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- Project
- MRP
この質問にフラグが付けられました
3
返信
10460
ビュー
Add to YOUR model
_order = "YOUR FIELD"
It will sort by YOUR FIELD
Thanks @Vasiliy it's worked perfectly for me. :)
It does not work, I'm doing something wrong?
class crm_lead(osv.osv):
_name = "crm.lead"
_inherit = "crm.lead"
_order = "priority desc"
crm_lead()
Hello,
Perhaps, i don't understand your need but Order in list view and go to kanban view.
関連投稿 | 返信 | ビュー | 活動 | |
---|---|---|---|---|
|
1
3月 24
|
2738 | ||
|
1
1月 25
|
2022 | ||
|
1
1月 24
|
2441 | ||
|
1
12月 22
|
3542 | ||
|
0
8月 22
|
2823 |
the kanban are grouped by stage. Need, that order under each stage, with priority ascending Order.
For ascending order use "priority asc" or just "priority"