[IMP] Ordering of invoices

bzr revid: mra@mra-laptop-20100827064140-iknjtawsm1s1x6fo
This commit is contained in:
Mustufa Rangwala 2010-08-27 12:11:40 +05:30
commit 581087ee9e
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)]}),