Skip to Content
Menú
This question has been flagged
1 Respondre
3373 Vistes

No matter the timezone under user settings, or time on the server, or current UTC time, or anything, every single delivery order has a created date of the previous day at 19:00:00.

 

Example, if today if current time is 07/23/2014 06:16:00 and I create a delivery order, the created date will be 07/22/2014 19:00:00. This makes every kind of tracking wrong. What is the cause and solution of this issue?

Avatar
Descartar
Best Answer

Probable cause of this is the mismatch in type of field and the data that is written to that field

in stock_move class/object you have field 'date':fields.datetime(....
and in method wich is run on validating delivery : create_chained_picking the value entered is  'date': time.strftime('%Y-%m-%d')

you can override it by writing a custom module wich will change column type from and override that method writing correct datime value like: 'date': datetime.strftime('%Y-%m-%d %H:%M:%S')
Writing only date part in datetime field will make server assume time is 00:00:00 .. and your time zone setting will make the timeshift from 00:00:00 to your time... that is why you always have 19:00:00 hrs in your delivery orders.. .

hope it helps.. 



 

Avatar
Descartar
Autor

Well...I was hoping datetime would work out of the box for OpenERP and I would not have to pay someone to write me a module to correct datetime. I guess datetime working out of the box is too much to ask for.

Related Posts Respostes Vistes Activitat
2
d’abr. 23
3323
2
de febr. 21
16482
1
d’oct. 20
3513
2
d’ag. 19
3870
0
de set. 16
4461