From 9515493ab71ad5fa9bae3dc2a0ccc509d7f83b53 Mon Sep 17 00:00:00 2001 From: Tiavina Date: Wed, 29 Jan 2025 13:25:52 +0300 Subject: [PATCH] label of on leave or not on leave in thanato stat --- gestion/lib/Service/ExportThanatoStatisticService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gestion/lib/Service/ExportThanatoStatisticService.php b/gestion/lib/Service/ExportThanatoStatisticService.php index dd05bf5..22eac8d 100644 --- a/gestion/lib/Service/ExportThanatoStatisticService.php +++ b/gestion/lib/Service/ExportThanatoStatisticService.php @@ -116,11 +116,11 @@ class ExportThanatoStatisticService { private function populateNoDevisDataInADay(string $fileContent,$leave){ $startTimeValue = ""; $endTimeValue = ""; - $leaveValue = "Pas conge"; + $leaveValue = "Non"; if($leave["onLeave"]){ $startTimeValue = $leave["startTime"]; $endTimeValue = $leave["endTime"]; - $leaveValue = "Conge"; + $leaveValue = "Oui"; } $fileContent = $fileContent. ''.';'. @@ -231,7 +231,7 @@ class ExportThanatoStatisticService { FileExportHelpers::FormatTextForExport($devis["endTime"]).';'. FileExportHelpers::FormatTextForExport($produitAsString).';'. FileExportHelpers::FormatTextForExport($devis["dayType"]).';'. - FileExportHelpers::FormatTextForExport('Pas conge').';'. + FileExportHelpers::FormatTextForExport('Non').';'. FileExportHelpers::FormatTextForExport($devis["nom_defunt"]).';'. FileExportHelpers::FormatTextForExport($devis["nom_lieu"] ?? "").';'. FileExportHelpers::FormatTextForExport($devis["nom_client"] ?? "").';'.