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
141
Merge Requests
141
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
082e53f8
Commit
082e53f8
authored
Oct 17, 2022
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
Aug 21, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup! py2/py3: dict_key does not have sort().
parent
d7a592d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.ImmobilisableItem.py
...Item/portal_components/document.erp5.ImmobilisableItem.py
+2
-6
No files found.
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.ImmobilisableItem.py
View file @
082e53f8
...
...
@@ -26,8 +26,6 @@
#
##############################################################################
from
Products.ERP5Type.Utils
import
ensure_list
import
zope.interface
from
AccessControl
import
ClassSecurityInfo
...
...
@@ -319,8 +317,7 @@ class ImmobilisableItem(Item, Amount):
Returns a list of dictionaries representing immobilisation periods for the object
from_date is included, to_date is excluded
"""
kw_key_list
=
kw
.
keys
()
kw_key_list
.
sort
()
kw_key_list
=
sorted
(
kw
.
keys
())
if
kw_key_list
.
count
(
'immo_cache_dict'
):
kw_key_list
.
remove
(
'immo_cache_dict'
)
immo_cache_dict
=
kw
.
get
(
'immo_cache_dict'
,
{
'period'
:{},
...
...
@@ -780,8 +777,7 @@ class ImmobilisableItem(Item, Amount):
"""
if
at_date
is
None
:
at_date
=
DateTime
()
kw_key_list
=
ensure_list
(
kw
.
keys
())
kw_key_list
.
sort
()
kw_key_list
=
sorted
(
kw
.
keys
())
if
kw_key_list
.
count
(
'immo_cache_dict'
):
kw_key_list
.
remove
(
'immo_cache_dict'
)
...
...
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