From 6eaffd6da577b872a5a55ef8689ff98c8beb9732 Mon Sep 17 00:00:00 2001 From: Leandro Hernan Rojas Date: Fri, 16 May 2025 11:34:35 -0300 Subject: [PATCH] Test2 HTML --- Documents/Services/DocumentTemplateService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documents/Services/DocumentTemplateService.cs b/Documents/Services/DocumentTemplateService.cs index 1773ff3..6c67b63 100644 --- a/Documents/Services/DocumentTemplateService.cs +++ b/Documents/Services/DocumentTemplateService.cs @@ -25,7 +25,7 @@ namespace Documents.Services string html = await _templateRenderer.RenderAsync("Quotes/Template_v1.cshtml", request.Model); // 🔍 Dump HTML a archivo temporal para inspección - File.WriteAllText("/app/html_debug_output.html", html, Encoding.UTF8); + File.WriteAllText("/tmp/html_debug_output.html", html, Encoding.UTF8); // 👉 Generar PDF desde el HTML return await _pdfGeneratorService.GeneratePdfFromHtmlAsync(html); }