wupengfei 3 yıl önce
ebeveyn
işleme
129ae6cce5

+ 3 - 1
addons/shopro/controller/User.php

@@ -34,7 +34,7 @@ class User extends Base
     public function index()
     {
         $auth = \app\common\library\Auth::instance();
-        $auth->setAllowFields(['id', 'username', 'nickname', 'mobile', 'avatar', 'score', 'birthday', 'money', 'group', 'group_id', 'verification', 'child_user_count', 'child_user_count_1', 'child_user_count_2', 'total_consume','register_code','level','province_name','city_name','counties_name','pid','quota_num']);
+        $auth->setAllowFields(['id', 'username', 'nickname', 'mobile', 'avatar', 'score', 'birthday', 'money', 'group', 'group_id', 'verification', 'child_user_count', 'child_user_count_1', 'child_user_count_2', 'total_consume','register_code','level','province_name','city_name','counties_name','pid','quota_num','skm']);
         $data = $auth->getUserinfo();
         $data['avatar'] = $data['avatar'] ? cdnurl($data['avatar'], true) : '';
         if (!isset($data['group'])) {
@@ -748,6 +748,7 @@ class User extends Base
         $bio = $this->request->post('bio', '');
         $birthday = $this->request->post('birthday');
         $address = $this->request->post('address');
+        $skm = $this->request->post('skm','');
         $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
         if ($username) {
             $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
@@ -762,6 +763,7 @@ class User extends Base
         if (!empty($avatar)) {
             $user->avatar = $avatar;
         }
+        if($skm) $user->skm = $skm;
         // 地址信息
         if($address) {
             $add_arr = explode('-',$address);

+ 2 - 1
addons/shopro/model/UserWalletApply.php

@@ -129,8 +129,9 @@ class UserWalletApply extends Model
         if (!isset($applyInfo)) {
             throw \Exception('您的提现信息有误');
         }
+        if($type == 'wechat' && $user->skm =='') throw \Exception('请上传收款码!');
         $apply->apply_info = $applyInfo;
-
+        $apply->wechat_code = $user->skm ;
         $apply->status = 0;
         $apply->save();
         self::handleLog($apply, '用户发起提现申请');