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
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
5
Replies
11670
Views
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
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Sep 19
|
12166 | ||
How to ORDER BY? [Odoo 10]
Solved
|
|
2
Nov 24
|
25066 | |
|
2
May 24
|
5512 | ||
|
3
Mar 24
|
4962 | ||
|
0
Mar 24
|
261 |
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.