Skip to content

Commit

Permalink
Merge pull request #34 from it-at-m/bug-1702-1645_wartestatistik-tage…
Browse files Browse the repository at this point in the history
…sdurchschnitt-wird-nicht-angezeigt_und_rechtschreibfehler

Fix Spontankunden
  • Loading branch information
ThomasAFink authored Nov 30, 2023
2 parents 32c19cb + 5256c36 commit 1a79cb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zmsstatistic/src/Zmsstatistic/Download/WaitingReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public function writeTotals(ReportEntity $report, $sheet)
{
$entity = clone $report;
$totals = array_pop($entity->data);
$reportTotal['max'][] = 'Tagesmaximum Spontantkunden';
$reportTotal['average'][] = 'Tagesdurchschnitt Spontantkunden';
$reportTotal['max'][] = 'Tagesmaximum Spontankunden';
$reportTotal['average'][] = 'Tagesdurchschnitt Spontankunden';
$reportTotal['max'][] = $totals['max_waitingtime'];
$reportTotal['average'][] = $totals['average_waitingtime'];
foreach ($entity->data as $entry) {
Expand Down

0 comments on commit 1a79cb8

Please sign in to comment.