跳至內容
選單
此問題已被標幟
2 回覆
5971 瀏覽次數

hi all i have inherit field 'end_date' : fields.date in object sale.order. And i have set product with internal category 'Umum'.

in sale order line i want if product_id.categ_id = Umum , field end date onchange plus (+)2 days.


If annyone can help me with example code. i would be very grateful. Thanks before

頭像
捨棄
最佳答案

Using datetime.timedelta


date_1 = datetime.datetime.strptime(start_date, "%m/%d/%y")

end_date = date_1 + datetime.timedelta(days=2)

頭像
捨棄
最佳答案

simply import the timedelta like below:

     from datetime import timedelta, datetime

 Then you can assign like below:

     date_today = fields.Date.today()           

    date_object = datetime.strptime(date_today, '%Y-%m-%d')

    v_date = date_object + timedelta(days=15)

Where 15 is the number of days to be added.!
I hope it may help you.
Thanks.

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
2月 16
5362
2
3月 15
5264
1
7月 19
3256
1
9月 16
7924
6
6月 21
25670