feat(chalice): fixed funnels
This commit is contained in:
parent
e1e139bfaa
commit
82cb2e6ad9
3 changed files with 12 additions and 12 deletions
|
|
@ -574,10 +574,10 @@ def get_top_insights(filter_d, project_id):
|
||||||
# Obtain the first part of the output
|
# Obtain the first part of the output
|
||||||
stages_list = get_stages(stages, rows)
|
stages_list = get_stages(stages, rows)
|
||||||
# Obtain the second part of the output
|
# Obtain the second part of the output
|
||||||
n_critical_issues, issues_dict, total_drop_due_to_issues = get_issues(stages, rows,
|
total_drop_due_to_issues = get_issues(stages, rows,
|
||||||
first_stage=filter_d.get("firstStage"),
|
first_stage=filter_d.get("firstStage"),
|
||||||
last_stage=filter_d.get("lastStage"),
|
last_stage=filter_d.get("lastStage"),
|
||||||
drop_only=True)
|
drop_only=True)
|
||||||
return stages_list, total_drop_due_to_issues
|
return stages_list, total_drop_due_to_issues
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -580,10 +580,10 @@ def get_top_insights(filter_d, project_id):
|
||||||
# Obtain the first part of the output
|
# Obtain the first part of the output
|
||||||
stages_list = get_stages(stages, rows)
|
stages_list = get_stages(stages, rows)
|
||||||
# Obtain the second part of the output
|
# Obtain the second part of the output
|
||||||
n_critical_issues, issues_dict, total_drop_due_to_issues = get_issues(stages, rows,
|
total_drop_due_to_issues = get_issues(stages, rows,
|
||||||
first_stage=filter_d.get("firstStage"),
|
first_stage=filter_d.get("firstStage"),
|
||||||
last_stage=filter_d.get("lastStage"),
|
last_stage=filter_d.get("lastStage"),
|
||||||
drop_only=True)
|
drop_only=True)
|
||||||
return stages_list, total_drop_due_to_issues
|
return stages_list, total_drop_due_to_issues
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -580,10 +580,10 @@ def get_top_insights(filter_d, project_id):
|
||||||
# Obtain the first part of the output
|
# Obtain the first part of the output
|
||||||
stages_list = get_stages(stages, rows)
|
stages_list = get_stages(stages, rows)
|
||||||
# Obtain the second part of the output
|
# Obtain the second part of the output
|
||||||
n_critical_issues, issues_dict, total_drop_due_to_issues = get_issues(stages, rows,
|
total_drop_due_to_issues = get_issues(stages, rows,
|
||||||
first_stage=filter_d.get("firstStage"),
|
first_stage=filter_d.get("firstStage"),
|
||||||
last_stage=filter_d.get("lastStage"),
|
last_stage=filter_d.get("lastStage"),
|
||||||
drop_only=True)
|
drop_only=True)
|
||||||
return stages_list, total_drop_due_to_issues
|
return stages_list, total_drop_due_to_issues
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue