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
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
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.
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
CRM - kanban order
Rozwiązane
|
|
1
mar 24
|
2534 | |
|
1
sty 25
|
1770 | ||
|
1
sty 24
|
2199 | ||
|
1
gru 22
|
3379 | ||
|
0
sie 22
|
2643 |
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"