From e21e2afea46cb5a707f41dbbb52c72e6f602c5fb Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Thu, 4 Dec 2025 17:11:34 +0100 Subject: [PATCH] fix error --- PyroFetes/Services/Pdf/QuotationPdfService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyroFetes/Services/Pdf/QuotationPdfService.cs b/PyroFetes/Services/Pdf/QuotationPdfService.cs index 7adcac2..c5709e1 100644 --- a/PyroFetes/Services/Pdf/QuotationPdfService.cs +++ b/PyroFetes/Services/Pdf/QuotationPdfService.cs @@ -140,7 +140,7 @@ public class QuotationPdfService : IQuotationPdfService }); // Pour avoir la vue du PDF en temps réel - document.ShowInCompanion(); + // document.ShowInCompanion(); return document.GeneratePdf(); }