[FIX] hr_timesheet_sheet : casting correction for a view

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

bzr revid: jvo@tinyerp.com-20090922051911-6ujs6cwfgegmqxfe
This commit is contained in:
GPA(Open ERP) 2009-09-22 10:49:11 +05:30 committed by Jay (Open ERP)
parent 3180ca5f74
commit 60550c799d
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ class hr_timesheet_sheet_sheet_day(osv.osv):
sheet_id,
total_timesheet,
total_attendance,
round(cast((total_attendance - total_timesheet) as Numeric),2) AS total_difference
cast(round(cast(total_attendance - total_timesheet as Numeric),2) as Double Precision) AS total_difference
FROM
((
SELECT