How to subtract date now and birthday field then pass the age value in a field (readonly)?
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ờ
Hi Kasai,
You can calculate age using the following script:-
start = datetime.strptime(object.birthdate, DEFAULT_SERVER_DATE_FORMAT)
end = datetime.strptime(time.strftime(DEFAULT_SERVER_DATE_FORMAT), DEFAULT_SERVER_DATE_FORMAT)
delta = end - start
age = (delta.days / 365)
Please don't forget to import following:-
import time
from dateutil.relativedelta import relativedelta
from datetime import datetime
from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT
Hope this helps,, please let me know if it does.
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 3 22
|
3385 | ||
|
1
thg 5 22
|
2197 | ||
|
3
thg 10 15
|
4198 | ||
|
3
thg 6 25
|
1193 | ||
|
1
thg 1 25
|
18028 |