Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
5354 Lượt xem

Hello,

I'm creating a script that makes XMLRPC queries on the POS orders (using search_read), and I need to retrieve the date and time the orders were created. However the query is bringing the datetimes in UTC. Is there a way to request them in a specific timezone?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi Hugo,

You Can't but you can convert it by using following code

import pytz

local = pytz.timezone(self.env.user.tz)
naive = datetime.datetime.strptime(Your UTC Time, "%Y-%m-%d %H:%M:%S")
local_dt = local.localize(naive, is_dst=None)
utc_dt = local_dt.astimezone(pytz.utc)
print(utc_dt.strftime("%Y-%m-%d %H:%M:%S"))

Thanks

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

use can use context_timestamp to convert datetime to user timezone like 

meet_date = fields.Datetime.from_string(self.meeting_date)
meeting_usertime = fields.Datetime.to_string(fields.Datetime.context_timestamp(self, meet_date))


Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 7 25
3038
1
thg 10 24
2219
2
thg 7 24
15878
1
thg 4 24
2265
0
thg 9 23
1771