[FIX]hr_timesheet_sheet: wrong coloumn in timesheet view

lp bug: https://launchpad.net/bugs/697673 fixed

bzr revid: ara@tinyerp.com-20110106053521-foflkifrz4rbqck9
This commit is contained in:
ARA (OpenERP) 2011-01-06 11:05:21 +05:30
parent 74c0095279
commit 9944b0a261
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,7 @@ class hr_timesheet_sheet_sheet_day(osv.osv):
_columns = {
'name': fields.date('Date', readonly=True),
'sheet_id': fields.many2one('hr_timesheet_sheet.sheet', 'Sheet', readonly=True, select="1"),
'total_timesheet': fields.float('Project Timesheet', readonly=True),
'total_timesheet': fields.float('Total Timesheet', readonly=True),
'total_attendance': fields.float('Attendance', readonly=True),
'total_difference': fields.float('Difference', readonly=True),
}