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
Ответы
10351
Представления
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.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
РегистрацияRelated Posts | Ответы | Просмотры | Активность | |
---|---|---|---|---|
CRM - kanban order
Решено
|
|
1
мар. 24
|
2577 | |
|
1
янв. 25
|
1835 | ||
|
1
янв. 24
|
2262 | ||
|
1
дек. 22
|
3416 | ||
|
0
авг. 22
|
2688 |
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"