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
dcce704d
Commit
dcce704d
authored
5 years ago
by
Cédric Le Ninivin
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
9ef4dd19
Changes
1
Show 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 @
dcce704d
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
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