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
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
35abeaa6
Commit
35abeaa6
authored
1 year ago
by
Jérome Perrin
Committed by
Arnaud Fontaine
7 months ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formulator: py3
parent
a45a2946
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
product/Formulator/Widget.py
product/Formulator/Widget.py
+2
-2
No files found.
product/Formulator/Widget.py
View file @
35abeaa6
...
...
@@ -1569,7 +1569,7 @@ class DateTimeWidget(Widget):
format_dict
=
self
.
format_to_sql_format_dict
input_order
=
format_dict
.
get
(
self
.
getInputOrder
(
field
),
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
())
return
{
'query'
:
value
,
'format'
:
field
.
get_value
(
'date_separator'
).
join
(
input_order
),
...
...
@@ -2132,7 +2132,7 @@ class FloatWidget(TextWidget):
# field.
for
x
in
xrange
(
0
,
precision
):
format
+=
'0'
if
isinstance
(
value
,
six
.
text_type
):
if
six
.
PY2
and
isinstance
(
value
,
six
.
text_type
):
value
=
value
.
encode
(
field
.
get_form_encoding
())
return
{
'query'
:
value
,
'format'
:
format
,
...
...
This diff is collapsed.
Click to expand it.
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