Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Titouan Soulard
slapos.core
Commits
aa7fe1cf
Commit
aa7fe1cf
authored
Jan 19, 2023
by
Romain Courteaud
🐸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_cloud: no need to search a Software Product if there is no url_string
parent
824f83f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
22 deletions
+24
-22
master/bt5/slapos_cloud/SkinTemplateItem/portal_skins/slapos_cloud/InstanceTree_getSoftwareProduct.py
...tal_skins/slapos_cloud/InstanceTree_getSoftwareProduct.py
+24
-22
No files found.
master/bt5/slapos_cloud/SkinTemplateItem/portal_skins/slapos_cloud/InstanceTree_getSoftwareProduct.py
View file @
aa7fe1cf
...
...
@@ -4,32 +4,34 @@ software_product = None
software_release
=
None
software_type
=
None
use_category_uid
=
portal
.
restrictedTraverse
(
"portal_categories/use/trade/sale"
).
getUid
(),
product_list
=
portal
.
portal_catalog
(
portal_type
=
"Software Product"
,
validation_state
=
[
'validated'
,
'published'
],
use__uid
=
use_category_uid
,
follow_up__uid
=
context
.
getFollowUpUid
()
)
if
url_string
:
if
len
(
product_list
)
!=
0
:
software_release
=
portal
.
portal_catalog
.
getResultValue
(
portal_type
=
"Software Product Release Variation"
,
url_string
=
url_string
,
parent_uid
=
[
x
.
getUid
()
for
x
in
product_list
]
use_category_uid
=
portal
.
restrictedTraverse
(
"portal_categories/use/trade/sale"
).
getUid
(),
product_list
=
portal
.
portal_catalog
(
portal_type
=
"Software Product"
,
validation_state
=
[
'validated'
,
'published'
],
use__uid
=
use_category_uid
,
follow_up__uid
=
context
.
getFollowUpUid
()
)
if
software_release
is
not
None
:
software_product
=
software_release
.
getParentValue
()
software_type
=
portal
.
portal_catalog
.
getResultValue
(
parent_uid
=
software_product
.
getUid
(),
title
=
context
.
getSourceReference
(),
portal_type
=
"Software Product Type Variation"
if
len
(
product_list
)
!=
0
:
software_release
=
portal
.
portal_catalog
.
getResultValue
(
portal_type
=
"Software Product Release Variation"
,
url_string
=
url_string
,
parent_uid
=
[
x
.
getUid
()
for
x
in
product_list
]
)
if
software_type
is
None
:
software_release
=
None
software_product
=
None
if
software_release
is
not
None
:
software_product
=
software_release
.
getParentValue
()
software_type
=
portal
.
portal_catalog
.
getResultValue
(
parent_uid
=
software_product
.
getUid
(),
title
=
context
.
getSourceReference
(),
portal_type
=
"Software Product Type Variation"
)
if
software_type
is
None
:
software_release
=
None
software_product
=
None
return
software_product
,
software_release
,
software_type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment