Commit fc9ddec3 authored by Gabriel Monnerat's avatar Gabriel Monnerat

Typos

parent 9adaa958
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
</item> </item>
<item> <item>
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string>"""Close all person assignemnt \n <value> <string>"""Close all person assignment \n
Parameters:\n Parameters:\n
role -- Role category item (List of String, default: [])\n role -- Role category item (List of String, default: [])\n
comment -- Workflow transition comment (String, default: "")\n comment -- Workflow transition comment (String, default: "")\n
......
...@@ -50,8 +50,8 @@ ...@@ -50,8 +50,8 @@
</item> </item>
<item> <item>
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string>"""Create an assingment for the person depending credential request configuration\n <value> <string>"""Create an assignment for the person depending credential request configuration\n
Proxy: Assignee -- allow to update the related assignement"""\n Proxy: Assignee -- allow to update the related assignment"""\n
\n \n
# check the script is not called from a url\n # check the script is not called from a url\n
if REQUEST is not None:\n if REQUEST is not None:\n
...@@ -61,15 +61,14 @@ person = context.getDestinationDecisionValue(portal_type="Person")\n ...@@ -61,15 +61,14 @@ person = context.getDestinationDecisionValue(portal_type="Person")\n
organisation = context.getDestinationDecisionValue(portal_type="Organisation")\n organisation = context.getDestinationDecisionValue(portal_type="Organisation")\n
\n \n
assignment_configuration = {}\n assignment_configuration = {}\n
#Look on current assignement\n #Look on current assignment\n
old_role_list = context.portal_categories.role.getCategoryChildLogicalPathItemList()[1:]\n old_role_list = context.portal_categories.role.getCategoryChildLogicalPathItemList()[1:]\n
#old_role_list look like [[\'title\',\'logical_path\'],]\n #old_role_list look like [[\'title\',\'logical_path\'],]\n
old_role_list = [ category[1] for category in old_role_list]\n old_role_list = [category[1] for category in old_role_list]\n
for role in context.getRoleList():\n for role in context.getRoleList():\n
old_role_list.remove(role)\n old_role_list.remove(role)\n
\n
\n \n
#Close old assignement\n #Close old assignment\n
open_assignment_list = context.CredentialRequest_closePersonAssignment(old_role_list)\n open_assignment_list = context.CredentialRequest_closePersonAssignment(old_role_list)\n
\n \n
#Initialisation\n #Initialisation\n
...@@ -79,7 +78,7 @@ delay = today+assignment_duration\n ...@@ -79,7 +78,7 @@ delay = today+assignment_duration\n
\n \n
current_assignment_list = {}\n current_assignment_list = {}\n
for assignment in open_assignment_list:\n for assignment in open_assignment_list:\n
role = assignement.getRole()\n role = assignment.getRole()\n
if role in current_assignment_list:\n if role in current_assignment_list:\n
current_assignment_list[role].append(assignment)\n current_assignment_list[role].append(assignment)\n
else:\n else:\n
......
340 341
\ No newline at end of file \ 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