=== modified file hr_timesheet/report/user_timesheet.py --- hr_timesheet/report/user_timesheet.py 2011-02-07 11:38:37 +0000 +++ hr_timesheet/report/user_timesheet.py 2011-06-10 15:44:18 +0000 @@ -67,7 +67,7 @@ if user_id: # Computing the attendence by analytical account cr.execute( - "select line.date, (unit_amount * unit.factor) as amount, account_id, account.name "\ + "select line.date, (unit_amount / unit.factor) as amount, account_id, account.name "\ "from account_analytic_line as line, hr_analytic_timesheet as hr, "\ "account_analytic_account as account, product_uom as unit "\ "where hr.line_id=line.id and line.account_id=account.id "\ === modified file hr_timesheet/report/users_timesheet.py --- hr_timesheet/report/users_timesheet.py 2011-01-17 11:35:21 +0000 +++ hr_timesheet/report/users_timesheet.py 2011-06-10 15:43:49 +0000 @@ -37,7 +37,7 @@ def emp_create_xml(cr, id, som, eom, emp): # Computing the attendence by analytical account cr.execute( - "select line.date, (unit_amount * unit.factor) as amount "\ + "select line.date, (unit_amount / unit.factor) as amount "\ "from account_analytic_line as line, hr_analytic_timesheet as hr, "\ "product_uom as unit "\ "where hr.line_id=line.id "\