← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 711533] [NEW] v6 hr_attendance - time is rounded to howr

 

Public bug reported:

The hr_attendance time is rounded by hour, not by minute.

I suggest this fix:

/hr_attendance/report/attendance_by_month.py

line 88

-                            wh += (dt - ldt).seconds/60/60
+                            wh += (float((dt - ldt).seconds)/3600)

Similar issue for the weekly attendance.

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/711533

Title:
  v6 hr_attendance - time is rounded to howr

Status in OpenERP Modules (addons):
  New

Bug description:
  The hr_attendance time is rounded by hour, not by minute.

  I suggest this fix:

  /hr_attendance/report/attendance_by_month.py

  line 88

  -                            wh += (dt - ldt).seconds/60/60
  +                            wh += (float((dt - ldt).seconds)/3600)

  Similar issue for the weekly attendance.





Follow ups

References