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
85e9a942
Commit
85e9a942
authored
Mar 13, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: Compare hash while subtracting 2 Business Manager
parent
3f24ea18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
product/ERP5/Document/BusinessManager.py
product/ERP5/Document/BusinessManager.py
+10
-2
No files found.
product/ERP5/Document/BusinessManager.py
View file @
85e9a942
...
...
@@ -331,11 +331,19 @@ class BusinessManager(XMLObject):
"""
Override subtract to find difference b/w the values in different cases.
"""
# Create the sha list for all path item list available in current object
sha_list
=
[
item
.
_sha
for
item
in
self
.
_path_item_list
]
# Reverse the sign of Business Item objects for the old Business Manager
# Trying comparing/subtracting ZODB with old installed object
for
path_item
in
other
.
_path_item_list
:
path_item
.
_sign
=
-
1
self
.
_path_item_list
.
append
(
path_item
)
if
path_item
.
_sha
in
sha_list
:
self
.
_path_item_list
=
[
item
for
item
in
self
.
_path_item_list
if
item
.
_sha
!=
path_item
.
_sha
]
else
:
path_item
.
_sign
=
-
1
self
.
_path_item_list
.
append
(
path_item
)
return
self
__rsub__
=
__add__
...
...
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