Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
7801 Widoki

When looking at Leads in the Kanban view, I only see a subset of stages.

If there is at least one lead in a stage, I can see the stage.  If there are no leads in a stage, I cannot see that stage.

I want to see all stages, even if they contain no leads, so I can drag a lead to ANY stage, rather than opening it at setting it from the Form view.

Awatar
Odrzuć
Autor Najlepsza odpowiedź

The _read_group_stage_ids method of crm_lead decides which stages to make visible in the Kanban.

You need to override this method in your own module, removing the lines that specify to search for only the stages that match the current list of leads:

def _read_group_stage_ids(...)

....

if team_id: search_domain += ['|', ('team_ids', '=', team_id)]
search_domain += [('id', 'in', ids)] # <--- remove this line
else:
search_domain += [('id', 'in', ids)] # <--- replace this line with pass
Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
lip 24
1710
1
sty 24
1762
7
sie 25
27739
1
sie 24
2491
0
cze 22
2809