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
3521f91f
Commit
3521f91f
authored
Dec 19, 2017
by
Ayush Tiwari
Committed by
Ayush Tiwari
Apr 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BusinessManager: Update item_path_list in Business Mangager only when manager is already set
parent
b0cf373a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
15 deletions
+16
-15
product/ERP5/Document/BusinessManager.py
product/ERP5/Document/BusinessManager.py
+16
-15
No files found.
product/ERP5/Document/BusinessManager.py
View file @
3521f91f
...
...
@@ -743,24 +743,25 @@ class BusinessItem(XMLObject):
# Update the Business Manager with the path list everytime after editing
# item_path
manager
=
self
.
getFollowUpValue
()
# Copy the path list for Business Manager and update it with new path
item_path_list
=
manager
.
getItemPathList
()[:]
old_item_path
=
self
.
_v_modified_property_dict
.
get
(
'item_path'
)
if
old_item_path
and
item_path_list
:
if
old_item_path
in
item_path_list
:
for
idx
,
item
in
enumerate
(
item_path_list
):
if
item
==
old_item_path
:
item_path_list
[
idx
]
=
self
.
getProperty
(
'item_path'
)
# Check if the manager has already been set or not
if
manager
:
# Copy the path list for Business Manager and update it with new path
item_path_list
=
manager
.
getItemPathList
()[:]
old_item_path
=
self
.
_v_modified_property_dict
.
get
(
'item_path'
)
if
old_item_path
and
item_path_list
:
if
old_item_path
in
item_path_list
:
for
idx
,
item
in
enumerate
(
item_path_list
):
if
item
==
old_item_path
:
item_path_list
[
idx
]
=
self
.
getProperty
(
'item_path'
)
else
:
item_path_list
.
append
(
self
.
getProperty
(
'item_path'
))
else
:
# If there is no old_item_path or if path_list is empty, we can just
# append the new_path in path_list
item_path_list
.
append
(
self
.
getProperty
(
'item_path'
))
else
:
# If there is no old_item_path or if path_list is empty, we can just
# append the new_path in path_list
item_path_list
.
append
(
self
.
getProperty
(
'item_path'
))
# Update the manager with new path list
manager
.
setProperty
(
'item_path_list'
,
item_path_list
)
# Update the manager with new path list
manager
.
setProperty
(
'item_path_list'
,
item_path_list
)
def
build
(
self
,
context
,
**
kw
):
"""
...
...
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