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
Yusei Tahara
erp5
Commits
6c77903e
Commit
6c77903e
authored
Sep 28, 2012
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support timezone conversion on date fields
parent
8cc7959e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
product/Formulator/Widget.py
product/Formulator/Widget.py
+15
-2
product/ZSQLCatalog/SearchKey/DateTimeKey.py
product/ZSQLCatalog/SearchKey/DateTimeKey.py
+3
-0
No files found.
product/Formulator/Widget.py
View file @
6c77903e
...
@@ -1305,6 +1305,11 @@ class DateTimeWidget(Widget):
...
@@ -1305,6 +1305,11 @@ class DateTimeWidget(Widget):
description
=
(
"Display timezone"
),
description
=
(
"Display timezone"
),
default
=
0
)
default
=
0
)
default_timezone
=
fields
.
StringField
(
'default_timezone'
,
title
=
"Default timezone"
,
description
=
(
"Convert dates to the given timezone"
),
default
=
''
)
default
=
fields
.
DateTimeField
(
'default'
,
default
=
fields
.
DateTimeField
(
'default'
,
title
=
"Default"
,
title
=
"Default"
,
description
=
(
"The default datetime."
),
description
=
(
"The default datetime."
),
...
@@ -1378,8 +1383,8 @@ class DateTimeWidget(Widget):
...
@@ -1378,8 +1383,8 @@ class DateTimeWidget(Widget):
property_names
=
Widget
.
property_names
+
\
property_names
=
Widget
.
property_names
+
\
[
'default_now'
,
'date_separator'
,
'time_separator'
,
[
'default_now'
,
'date_separator'
,
'time_separator'
,
'input_style'
,
'input_order'
,
'date_only'
,
'input_style'
,
'input_order'
,
'date_only'
,
'ampm_time_style'
,
'timezone_style'
,
'
hide_day
'
,
'ampm_time_style'
,
'timezone_style'
,
'
default_timezone
'
,
'hidden_day_is_last_day'
]
'hid
e_day'
,
'hid
den_day_is_last_day'
]
def
getInputOrder
(
self
,
field
):
def
getInputOrder
(
self
,
field
):
input_order
=
field
.
get_value
(
'input_order'
)
input_order
=
field
.
get_value
(
'input_order'
)
...
@@ -1402,6 +1407,7 @@ class DateTimeWidget(Widget):
...
@@ -1402,6 +1407,7 @@ class DateTimeWidget(Widget):
This only describes the field format settings, not the actual
This only describes the field format settings, not the actual
format of provided value.
format of provided value.
query : Passthrough of given value.
query : Passthrough of given value.
timezone: the timezone to consider.
"""
"""
if
not
value
:
if
not
value
:
return
None
return
None
...
@@ -1412,11 +1418,13 @@ class DateTimeWidget(Widget):
...
@@ -1412,11 +1418,13 @@ class DateTimeWidget(Widget):
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
),
'timezone'
:
field
.
get_value
(
'default_timezone'
),
'type'
:
'date'
}
'type'
:
'date'
}
def
render
(
self
,
field
,
key
,
value
,
REQUEST
,
render_prefix
=
None
):
def
render
(
self
,
field
,
key
,
value
,
REQUEST
,
render_prefix
=
None
):
use_ampm
=
field
.
get_value
(
'ampm_time_style'
)
use_ampm
=
field
.
get_value
(
'ampm_time_style'
)
use_timezone
=
field
.
get_value
(
'timezone_style'
)
use_timezone
=
field
.
get_value
(
'timezone_style'
)
timezone
=
field
.
get_value
(
'default_timezone'
)
# FIXME: backwards compatibility hack:
# FIXME: backwards compatibility hack:
if
not
hasattr
(
field
,
'sub_form'
):
if
not
hasattr
(
field
,
'sub_form'
):
from
StandardFields
import
create_datetime_text_sub_form
from
StandardFields
import
create_datetime_text_sub_form
...
@@ -1439,6 +1447,8 @@ class DateTimeWidget(Widget):
...
@@ -1439,6 +1447,8 @@ class DateTimeWidget(Widget):
ampm
=
None
ampm
=
None
timezone
=
None
timezone
=
None
if
isinstance
(
value
,
DateTime
):
if
isinstance
(
value
,
DateTime
):
if
timezone
:
value
=
value
.
toZone
(
timezone
)
year
=
"%04d"
%
value
.
year
()
year
=
"%04d"
%
value
.
year
()
month
=
"%02d"
%
value
.
month
()
month
=
"%02d"
%
value
.
month
()
day
=
"%02d"
%
value
.
day
()
day
=
"%02d"
%
value
.
day
()
...
@@ -1503,6 +1513,9 @@ class DateTimeWidget(Widget):
...
@@ -1503,6 +1513,9 @@ class DateTimeWidget(Widget):
use_ampm
=
field
.
get_value
(
'ampm_time_style'
)
use_ampm
=
field
.
get_value
(
'ampm_time_style'
)
use_timezone
=
field
.
get_value
(
'timezone_style'
)
use_timezone
=
field
.
get_value
(
'timezone_style'
)
default_timezone
=
field
.
get_value
(
'default_timezone'
)
if
default_timezone
:
value
=
value
.
toZone
(
default_timezone
)
year
=
"%04d"
%
value
.
year
()
year
=
"%04d"
%
value
.
year
()
month
=
"%02d"
%
value
.
month
()
month
=
"%02d"
%
value
.
month
()
...
...
product/ZSQLCatalog/SearchKey/DateTimeKey.py
View file @
6c77903e
...
@@ -59,7 +59,10 @@ def castDate(value, change_timezone=True):
...
@@ -59,7 +59,10 @@ def castDate(value, change_timezone=True):
# input.
# input.
assert
value
[
'type'
]
==
'date'
assert
value
[
'type'
]
==
'date'
format
=
value
.
get
(
'format'
)
format
=
value
.
get
(
'format'
)
timezone
=
value
.
get
(
'timezone'
)
value
=
value
[
'query'
]
value
=
value
[
'query'
]
if
timezone
:
value
=
"%s %s"
%
(
value
,
timezone
)
if
format
==
'%m/%d/%Y'
:
if
format
==
'%m/%d/%Y'
:
date_kw
.
pop
(
'datefmt'
)
date_kw
.
pop
(
'datefmt'
)
if
isinstance
(
value
,
DateTime
):
if
isinstance
(
value
,
DateTime
):
...
...
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