Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
138
Merge Requests
138
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
7dbba66c
Commit
7dbba66c
authored
Mar 13, 2023
by
Kazuhiko Shiozaki
Committed by
Arnaud Fontaine
Jul 06, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py2/py3: cmp() and sort(cmp=...) do not exist in Python 3.
parent
049efef7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
product/ERP5/Document/Alarm.py
product/ERP5/Document/Alarm.py
+2
-6
No files found.
product/ERP5/Document/Alarm.py
View file @
7dbba66c
...
...
@@ -348,12 +348,8 @@ class Alarm(XMLObject, PeriodicityMixin):
result_list
=
[
x
for
x
in
active_process
.
getResultList
()
if
x
is
not
None
]
attachment_list
=
[]
if
len
(
result_list
):
def
sort_result_list
(
a
,
b
):
result
=
-
cmp
(
a
.
severity
,
b
.
severity
)
if
result
==
0
:
result
=
cmp
(
a
.
summary
,
b
.
summary
)
return
result
result_list
.
sort
(
sort_result_list
)
# Here we assume that severity type is int or float and summary type is same for all entries.
result_list
.
sort
(
key
=
lambda
e
:
(
-
e
.
severity
,
e
.
summary
))
rendered_alarm_result_list
=
[
'%02i summary: %s
\
n
%s
\
n
----'
%
(
int
(
getattr
(
x
,
'severity'
,
0
)),
getattr
(
x
,
'summary'
,
''
),
getattr
(
x
,
'detail'
,
''
))
for
x
in
result_list
]
...
...
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