[IMP] event, usability: improved the order of registrations

bzr revid: qdp-launchpad@openerp.com-20120224163211-yo55u48nld9ccx9q
This commit is contained in:
Quentin (OpenERP) 2012-02-24 17:32:11 +01:00
parent 61977cb44b
commit 059ac98661
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ class event_registration(osv.osv):
'state': 'draft',
'user_id': lambda self, cr, uid, ctx: uid,
}
_order = 'create_date desc'
_order = 'name, create_date desc'
def do_draft(self, cr, uid, ids, context=None):