Merge branch 'fixes/fix-remove-km-and-hour-indicator' into releases/release-h2f

This commit is contained in:
Tiavina 2025-04-09 16:02:25 +03:00
commit bc85172886

View File

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