Open xseman opened 3 months ago
PaymentOrder | StandingOrder | DirectDebit |
---|---|---|
❌ | ❌ |
PaymentOrder | StandingOrder | DirectDebit |
---|---|---|
PaymentOrder | StandingOrder | DirectDebit |
---|---|---|
@xseman - I tested the QR code from the preact demo too. It works with variable 123
. It doesn't work with variable hello
.
@LukasBicus you're correct, there's an issue with the TatraBanka application, it accepts strings, but when entered manually, it only allows numbers. I'll update the issue with a new QR code containing just numbers.
PaymentOrder | StandingOrder | DirectDebit |
---|---|---|
PaymentOrder | StandingOrder | DirectDebit |
---|---|---|
App crashes when trying to scan standing or direct order.
@xseman tested on VUB mobile app (old one). Standing Order and Direct Debit are not working (incorrect QR code message)
PaymentOrder | StandingOrder | DirectDebit |
---|---|---|
❌ | ❌ |
PaymentOrder | StandingOrder | DirectDebit |
---|---|---|
I need help testing QR codes created with this library on various Slovak banking apps. I want to ensure these codes work properly with different types of data.
Unfortunately, some banking apps might not correctly read QR codes. For example, Tatrabanka's app can't handle QR codes with multiple payment options. While I can help identify issues with the QR codes themselves, I can only test one banking app at a time right now, so I can't check every app out there.
Here is a list of banks that I want to verify for compatibility:
I just need confirmation that your bank app successfully scanned the QR code.
Data used to generate QRs:
PaymentOrder
```json { "invoiceId": "random-id", "payments": [ { "type": 1, "amount": 100, "bankAccounts": [ { "iban": "SK9611000000002918599669" } ], "currencyCode": "EUR", "variableSymbol": "123", "paymentNote": "hello world" } ] } ```StandingOrder
```json { "invoiceId": "random-id", "payments": [ { "type": 2, "amount": 100, "bankAccounts": [ { "iban": "SK9611000000002918599669" } ], "currencyCode": "EUR", "variableSymbol": "123", "paymentNote": "hello world", "day": 1, "periodicity": "m" } ] } ```DirectDebit
```json { "invoiceId": "random-id", "payments": [ { "type": 4, "amount": 100, "bankAccounts": [ { "iban": "SK9611000000002918599669" } ], "currencyCode": "EUR", "variableSymbol": "123", "paymentNote": "hello world" } ] } ```Report template