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
Léo-Paul Géneau
slapos.core
Commits
fb95b945
Commit
fb95b945
authored
Apr 26, 2019
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_crm: Remove unsupported sort, and make the script more reusable
parent
fd0b8d89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm_monitoring/Base_getOpenRelatedTicketList.py
...ns/slapos_crm_monitoring/Base_getOpenRelatedTicketList.py
+5
-7
No files found.
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm_monitoring/Base_getOpenRelatedTicketList.py
View file @
fb95b945
...
...
@@ -16,13 +16,11 @@ query = ComplexQuery(
logical_operator
=
'and'
),
logical_operator
=
'or'
)
# Use event modification date instead.
kw
[
'sort_on'
]
=
((
"catalog.simulation_state='suspended'"
,
'DESC'
),
(
"catalog.simulation_state='validated'"
,
'DESC'
),
(
"catalog.simulation_state='confirmed'"
,
'DESC'
),
(
'modification_date'
,
'DESC'
),)
kw
[
'simulation_state'
]
=
"NOT cancelled"
kw
[
'limit'
]
=
30
kw
[
'sort_on'
]
=
((
'modification_date'
,
'DESC'
),)
if
'simulation_state'
not
in
kw
:
kw
[
'simulation_state'
]
=
"NOT cancelled"
if
'limit'
not
in
kw
:
kw
[
'limit'
]
=
30
result_list
=
[]
for
document
in
portal
.
portal_catalog
(
query
=
query
,
**
kw
):
if
document
.
getPortalType
()
==
"Upgrade Decision Line"
:
...
...
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