Details

    • Type: Bug
    • Status: In Review
    • Priority: Major
    • Resolution: Fixed
    • Affects Version/s: 5.11.0-b3
    • Fix Version/s: 5.11.0
    • Component/s: None
    • Labels:
      None

      Description

      To reproduce:

      1. Make sure stripe payments is installed (likely affects other gateways) and assign usd
      2. Create an invoice for usd
      3. In the admin interface click to pay
      4. Enter test details into the form
      5. Continue until you encounter the error "The payment type is not supported for this gateway"

      In app/views/admin/default/admin_tools_logservicechanges.php around line 46, change from

                                  if ($transaction->type == 'credit') {
      

      To

                                  if ($transaction->transaction_type == 'credit') {
      

      In app/models/transactions.php around line 248, change from

                  'transaction_types.name' => 'type_name', 'transaction_types.type' => 'type'
      

      To

                  'transaction_types.name' => 'type_name', 'transaction_types.type' => 'transaction_type'
      

        Activity

          People

          • Assignee:
            jonathan Jonathan Reissmueller
            Reporter:
            jonathan Jonathan Reissmueller
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved:

              Agile