Uploaded image for project: 'Blesta Core'
  1. Blesta Core
  2. CORE-5368

Stripe Payments: reference_id disappears if there is a payment error

    Details

    • Type: Bug
    • Status: Closed
    • Priority: Major
    • Resolution: Fixed
    • Affects Version/s: 5.11.0
    • Fix Version/s: 5.11.2
    • Component/s: Gateways
    • Labels:
      None

      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']))

      { $trans_data['reference_id'] = $transaction->reference_id; }

      inside of components/gateway_payments/gateway_payments.php
      capturePayment() right before transactions->edit.

        Activity

        There are no comments yet on this issue.

          People

          • Assignee:
            abdy Abdy Franco
            Reporter:
            admin Paul Phillips
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved:
              Fix Release Date:
              19/Mar/25

              Time Tracking

              Estimated:
              Original Estimate - Not Specified
              Not Specified
              Remaining:
              Remaining Estimate - 0 minutes
              0m
              Logged:
              Time Spent - 47 minutes
              47m

                Agile