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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
e8bf1284
Commit
e8bf1284
authored
Jul 18, 2019
by
Yusei Tahara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_core] Add getVariationCategoryValueListDict to InventoryListBrain.
To use variation is still too complex.
parent
44a716cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.InventoryBrain.py
...teItem/portal_components/extension.erp5.InventoryBrain.py
+14
-0
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.InventoryBrain.xml
...eItem/portal_components/extension.erp5.InventoryBrain.xml
+3
-1
No files found.
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.InventoryBrain.py
View file @
e8bf1284
...
...
@@ -309,6 +309,20 @@ class InventoryListBrain(ComputedAttributeGetItemCompatibleMixin):
mapping
=
mapping
)
return
translateString
(
'Unknown'
)
def
getVariationCategoryValueListDict
(
self
):
result
=
{}
if
not
self
.
variation_text
:
return
result
category_tool
=
self
.
portal_categories
for
category_path
in
self
.
variation_text
.
split
(
'
\
n
'
):
category_value
=
category_tool
.
getCategoryValue
(
category_path
)
base_category_id
=
category_tool
.
getBaseCategoryId
(
category_path
)
if
not
base_category_id
in
result
:
result
[
base_category_id
]
=
[]
result
[
base_category_id
].
append
(
category_value
)
return
result
class
TrackingListBrain
(
InventoryListBrain
):
"""
List of aggregated movements
...
...
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.InventoryBrain.xml
View file @
e8bf1284
...
...
@@ -45,7 +45,9 @@
<item>
<key>
<string>
text_content_warning_message
</string>
</key>
<value>
<tuple/>
<tuple>
<string>
W: 17, 0: Unused getToolByName imported from Products.CMFCore.utils (unused-import)
</string>
</tuple>
</value>
</item>
<item>
...
...
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