Test2 HTML
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 3m35s

This commit is contained in:
Leandro Hernan Rojas 2025-05-16 11:34:35 -03:00
parent a10b71ca3a
commit 6eaffd6da5

View File

@ -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);
}