payment method ids are case insensitive

This commit is contained in:
woodser 2023-08-29 06:46:19 -04:00
parent 6e768acd1b
commit c46d210822

View File

@ -106,7 +106,7 @@ class CorePaymentAccountsService {
}
PaymentAccountForm getPaymentAccountForm(String paymentMethodId) {
return PaymentAccountForm.getForm(paymentMethodId);
return PaymentAccountForm.getForm(paymentMethodId.toUpperCase());
}
PaymentAccountForm getPaymentAccountForm(PaymentAccount paymentAccount) {