Remove default on date_create

bzr revid: ced-061b07d8c856c0a0907d6a0674f7c511d877277d
This commit is contained in:
ced 2007-09-13 14:21:48 +00:00
parent 9e278cd519
commit 38ddf6d439
1 changed files with 0 additions and 1 deletions

View File

@ -281,7 +281,6 @@ class crm_case(osv.osv):
'state': lambda *a: 'draft',
'priority': lambda *a: AVAILABLE_PRIORITIES[2][0],
'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
'create_date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
}
_order = 'priority, date_deadline desc, id desc'