[IMP] Account invoice: the order of invoices (all) is not correct: it should display them by number desc (not asc as currently)

bzr revid: mra@mra-laptop-20100827061756-s1ujub9a3ye5nfjc
This commit is contained in:
Mustufa Rangwala 2010-08-27 11:47:56 +05:30
parent 3690da3b9b
commit 0975cb41ec
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ class account_invoice(osv.osv):
_name = "account.invoice"
_description = 'Invoice'
_order = "id"
_order = "id desc"
_columns = {
'name': fields.char('Description', size=64, select=True, readonly=True, states={'draft':[('readonly',False)]}),