Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
3370 Vistas

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
Mejor respuesta

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.

Publicaciones relacionadas Respuestas Vistas Actividad
2
abr 23
3323
2
feb 21
16479
1
oct 20
3513
2
ago 19
3869
0
sept 16
4461