Bernd Wurst commited on 2026-07-23 20:51:43
Zeige 1 geänderte Dateien mit 1 Einfügungen und 1 Löschungen.
| ... | ... |
@@ -286,7 +286,7 @@ def InvoiceToXML(invoice): |
| 286 | 286 |
if invoice.creditor_reference_id: |
| 287 | 287 |
# Gläubiger-ID für SEPA |
| 288 | 288 |
doc.trade.settlement.creditor_reference_id = invoice.creditor_reference_id |
| 289 |
- doc.trade.settlement.payment_reference = invoice.id |
|
| 289 |
+ doc.trade.settlement.payment_reference = f"RE {invoice.id} vom {invoice.date.strftime('%d.%m.%Y')}"
|
|
| 290 | 290 |
doc.trade.settlement.currency_code = 'EUR' |
| 291 | 291 |
payment_means = PaymentMeans() |
| 292 | 292 |
if invoice.payment_type: |
| 293 | 293 |