Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
3374 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
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 Odpovědi Zobrazení Aktivita
2
dub 23
3323
2
úno 21
16482
1
říj 20
3513
2
srp 19
3870
0
zář 16
4461