fix(invoices): add bank transfer to the mark-paid method list

The mark-paid dialog offered Cash / Card / PayPal / TWINT but not bank
transfer — the default method for the QR-bill / IBAN invoices picpeak issues
(createInvoice even falls back to 'bank_transfer'). Added it as the first
option. Backend already accepts paymentMethod as a free string, so no API
change; i18n bills.payment.methods.bankTransfer (de "Überweisung").
This commit is contained in:
Luca
2026-06-29 19:39:40 +02:00
parent ca0944293f
commit e96ef4c5a3
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -4801,6 +4801,7 @@
"notes": "Notizen",
"methodPlaceholder": "Methode wählen…",
"methods": {
"bankTransfer": "Überweisung",
"card": "Karte",
"cash": "Bar",
"paypal": "PayPal",
+1
View File
@@ -4789,6 +4789,7 @@
"notes": "Notes",
"methodPlaceholder": "Select method…",
"methods": {
"bankTransfer": "Bank transfer",
"card": "Card",
"cash": "Cash",
"paypal": "PayPal",