diff --git a/app.py b/app.py index a4a050a..4691754 100644 --- a/app.py +++ b/app.py @@ -322,6 +322,15 @@ def invoice_pdf(): if email: pdf.set_x(right_x) pdf.cell(col_w, 3.5, email, ln=True, align='R') + if paypal: + pdf.set_x(right_x) + pdf.cell(col_w, 3.5, f"PayPal: {paypal}", ln=True, align='R') + if iban: + pdf.set_x(right_x) + pdf.cell(col_w, 3.5, iban, ln=True, align='R') + if bank_name: + pdf.set_x(right_x) + pdf.cell(col_w, 3.5, bank_name, ln=True, align='R') right_bottom = pdf.get_y() # --- Rechnungsdaten & Empfaenger (links, unterhalb der rechten Spalte) ---