How to pick time only in Datetime field in odoo 10
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
5
Trả lời
12590
Lượt xem
How to pick time only in Datetime field in odoo 10
import datetime
string = '2018-05-17 10:44:50'
dt = datetime.datetime.strptime(string,'%Y-%m-%d %H:%M:%S')
print dt.time()
print dt.time().hour
print dt.time().minute
# output
10:44:50
10
44
dt = datetime.datetime.strptime(string,'%Y-%m-%d %H:%M:%S')
time = dt.time()
date = dt.date()
check_in_date = datetime.strptime(check_in, "%Y-%m-%d %H:%M:%S").date()
Hello
from datetime import datetime
date = field.Datetime(string='Date')
On_your_method
get_time = datetime.datetime.strptime(date,'%Y-%m-%d %H:%M:%S')
final_time = get_time.time()
print "final time", final_time
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 9 19
|
13174 | ||
|
2
thg 7 25
|
4479 | ||
|
2
thg 12 24
|
7664 | ||
How to ORDER BY? [Odoo 10]
Đã xử lý
|
|
2
thg 11 24
|
28426 | |
|
2
thg 5 24
|
7394 |
Date manipulation in python:
1- http://learnopenerp.blogspot.com/2018/01/python-date-manipulation.html
2- http://learnopenerp.blogspot.com/2018/02/python-strftime-datetime-formatting.html
3- http://learnopenerp.blogspot.com/2018/02/python-timedelta.html
Hope it will works for you.