From 0e520119801eaa6ba4ae6d6aab0dc5713ac18720 Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 24 Mar 2026 08:31:36 +0100 Subject: [PATCH] fix: Change alignment of 'RECIBO DE PAGO' header to right in PDF receipt --- tienda/pdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tienda/pdf.py b/tienda/pdf.py index e830b5b..26cfed6 100644 --- a/tienda/pdf.py +++ b/tienda/pdf.py @@ -7,7 +7,7 @@ class Recibo(FPDF): def header(self): self.set_font('Arial', 'B', 15) self.cell(0, 10, "Comercialmeria S.L") - self.cell(0, 10, 'RECIBO DE PAGO', ln=True, align='C') + self.cell(0, 10, 'RECIBO DE PAGO', ln=True, align='R') self.ln(10) def footer(self):