Plugin Directory

Changeset 3338406


Ignore:
Timestamp:
08/03/2025 09:32:45 AM (8 months ago)
Author:
aipsg
Message:

tagging version 1.1.4

Location:
allinpayintl/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • allinpayintl/trunk/Allinpay_INTL.php

    r3336277 r3338406  
    55 * Author: aipsg
    66 * Author URI: http://rudrastyh.com
    7  * Version: 1.1.3
     7 * Version: 1.1.4
    88 */
    99
     
    473473                $this->allinpay_log('异步通知订单验签失败,订单号:'.$order_id);
    474474                $this->allinpay_log('验签的字符串为:'.$signStr);
    475                 $this->allinpay_log('收到异步通知的报文为'.print_r($notifyArray,1));
     475                $this->allinpay_log('收到异步通知的报文为'.print_r($params,1));
    476476                echo 'SUCCESS';
    477477                wp_die();
    478478            }
    479             $this->allinpay_log('收到异步通知的报文为'.print_r($notifyArray,1));
     479            $this->allinpay_log('收到异步通知的报文为'.print_r($params,1));
    480480            // 根据回调参数进行相应的处理逻辑
    481481            if ($notifyArray['resultCode'] === '0000') {
     
    484484                $order->payment_complete($transaction_id);
    485485                $custom_data = array(
    486                     'localCurrency' => $notifyArray['localCurrency'],
    487                     'localAmount' => $notifyArray['localAmount']
     486                    'localCurrency' => $params['localCurrency'],
     487                    'localAmount' => $params['localAmount']
    488488                );
    489489
     
    497497            } else {
    498498                $custom_data = array(
    499                     'resultCode' => $notifyArray['resultCode'],
    500                     'resultDesc' => $notifyArray['resultDesc']
     499                    'resultCode' => $params['resultCode'],
     500                    'resultDesc' => $params['resultDesc']
    501501                );
    502502
     
    504504                    $order->update_meta_data($key, $value);
    505505                }
    506                 $order->update_status( 'failed', $notifyArray['resultDesc'] );
     506                $order->update_status( 'failed', $params['resultDesc'] );
    507507                $order->save();
    508508                echo 'SUCCESS';
  • allinpayintl/trunk/readme.txt

    r3336276 r3338406  
    4343= 1.1.3 =
    4444Compatible with the latest version of the API.
     45= 1.1.4 =
     46fix some bugs.
    4547FAQ:
    4648
     
    6870= 1.1.0=
    6971Our WooCommerce plugin now supports even more payment options to enhance your customers' checkout experience. You can now accept payments through Apple Pay, Google Pay, PayNow, and popular wallets including WeChat Pay and Alipay. ApplePay and GooglePay saves your customers time to key in their payment details and enhances customer experience and retention.  Upgrade today to offer your customers a seamless and comprehensive payment experience.
     72= 1.1.4=
     73Made some optimizations
    7074= 1.0.3=
    7175Made some optimizations
Note: See TracChangeset for help on using the changeset viewer.