added export feature constr consent

This commit is contained in:
Luca Haid
2025-05-07 14:16:16 +02:00
parent 5061255a01
commit 27727c0c92

View File

@@ -1193,7 +1193,7 @@ class ConstructionConsentController extends mfBaseController {
'Geändert am',
'Genehmigung überschrieben'
];
fputcsv($output, $headers, ',');
fputcsv($output, $headers, ';');
if ($items) {
foreach ($items as $item) {
@@ -1240,7 +1240,7 @@ class ConstructionConsentController extends mfBaseController {
date('d.m.Y H:i:s', $item->edit),
$item->approve_override,
];
fputcsv($output, $row, ',');
fputcsv($output, $row, ';');
}
}