lint container, workflows and composer update (#2591)

This commit is contained in:
Kevin Papst
2021-06-01 19:20:12 +02:00
committed by GitHub
parent 4859ac8ecb
commit c1eb5ba90a
13 changed files with 140 additions and 126 deletions

View File

@@ -58,4 +58,12 @@ class CsvRenderer extends AbstractSpreadsheetRenderer
{
$sheet->setCellValueByColumnAndRow($column, $row, sprintf('=%s', $duration));
}
protected function setRateStyle(Worksheet $sheet, $column, $row, $rate, $currency)
{
if ($rate === 0.00) {
return;
}
parent::setRateStyle($sheet, $column, $row, $rate, $currency);
}
}