Skip to content
Snippets Groups Projects
Commit b264b457 authored by Carlos Vega's avatar Carlos Vega
Browse files

Issue #293 fix column exclude filter

parent a1f2fca6
No related branches found
No related tags found
3 merge requests!208Update/merge 12 into 13,!207Merge Devel 0.12.x into Master (0.13.x),!204Issue #293 fix column excluded column in subject list
Pipeline #7836 passed
......@@ -245,6 +245,8 @@ def get_subjects_filtered(subjects_to_be_filtered, filters):
result = result.filter(resigned=(value == "true"))
elif column == "postponed":
result = result.filter(postponed=(value == "true"))
elif column == "excluded":
result = result.filter(excluded=(value == "true"))
elif column == "information_sent":
result = result.filter(information_sent=(value == "true"))
elif column == "health_partner_first_name":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment