[IMP] crm: remove date from _order

bzr revid: hmo@tinyerp.com-20100308115100-2uzkp76d14lw9dlb
This commit is contained in:
Harry (Open ERP) 2010-03-08 17:21:00 +05:30
parent 3b04171221
commit a5a3c0b665
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ class crm_case(osv.osv):
'section_id': _get_section,
'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'crm.case', context=c),
}
_order = 'date_deadline desc, date desc,id desc'
_order = 'date_deadline desc, create_date desc,id desc'
def unlink(self, cr, uid, ids, context={}):
for case in self.browse(cr, uid, ids, context):