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
0577e30b
Commit
0577e30b
authored
Mar 07, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: Better to use _delObject and _setObject as handle indexing also
parent
f476d2ed
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
product/ERP5/Document/BusinessManager.py
product/ERP5/Document/BusinessManager.py
+3
-2
No files found.
product/ERP5/Document/BusinessManager.py
View file @
0577e30b
...
@@ -694,12 +694,13 @@ class BusinessItem(Implicit, Persistent):
...
@@ -694,12 +694,13 @@ class BusinessItem(Implicit, Persistent):
old_obj
=
container
.
_getOb
(
object_id
,
None
)
old_obj
=
container
.
_getOb
(
object_id
,
None
)
# delete the old object before installing a new object
# delete the old object before installing a new object
if
old_obj
:
if
old_obj
:
container
.
_delOb
(
object_id
)
container
.
_delObject
(
object_id
)
# If sign is +1, set the new object on the container
if
self
.
_sign
==
1
:
if
self
.
_sign
==
1
:
# install object
# install object
obj
=
self
.
_value
obj
=
self
.
_value
obj
=
obj
.
_getCopy
(
container
)
obj
=
obj
.
_getCopy
(
container
)
container
.
_setOb
(
object_id
,
obj
)
container
.
_setOb
ject
(
object_id
,
obj
)
obj
=
container
.
_getOb
(
object_id
)
obj
=
container
.
_getOb
(
object_id
)
obj
.
isIndexable
=
ConstantGetter
(
'isIndexable'
,
value
=
False
)
obj
.
isIndexable
=
ConstantGetter
(
'isIndexable'
,
value
=
False
)
aq_base
(
obj
).
uid
=
portal
.
portal_catalog
.
newUid
()
aq_base
(
obj
).
uid
=
portal
.
portal_catalog
.
newUid
()
...
...
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