fix: update export file headers and formatting for clarity

This commit is contained in:
Tiavina 2025-04-09 16:01:58 +03:00
parent b5d2ddcdea
commit 364cecf4d1

View File

@ -121,13 +121,13 @@ class ExportThanatoStatisticService {
'LIEU'.';'. 'LIEU'.';'.
'POMPES FUNEBRES'.';'. 'POMPES FUNEBRES'.';'.
'ADRESSE'.';'. 'ADRESSE'.';'.
'DISTANCE TOTALE KM'.';'. 'DISTANCE TOTALE KM (KM)'.';'.
'HEURES TOTAL DE SOIN'.';'. 'HEURES TOTAL DE SOIN (H)'.';'.
'HEURES TOTAL DE CONGE'.';'. 'HEURES TOTAL DE CONGE (H)'.';'.
'HEURES TOTAL DE REPOS'.';'. 'HEURES TOTAL DE REPOS (H)'.';'.
'HEURES TOTAL DE MALADIE'.';'. 'HEURES TOTAL DE MALADIE (H)'.';'.
'HEURES TOTAL DE TRAVAIL'.';'. 'HEURES TOTAL DE TRAVAIL (H)'.';'.
'HEURES TOTAL DE PARCOURS ENTRE DEVIS'.';'. 'HEURES TOTAL DE PARCOURS ENTRE DEVIS (H)'.';'.
"\n"; "\n";
return $fileHeader; return $fileHeader;
} }
@ -193,7 +193,7 @@ class ExportThanatoStatisticService {
''.';'. ''.';'.
''.';'. ''.';'.
''.';'. ''.';'.
"0.5H".';'. "0.5".';'.
''.';'. ''.';'.
''.';'. ''.';'.
''.';'. ''.';'.
@ -298,13 +298,13 @@ class ExportThanatoStatisticService {
''.';'. ''.';'.
''.';'. ''.';'.
''.';'. ''.';'.
"$distance"."KM".';'. "$distance".';'.
"$totalDevisHours"."H".';'. "$totalDevisHours".';'.
"$totalLeaveHours"."H".';'. "$totalLeaveHours".';'.
"$totalRestHours"."H".';'. "$totalRestHours".';'.
"$totalDiseaseHours"."H".';'. "$totalDiseaseHours".';'.
"$totalWorkedHours"."H".';'. "$totalWorkedHours".';'.
"$totalTravelingHours"."H"."\n"; "$totalTravelingHours"."\n";
return $fileContent; return $fileContent;
} }