worker hour2
This commit is contained in:
parent
ded9045930
commit
b54a7f0461
|
@ -297,7 +297,7 @@ func (s *StaffSalary) getRealWorkDay(month string) float64 {
|
|||
|
||||
//其他按工作时长结算
|
||||
if checkin.EndTime > 0 && checkin.StartTime > 0 {
|
||||
duration := float64(checkin.EndTime-checkin.StartTime) / (cast.ToFloat64(corp.GetConfig().WorkerHouer) + 1.5) //加上午休的1.5小时
|
||||
duration := (float64(checkin.EndTime-checkin.StartTime)/float64(3600) - 1.5) / cast.ToFloat64(corp.GetConfig().WorkerHouer) //减去午休的1.5小时
|
||||
realWorkdays += goutil.If(duration > 1, 1, duration)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue