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
e97ac155
Commit
e97ac155
authored
Dec 29, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BusinessSnapshot: Add item which belongs to installable Business Template
parent
472afddf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
product/ERP5/Document/BusinessSnapshot.py
product/ERP5/Document/BusinessSnapshot.py
+10
-8
No files found.
product/ERP5/Document/BusinessSnapshot.py
View file @
e97ac155
...
...
@@ -206,14 +206,16 @@ class BusinessSnapshot(Folder):
for
commit
in
successor_commit_list
:
for
item
in
commit
.
objectValues
():
item_path
=
item
.
getProperty
(
'item_path'
)
if
item_path
in
new_item_path_list
:
# Replace the old item with same path with new item
new_item_list
=
[
l
if
l
.
getProperty
(
'item_path'
)
!=
item_path
else
item
for
l
in
new_item_list
]
else
:
# Add the item to list if there is no existing item at that path
new_item_list
.
append
(
item
)
new_item_path_list
.
append
(
item_path
)
# Check if the item has a follow_up only with installable Business Template
if
item
.
getFollowUpValue
().
getAvailabilityState
()
==
'installable'
:
item_path
=
item
.
getProperty
(
'item_path'
)
if
item_path
in
new_item_path_list
:
# Replace the old item with same path with new item
new_item_list
=
[
l
if
l
.
getProperty
(
'item_path'
)
!=
item_path
else
item
for
l
in
new_item_list
]
else
:
# Add the item to list if there is no existing item at that path
new_item_list
.
append
(
item
)
new_item_path_list
.
append
(
item_path
)
# Create hardlinks for the objects
for
item
in
new_item_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