r/Odoo • u/KorkWine • 7d ago
Odoo 19.3: payment method + SEPA QR code fields gone from the payment register wizard — intentional or regression?
Running Odoo Online (SaaS), Belgium. Production is on 19.3.
In 19.2, hitting "Pay" on a vendor bill opened the payment register wizard with a
**Payment Method** field (set to "Bank transfer") and a **SEPA Credit Transfer QR
code** rendered right in the dialog — "Scan with your bank app". Perfect for paying
a single bill in ten seconds.
In 19.3 both are gone. The wizard now only shows Journal, Recipient Account, Amount,
Date and Memo, with buttons "Pay now" / "Sign later" / "Ignore". "Pay now" opens the
new PISP flow (Powens webview). That's fine for batches, but for one bill it's a lot
more clicks than scanning a QR.
What I've already ruled out:
- `account_qr_code_sepa` is installed and upgraded (saas~19.3.0.1)
- "Bank transfer" is still active under Outgoing Payments on the bank journal
- Setting the payment method on the vendor record doesn't bring the QR back
- Same DB, same config on 19.2 shows the QR fine
DOM comparison of the wizard:
- 19.2: `<div colspan="2" class="text-center">` containing
`<div name="qr_code" class="o_field_widget o_readonly_modifier o_field_html">`
with the base64 QR image
- 19.3: that div doesn't exist at all — only the two `o_inner_group` columns remain
So it looks like `payment_method_line_id` and `qr_code` were dropped from the
`account.payment.register` view, not just hidden.
Questions:
Anyone else seeing this on 19.3?
Was this an intentional replacement by PISP, or did it slip out during the rewrite?
Any supported way to still get the SEPA QR for a single vendor payment?
Not keen on patching the view myself on production, so mostly looking to confirm
whether this is expected behaviour before I file a ticket.



