5123: Fix bug in associations filter

This commit is contained in:
Nick Hall 2014-01-22 16:11:07 +00:00
parent 044a507453
commit 9ecc665625

View File

@ -61,13 +61,13 @@ class HasAssociation(Rule):
else:
self.count_type = 1 # "equal to"
self.userSelectedCount = int(self.list[0])
self.selected_count = int(self.list[0])
def apply(self, db, person):
return len( person.get_person_ref_list()) > 0
count = len(person.get_person_ref_list())
if self.count_type == 0: # "lesser than"
return count < self.userSelectedCount
return count < self.selected_count
elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount
return count > self.selected_count
# "equal to"
return count == self.userSelectedCount
return count == self.selected_count