c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #17149
[Bug 723443] [NEW] default datetime value is at moment when server starts
Public bug reported:
In the stock/stock.py the default datetime value is at moment when server starts.
Is defined as:
_defaults = {'date': time.strftime('%Y-%m-%d %H:%M:%S'),}
Should be defined as:
_defaults = {'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),}
** Affects: openobject-addons
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/723443
Title:
default datetime value is at moment when server starts
Status in OpenERP Modules (addons):
New
Bug description:
In the stock/stock.py the default datetime value is at moment when server starts.
Is defined as:
_defaults = {'date': time.strftime('%Y-%m-%d %H:%M:%S'),}
Should be defined as:
_defaults = {'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),}
Follow ups
References