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
140
Merge Requests
140
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
27afa42c
Commit
27afa42c
authored
Mar 20, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config:Update install function for BI and add some get functions for Business Path
parent
32de0fab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
7 deletions
+30
-7
product/ERP5/Document/BusinessManager.py
product/ERP5/Document/BusinessManager.py
+30
-7
No files found.
product/ERP5/Document/BusinessManager.py
View file @
27afa42c
...
@@ -364,6 +364,33 @@ class BusinessManager(XMLObject):
...
@@ -364,6 +364,33 @@ class BusinessManager(XMLObject):
except
IndexError
:
except
IndexError
:
pass
pass
def
getPathList
(
self
):
path_list
=
[]
for
item
in
self
.
_path_item_list
:
path_list
.
append
(
item
.
_path
)
return
path_list
def
getPathShaDict
(
self
):
path_sha_dict
=
{}
# TODO: Handle error for BM with multiple items at same path
for
item
in
self
.
_path_item_list
:
path_sha_dict
[
item
.
_path
]
=
item
.
_sha
return
path_item_dict
def
getPathItemDict
(
self
):
path_item_dict
=
{}
# TODO: Handle error for BM with multiple items at same path
for
item
in
self
.
_path_item_list
:
path_item_dict
[
item
.
_path
]
=
item
return
path_item_dict
def
getBusinessItemByPath
(
self
,
path
):
path_item_dict
=
self
.
getPathItemDict
()
try
:
return
path_item_dict
[
path
]
except
KeyError
:
return
def
build
(
self
,
no_action
=
False
,
**
kw
):
def
build
(
self
,
no_action
=
False
,
**
kw
):
"""Creates new values for business item from the values from
"""Creates new values for business item from the values from
OFS Database"""
OFS Database"""
...
@@ -540,7 +567,6 @@ class BusinessManager(XMLObject):
...
@@ -540,7 +567,6 @@ class BusinessManager(XMLObject):
return
added_value
,
subtracted_value
return
added_value
,
subtracted_value
class
BusinessItem
(
Implicit
,
Persistent
):
class
BusinessItem
(
Implicit
,
Persistent
):
"""Saves the path and values for objects, properties, etc, the
"""Saves the path and values for objects, properties, etc, the
...
@@ -716,6 +742,9 @@ class BusinessItem(Implicit, Persistent):
...
@@ -716,6 +742,9 @@ class BusinessItem(Implicit, Persistent):
container_url
=
'/'
.
join
(
container_path
)
container_url
=
'/'
.
join
(
container_path
)
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
:
container
.
_delObject
(
object_id
)
# Create a new object only if sign is +1
# If sign is +1, set the new object on the container
# If sign is +1, set the new object on the container
if
self
.
_sign
==
1
:
if
self
.
_sign
==
1
:
# install object
# install object
...
@@ -728,12 +757,6 @@ class BusinessItem(Implicit, Persistent):
...
@@ -728,12 +757,6 @@ class BusinessItem(Implicit, Persistent):
del
obj
.
isIndexable
del
obj
.
isIndexable
if
getattr
(
aq_base
(
obj
),
'reindexObject'
,
None
)
is
not
None
:
if
getattr
(
aq_base
(
obj
),
'reindexObject'
,
None
)
is
not
None
:
obj
.
reindexObject
()
obj
.
reindexObject
()
else
:
# Only in case if sign is -1
if
old_obj
:
# XXX: In case there is an old object which has been modified from the
# older installation, then show the conflict status.
container
.
_delObject
(
object_id
)
def
unrestrictedResolveValue
(
self
,
context
=
None
,
path
=
''
,
default
=
_MARKER
,
def
unrestrictedResolveValue
(
self
,
context
=
None
,
path
=
''
,
default
=
_MARKER
,
restricted
=
0
):
restricted
=
0
):
...
...
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