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
138
Merge Requests
138
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
a0d221b4
Commit
a0d221b4
authored
Mar 16, 2023
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
Mar 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py2/py3: cast dict.keys() to list.
parent
4f32e0a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
bt5/erp5_trade/TestTemplateItem/portal_components/test.erp5.testOrderBuilder.py
...plateItem/portal_components/test.erp5.testOrderBuilder.py
+2
-1
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.DomainTool.py
...entTemplateItem/portal_components/tool.erp5.DomainTool.py
+2
-1
No files found.
bt5/erp5_trade/TestTemplateItem/portal_components/test.erp5.testOrderBuilder.py
View file @
a0d221b4
...
...
@@ -27,6 +27,7 @@
#
##############################################################################
from
Products.ERP5Type.Utils
import
ensure_list
from
Products.ERP5Type.tests.ERP5TypeTestCase
import
ERP5TypeTestCase
from
DateTime
import
DateTime
from
Products.ERP5Type.tests.Sequence
import
SequenceList
...
...
@@ -240,7 +241,7 @@ class TestOrderBuilderMixin(TestOrderMixin, InventoryAPITestCase):
self
.
wanted_quantity_matrix
=
self
.
decrease_quantity_matrix
.
copy
()
packing_list_line
.
setVariationCategoryList
(
self
.
decrease_quantity_matrix
.
keys
(
),
ensure_list
(
self
.
decrease_quantity_matrix
.
keys
()
),
)
self
.
tic
()
...
...
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.DomainTool.py
View file @
a0d221b4
...
...
@@ -32,6 +32,7 @@ from AccessControl import ClassSecurityInfo
from
Products.ERP5Type.Globals
import
InitializeClass
from
Products.ERP5Type
import
Permissions
from
Products.ERP5Type.Tool.BaseTool
import
BaseTool
from
Products.ERP5Type.Utils
import
ensure_list
from
Products.ZSQLCatalog.SQLCatalog
import
SimpleQuery
,
ComplexQuery
import
six
...
...
@@ -337,7 +338,7 @@ class DomainTool(BaseTool):
mapped_value
=
self
.
getPortalObject
().
newContent
(
temp_object
=
True
,
portal_type
=
'Supply Cell'
,
id
=
'multivalued_mapped_value'
)
mapped_value
.
_setMappedValuePropertyList
(
mapped_value_property_dict
.
keys
(
))
ensure_list
(
mapped_value_property_dict
.
keys
()
))
mapped_value
.
__dict__
.
update
(
mapped_value_property_dict
)
return
mapped_value
...
...
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