Commit 19bcbfff authored by Jérome Perrin's avatar Jérome Perrin

social_contracts: py3

parent d9ab589e
......@@ -24,11 +24,11 @@ for social_contract in context.getDestinationRelatedValueList(portal_type='Socia
if getattr(social_contract, 'stop_date', None) is None or social_contract.stop_date >= at_date:
social_contract_list.append(social_contract)
partner_uid_dict = {}
partner_uid_set = set()
# find all partners from those social contracts
for social_contract in social_contract_list:
for partner_uid in social_contract.getDestinationUidList( portal_type = 'Person' ):
if partner_uid != context.getUid():
partner_uid_dict[partner_uid] = 1
partner_uid_set.add(partner_uid)
return len( partner_uid_dict.keys() )
return len(partner_uid_set)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment