[FIX] project_long_term : wrong date string for Phase has been corrected

bzr revid: jam@tinyerp.com-20110428050614-cfw5r9kqm2ug3ccb
This commit is contained in:
Jigar Amin 2011-04-28 10:36:14 +05:30
parent 9f5cc1ee47
commit 1a3d923003
1 changed files with 2 additions and 2 deletions

View File

@ -570,8 +570,8 @@ def Project_%d():
phase_pool.write(cr, uid, [phase_id], {
'date_start': start_date.strftime('%Y-%m-%d %H:%M:%S'),
'date_end': end_date.strftime('%Y-%m-%d %H:%M:%S')
'date_start': start_date.strftime('%Y-%m-%d'),
'date_end': end_date.strftime('%Y-%m-%d')
}, context=context)
return True