Skip to content

Commit

Permalink
only display date (no time) in ZE_TABELLE. issue #2119
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Oct 10, 2023
1 parent c1587c1 commit b27102e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1775,7 +1775,7 @@ else if("NL".equalsIgnoreCase(language))
ct.addRow("", "", "", "", "");
}

SimpleDateFormat dfDateTime=new SimpleDateFormat("dd.MM.yyyy HH:mm");
SimpleDateFormat dfDateTime=new SimpleDateFormat("dd.MM.yyyy");
for (TimesheetPosition pos: posList) {
float totalMinutes = ((float) (pos.getStopped().getTime() - pos.getStarted().getTime())) / 1000f / 60f;
double roundedMinutes = Math.ceil(totalMinutes / pos.getTimesheet().getInterval()) * pos.getTimesheet().getInterval();
Expand Down

0 comments on commit b27102e

Please sign in to comment.