Commit 0269075c authored by Vincent Pelletier's avatar Vincent Pelletier

Fix a stupid typo.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@22656 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 06334cf8
......@@ -146,9 +146,9 @@ def checkReferenceListUniqueness(reference_list, model_uid, destination_payment_
Check each given reference not to already exist.\n
"""\n
if destination_payment_uid is None:\n
match_list = portal.portal_catalog(portal_type=\'Check\', reference=reference_list, resource_relative_uid=model_uid, simulation_state=\'!=deleted\')\n
match_list = portal.portal_catalog(portal_type=\'Check\', reference=reference_list, resource_uid=model_uid, simulation_state=\'!=deleted\')\n
else:\n
match_list = portal.portal_catalog(portal_type=\'Check\', reference=reference_list, destination_payment_uid=destination_payment_uid, resource_relative_uid=model_uid,\n
match_list = portal.portal_catalog(portal_type=\'Check\', reference=reference_list, destination_payment_uid=destination_payment_uid, resource_uid=model_uid,\n
simulation_state=\'!=deleted\')\n
assertReferenceMatchListEmpty(match_list, destination_payment_uid)\n
for reference in reference_list:\n
......
405
\ No newline at end of file
406
\ No newline at end of file
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