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
9ec769d6
Commit
9ec769d6
authored
Feb 11, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formulator: py3
parent
d9a80973
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
product/Formulator/Widget.py
product/Formulator/Widget.py
+2
-2
product/Formulator/tests/testSerializeForm.py
product/Formulator/tests/testSerializeForm.py
+4
-2
No files found.
product/Formulator/Widget.py
View file @
9ec769d6
...
@@ -1563,7 +1563,7 @@ class DateTimeWidget(Widget):
...
@@ -1563,7 +1563,7 @@ class DateTimeWidget(Widget):
format_dict
=
self
.
format_to_sql_format_dict
format_dict
=
self
.
format_to_sql_format_dict
input_order
=
format_dict
.
get
(
self
.
getInputOrder
(
field
),
input_order
=
format_dict
.
get
(
self
.
getInputOrder
(
field
),
self
.
sql_format_default
)
self
.
sql_format_default
)
if
isinstance
(
value
,
six
.
text_type
):
if
six
.
PY2
and
isinstance
(
value
,
six
.
text_type
):
value
=
value
.
encode
(
field
.
get_form_encoding
())
value
=
value
.
encode
(
field
.
get_form_encoding
())
return
{
'query'
:
value
,
return
{
'query'
:
value
,
'format'
:
field
.
get_value
(
'date_separator'
).
join
(
input_order
),
'format'
:
field
.
get_value
(
'date_separator'
).
join
(
input_order
),
...
@@ -2126,7 +2126,7 @@ class FloatWidget(TextWidget):
...
@@ -2126,7 +2126,7 @@ class FloatWidget(TextWidget):
# field.
# field.
for
x
in
xrange
(
0
,
precision
):
for
x
in
xrange
(
0
,
precision
):
format
+=
'0'
format
+=
'0'
if
isinstance
(
value
,
six
.
text_type
):
if
six
.
PY2
and
isinstance
(
value
,
six
.
text_type
):
value
=
value
.
encode
(
field
.
get_form_encoding
())
value
=
value
.
encode
(
field
.
get_form_encoding
())
return
{
'query'
:
value
,
return
{
'query'
:
value
,
'format'
:
format
,
'format'
:
format
,
...
...
product/Formulator/tests/testSerializeForm.py
View file @
9ec769d6
...
@@ -36,8 +36,10 @@ class FakeRequest:
...
@@ -36,8 +36,10 @@ class FakeRequest:
def
clear
(
self
):
def
clear
(
self
):
self
.
dict
.
clear
()
self
.
dict
.
clear
()
def
__nonzero__
(
self
):
def
__bool__
(
self
):
return
0
return
False
if
six
.
PY2
:
__nonzero__
=
__bool__
class
SerializeTestCase
(
unittest
.
TestCase
):
class
SerializeTestCase
(
unittest
.
TestCase
):
def
test_simpleSerialize
(
self
):
def
test_simpleSerialize
(
self
):
...
...
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