Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
0
Merge Requests
0
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
Romain Courteaud
erp5_rtl_support
Commits
b15160aa
Commit
b15160aa
authored
Apr 20, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: Delete _tree attribute before installing new Business Item
parent
d080ad28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+5
-4
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
b15160aa
...
...
@@ -1747,8 +1747,9 @@ class TemplateTool (BaseTool):
# Update hashes of item in old state before installation
for
item
in
old_installation_state
.
_path_item_list
:
value
=
item
.
value
item
.
_sha
=
self
.
calculateComparableHash
(
value
)
print
item
.
value
if
item
.
value
:
item
.
_sha
=
self
.
calculateComparableHash
(
item
.
value
)
# Path Item List for installation_process should be the difference between
# old and new installation state
...
...
@@ -1909,10 +1910,10 @@ class TemplateTool (BaseTool):
value
=
new_item
.
value
if
value
is
None
:
continue
if
value
.
_tree
:
if
getattr
(
value
,
'_tree'
,
None
)
:
# This check is required cause only after first access we get the
# values from the dict
del
value
.
_tree
del
attr
(
value
,
'_tree'
)
new_item
.
install
(
installation_process
)
return
error_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