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
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
Show 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):
...
@@ -1747,8 +1747,9 @@ class TemplateTool (BaseTool):
# Update hashes of item in old state before installation
# Update hashes of item in old state before installation
for
item
in
old_installation_state
.
_path_item_list
:
for
item
in
old_installation_state
.
_path_item_list
:
value
=
item
.
value
print
item
.
value
item
.
_sha
=
self
.
calculateComparableHash
(
value
)
if
item
.
value
:
item
.
_sha
=
self
.
calculateComparableHash
(
item
.
value
)
# Path Item List for installation_process should be the difference between
# Path Item List for installation_process should be the difference between
# old and new installation state
# old and new installation state
...
@@ -1909,10 +1910,10 @@ class TemplateTool (BaseTool):
...
@@ -1909,10 +1910,10 @@ class TemplateTool (BaseTool):
value
=
new_item
.
value
value
=
new_item
.
value
if
value
is
None
:
if
value
is
None
:
continue
continue
if
value
.
_tree
:
if
getattr
(
value
,
'_tree'
,
None
)
:
# This check is required cause only after first access we get the
# This check is required cause only after first access we get the
# values from the dict
# values from the dict
del
value
.
_tree
del
attr
(
value
,
'_tree'
)
new_item
.
install
(
installation_process
)
new_item
.
install
(
installation_process
)
return
error_list
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