Skip to content

Commit

Permalink
Merge pull request #265 from micromata/Release-8.1-SNAPSHOT
Browse files Browse the repository at this point in the history
Bugfix: MonthlyEmployeeReportWeek: sum fixed.
  • Loading branch information
kreinhard authored Jan 23, 2025
2 parents 29c4839 + e196070 commit be5bf46
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 be5bf46

Please sign in to comment.