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
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
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Carlos Ramos Carreño
erp5
Commits
2c04ccbb
Commit
2c04ccbb
authored
Feb 11, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
listbox: py3
parent
50e52f01
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
bt5/erp5_ui_test/TestTemplateItem/portal_components/test.erp5.testListBox.py
...stTemplateItem/portal_components/test.erp5.testListBox.py
+7
-2
product/ERP5Form/ListBox.py
product/ERP5Form/ListBox.py
+1
-1
No files found.
bt5/erp5_ui_test/TestTemplateItem/portal_components/test.erp5.testListBox.py
View file @
2c04ccbb
...
...
@@ -40,6 +40,7 @@ from Products.ERP5Type.Globals import get_request
from
Products.ERP5Type.tests.utils
import
createZODBPythonScript
from
ZPublisher.HTTPRequest
import
FileUpload
from
six.moves
import
cStringIO
as
StringIO
import
six
from
Products.ERP5Form.Selection
import
Selection
from
Products.Formulator.TALESField
import
TALESMethod
from
Products.ERP5Form.ListBox
import
ListBoxHTMLRenderer
...
...
@@ -252,12 +253,16 @@ class TestListBox(ERP5TypeTestCase):
# We create a script to use as a list method
list_method_id
=
'ListBox_ParametersListMethod'
if
six
.
PY2
:
list_method_code
=
"""return [context.asContext(alternate_title = u'
\
xe9
lisa'.encode('utf8'))]"""
else
:
list_method_code
=
"""return [context.asContext(alternate_title = '
\
xe9
lisa')]"""
createZODBPythonScript
(
portal
.
portal_skins
.
custom
,
list_method_id
,
'selection=None, **kw'
,
"""return [context.asContext(alternate_title = u'
\
xe9
lisa'.encode('utf8'))]"""
)
list_method_code
,
)
# set the listbox to use this as list method
listbox
=
portal
.
FooModule_viewFooList
.
listbox
listbox
.
ListBox_setPropertyList
(
...
...
product/ERP5Form/ListBox.py
View file @
2c04ccbb
...
...
@@ -1254,7 +1254,7 @@ class ListBoxRenderer:
params
.
setdefault
(
'meta_type'
,
meta_type_list
)
# Remove FileUpload parameters
for
k
,
v
in
params
.
items
(
):
for
k
,
v
in
list
(
params
.
items
()
):
if
k
==
"listbox"
:
# listbox can also contain useless parameters
new_list
=
[]
...
...
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