Hi,
I have a datetime field named field_date1 in which I am selecting the date. I am having another field in which I should display a datetime which is 5 hours more than the seleccted time in field_date1. I defined an onchange function and in that I wrote the following line for doing the calculation.
date_field2 = date_field1 + timedelta(0,0,0,0,0,5,0)
As timedleta takes the parameters: timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, weeks]]]]]]])
But I am facing an error with that. Can anyone help me with a solution.