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
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
018c4ebc
Commit
018c4ebc
authored
Feb 14, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SimulationTool: py3
parent
e262aedf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.SimulationTool.py
...emplateItem/portal_components/tool.erp5.SimulationTool.py
+7
-3
No files found.
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.SimulationTool.py
View file @
018c4ebc
...
...
@@ -28,6 +28,7 @@ from __future__ import division
#
##############################################################################
import
functools
from
past.builtins
import
cmp
from
six
import
string_types
as
basestring
from
Products.CMFCore.utils
import
getToolByName
...
...
@@ -1569,8 +1570,8 @@ class SimulationTool(BaseTool):
try
:
# We must copy the path so that getObject works
setattr
(
result
,
'path'
,
line_a
.
path
)
except
ValueError
:
# XXX: ValueError ? really ?
# getInventory return no object, so no path available
except
(
AttributeError
,
ValueError
):
# getInventory return
ed
no object, so no path available
pass
if
parent
is
not
None
:
result
=
result
.
__of__
(
parent
)
...
...
@@ -1637,7 +1638,10 @@ class SimulationTool(BaseTool):
result
*=
-
1
break
return
result
sorted_inventory_list
.
sort
(
cmp_inventory_line
)
if
six
.
PY2
:
sorted_inventory_list
.
sort
(
cmp_inventory_line
)
else
:
sorted_inventory_list
.
sort
(
key
=
functools
.
cmp_to_key
(
cmp_inventory_line
))
# Brain is rebuild properly using tuple not r instance
column_list
=
first_result
.
_searchable_result_columns
()
column_name_list
=
[
x
[
'name'
]
for
x
in
column_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