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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Cédric Le Ninivin
erp5
Commits
1c60b172
Commit
1c60b172
authored
Dec 11, 2019
by
Cédric Le Ninivin
Committed by
Titouan Soulard
Mar 15, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_mrp_change_managment: Fix concurrency problem when editing the same key multiple times
parent
dff5f2dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
bt5/erp5_mrp_change_managment/SkinTemplateItem/portal_skins/erp5_mrp_change_managment/TransformationChange_checkApplyResult.py
...change_managment/TransformationChange_checkApplyResult.py
+1
-4
No files found.
bt5/erp5_mrp_change_managment/SkinTemplateItem/portal_skins/erp5_mrp_change_managment/TransformationChange_checkApplyResult.py
View file @
1c60b172
...
...
@@ -103,10 +103,7 @@ def getExpectedTransformationTransformedResourceDict(transformation_change_list,
for
key
,
value_list
in
base_dict
.
iteritems
():
for
ttr_value
in
value_list
:
if
'transformation_change'
in
ttr_value
:
if
key
not
in
expected_dict
:
expected_dict
[
key
]
=
[]
expected_dict
[
key
].
append
(
ttr_value
)
expected_dict
[
key
]
=
[
ttr_value
]
return
expected_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