Commit 261072c7 authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_jio: Fixup Typos on the script

parent 72b46a06
Pipeline #12274 failed with stage
in 0 seconds
...@@ -28,7 +28,7 @@ if portal_type in ["Hosting Subscription", "Computer"]: ...@@ -28,7 +28,7 @@ if portal_type in ["Hosting Subscription", "Computer"]:
entry = addAttentionForTicket(ticket) entry = addAttentionForTicket(ticket)
if entry is not None: if entry is not None:
attention_point_list.append(entry) attention_point_list.append(entry)
# This is a limitation of the API that will consider that all tickets # This is a limitation of the API that will consider that all tickets
# Are from this module # Are from this module
if portal_type in ["Support Request Module"]: if portal_type in ["Support Request Module"]:
...@@ -45,17 +45,17 @@ if portal_type in ["Support Request Module"]: ...@@ -45,17 +45,17 @@ if portal_type in ["Support Request Module"]:
if portal_type in ["Hosting Subscription Module", "Hosting Subscription", "Person"] and \ if portal_type in ["Hosting Subscription Module", "Hosting Subscription", "Person"] and \
portal.portal_preferences.getPreferredCloudContractEnabled(): portal.portal_preferences.getPreferredCloudContractEnabled():
person = portal.portal_membership.getAuthenticatedMember().getUserValue() person = portal.portal_membership.getAuthenticatedMember().getUserValue()
contract = portal.portal_catalog.getResultValue( contract = portal.portal_catalog.getResultValue(
portal_type="Cloud Contract", portal_type="Cloud Contract",
default_destination_section_uid=person.getUid(), default_destination_section_uid=person.getUid(),
validation_state=['validated'], validation_state=['validated'],
) )
if contract is None: if contract is None:
msg = context.Base_translateString( msg = context.Base_translateString(
"Your Contract is Desactivated") "Your Contract is Deactivated")
attention_point_list.append({"text": msg, 'page': "gadget_erp5_page_slap_request_contract_activation"}) attention_point_list.append({"text": msg, 'page': "slap_request_contract_activation"})
return dumps(attention_point_list) return dumps(attention_point_list)
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