Skip to Content
Menu
This question has been flagged
2 Replies
4856 Views

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

Avatar
Discard
Best Answer

Using datetime.timedelta


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

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

Avatar
Discard
Best Answer

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.

Avatar
Discard
Related Posts Replies Views Activity
0
Feb 16
4147
2
Mar 15
3985
1
Jul 19
2204
1
Sep 16
6636
6
Jun 21
23412