Details
Description
It appears that if an error is returned when processing payment with Stripe Payments, the reference_id in transactions is wiped out.
Customer Provided Report:
When a payment has an error, the reference_id is getting wiped from db
and UI.
I looked around with code and api response and the issue is in
components/gateways/merchant/stripe_payments/stripe_payments.php
Inside of captureStoredCc function. You are doing this
'reference_id' => ($captured_payment_intent->id ?? null)
when on error it should be
$captured_payment_intent->error->payment_intent->id
Its probably a bit of an edge case for handling errors.
To keep things simple, I just added this
if (empty($response['reference_id']))
inside of components/gateway_payments/gateway_payments.php
capturePayment() right before transactions->edit.