Skip to content

Commit

Permalink
Bugfix: MonthlyEmployeeReportWeek: sum fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
kreinhard committed Jan 23, 2025
1 parent 15a4494 commit e196070
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void addEntry(TimesheetDO sheet, final boolean hasSelectAccess) {
}
long duration = sheet.getDuration();
entry.addMillis(duration);
totalDuration += entry.getWorkFractionMillis();
totalDuration += sheet.getWorkFractionDuration();
totalGrossDuration += duration;
}

Expand Down

0 comments on commit e196070

Please sign in to comment.