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
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
Eteri
erp5
Commits
a032230c
Commit
a032230c
authored
Jun 18, 2019
by
Nicolas Wavrant
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DomainTool: list predicate values if more than one match
Also remove explanation_only which is dead code
parent
2df4b71f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
product/ERP5/Tool/DomainTool.py
product/ERP5/Tool/DomainTool.py
+1
-10
No files found.
product/ERP5/Tool/DomainTool.py
View file @
a032230c
...
...
@@ -303,7 +303,7 @@ class DomainTool(BaseTool):
# (some users are not able to see resource's price)
security
.
declarePublic
(
'generateMultivaluedMappedValue'
)
def
generateMultivaluedMappedValue
(
self
,
context
,
test
=
1
,
predicate_list
=
None
,
explanation_only
=
0
,
**
kw
):
predicate_list
=
None
,
**
kw
):
"""
We will generate a mapped value with the list of all predicates
found.
...
...
@@ -320,22 +320,13 @@ class DomainTool(BaseTool):
if
predicate_list
:
from
Products.ERP5Type.Document
import
newTempSupplyCell
mapped_value_property_dict
=
defaultdict
(
list
)
explanation_dict
=
defaultdict
(
dict
)
# Look for each property the first predicate with unique criterion
# categories which defines the property
for
predicate
in
predicate_list
:
full_prop_dict
=
explanation_dict
[
tuple
(
predicate
.
getMembershipCriterionCategoryList
())]
for
mapped_value_property
in
predicate
.
getMappedValuePropertyList
():
if
mapped_value_property
in
full_prop_dict
:
# we already have one value for this (categories, property)
continue
value
=
predicate
.
getProperty
(
mapped_value_property
)
if
value
is
not
None
:
full_prop_dict
[
mapped_value_property
]
=
value
mapped_value_property_dict
[
mapped_value_property
].
append
(
value
)
if
explanation_only
:
return
dict
(
explanation_dict
)
mapped_value
=
newTempSupplyCell
(
self
.
getPortalObject
(),
'multivalued_mapped_value'
)
mapped_value
.
_setMappedValuePropertyList
(
...
...
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