wupengfei %!s(int64=3) %!d(string=hai) anos
pai
achega
c052d2021a
Modificáronse 1 ficheiros con 8 adicións e 2 borrados
  1. 8 2
      addons/shopro/model/UserBank.php

+ 8 - 2
addons/shopro/model/UserBank.php

@@ -83,7 +83,8 @@ class UserBank extends Model
         $user = User::info();
         $user = User::info();
         extract($params);
         extract($params);
         $bank = self::where(['user_id' => $user->id, 'type' => $type])->find();
         $bank = self::where(['user_id' => $user->id, 'type' => $type])->find();
-        if ($type == 'wechat') {
+
+       /* if ($type == 'wechat') {
             $platform = request()->header('platform');
             $platform = request()->header('platform');
             $userOauth = \addons\shopro\model\UserOauth::get([
             $userOauth = \addons\shopro\model\UserOauth::get([
                 'user_id' => $user->id,
                 'user_id' => $user->id,
@@ -94,13 +95,18 @@ class UserBank extends Model
                 $bank_name = '微信用户';
                 $bank_name = '微信用户';
                 $card_no  = $userOauth->openid;
                 $card_no  = $userOauth->openid;
             }
             }
-        }
+        }*/
+
         if ($bank) {
         if ($bank) {
             $bank->real_name = $real_name;
             $bank->real_name = $real_name;
             $bank->bank_name = $bank_name;
             $bank->bank_name = $bank_name;
             $bank->card_no = $card_no;
             $bank->card_no = $card_no;
             $bank->type = $type;
             $bank->type = $type;
             if(isset($skm)) $bank->skm = $skm;
             if(isset($skm)) $bank->skm = $skm;
+
+           // dump($type);die();
+
+            //Db::table('fa_shopro_user_bank')->insert(['real_name'=>$real_name,'bank_name'=>$bank_name,'card_no'=>$card_no,'type'=>$type,'skm'=>$skm]);
             $bank->save();
             $bank->save();
         } else {
         } else {
             $bank = new self();
             $bank = new self();