[FIX] Audittrail : Logs set in descending order

lp bug: https://launchpad.net/bugs/401110 fixed

bzr revid: jvo@tinyerp.com-20090826125601-f278ruieeigv6255
This commit is contained in:
Ferdinand(Chricar) 2009-08-26 18:26:01 +05:30 committed by Jay (Open ERP)
parent a46214f11f
commit 74b7e1ac5f
1 changed files with 1 additions and 0 deletions

View File

@ -112,6 +112,7 @@ class audittrail_log(osv.osv):
_defaults = {
"timestamp": lambda *a: time.strftime("%Y-%m-%d %H:%M:%S")
}
_order = "timestamp desc"
audittrail_log()