wanggangzero 9 mēneši atpakaļ
vecāks
revīzija
0c3434b17c

+ 1 - 0
Gameserver/App/service_call/pay/Mo/payRequest.php

@@ -276,6 +276,7 @@ class PayRequest extends loyalsoft\Object_ext {
     public function AntiAdditionCheck() {
         $uid = $this->accountId;
         $ageRange = $this->ageRange;
+        $ageRange = 18;
         $amt = $this->amount;
 
         if (isset($uid) && isset($ageRange)) {

+ 1 - 1
Gameserver/App/service_call/pay/official/charge_info.php

@@ -19,7 +19,7 @@ if (isset($args->uid) && isset($args->sign)) {
     if ($args->sign == $sign) {
         $arr = daoInst()
                 ->select(" cpOrderId , product_name , amount , from_unixtime(order_ts) as order_ts")
-                ->from("tpl_order_tab")
+                ->from("tab_order_tab")
                 ->where("uid")->eq($uid)
                 ->andWhere("status")->eq(1)
                 ->fetchAll();

+ 1 - 2
Gameserver/App/service_call/pay/official/pay_op.php

@@ -20,7 +20,7 @@ require_once __DIR__ . '/../../../main.php';
 
 class pay_op {
 
-    const orderTab = 'tpl_order_tab';                                           # 订单表表名
+    const orderTab = 'tab_order_tab';                                           # 订单表表名
 
     /**
      *  刷新充值订单(领取充值结果) , 客户端收到SDK成功支付返回的订单号后,请求游戏服务器发货,
@@ -104,7 +104,6 @@ class pay_op {
                         ->limit(10)->fetchAll();                                # 一次最多返10条
         return $orders;
     }
-
 }
 
 //