[FIX] account: Bank statement in _order add id desc

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

bzr revid: vth@tinyerp.com-20101103133030-3vj44ct2ks3r5u2g
This commit is contained in:
vth 2010-11-03 19:00:30 +05:30
parent d2c2e37066
commit fd4c44f3f4
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ class account_bank_statement(osv.osv):
res[statement_id] = (currency_id, currency_names[currency_id])
return res
_order = "date desc"
_order = "date desc ,id desc"
_name = "account.bank.statement"
_description = "Bank Statement"
_columns = {