Commit e3376cbf authored by Alain Takoudjou's avatar Alain Takoudjou

slapos_pdm: add personal computer in list to create upgrade decision

parent a552527d
......@@ -4,12 +4,14 @@ public_scope_uid = portal.restrictedTraverse(
"portal_categories/allocation_scope/open/public", None).getUid()
friend_scope_uid = portal.restrictedTraverse(
"portal_categories/allocation_scope/open/friend", None).getUid()
personal_scope_uid = portal.restrictedTraverse(
"portal_categories/allocation_scope/open/personal", None).getUid()
if public_scope_uid and friend_scope_uid:
portal.portal_catalog.searchAndActivate(
portal_type='Computer',
validation_state = 'validated',
default_allocation_scope_uid=[public_scope_uid, friend_scope_uid],
default_allocation_scope_uid=[public_scope_uid, friend_scope_uid, personal_scope_uid],
method_id = 'Computer_createHostingSubscriptionUpgradeDecision',
activate_kw = {'tag':tag}
)
......
......@@ -4,12 +4,14 @@ public_scope_uid = portal.restrictedTraverse(
"portal_categories/allocation_scope/open/public", None).getUid()
friend_scope_uid = portal.restrictedTraverse(
"portal_categories/allocation_scope/open/friend", None).getUid()
personal_scope_uid = portal.restrictedTraverse(
"portal_categories/allocation_scope/open/personal", None).getUid()
if public_scope_uid and friend_scope_uid:
portal.portal_catalog.searchAndActivate(
portal_type='Computer',
validation_state = 'validated',
default_allocation_scope_uid=[public_scope_uid, friend_scope_uid],
default_allocation_scope_uid=[public_scope_uid, friend_scope_uid, personal_scope_uid],
method_id = 'Computer_checkAndCreateUpgradeDecision',
activate_kw = {'tag':tag}
)
......
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