예제 #1
0
 public function actionHd201509t2()
 {
     $this->layout = false;
     $gh_id = U::getSessionParam('gh_id');
     $openid = U::getSessionParam('openid');
     $wx_user = \app\models\MUser::findOne(['gh_id' => $gh_id, 'openid' => $openid]);
     if (empty($wx_user) || $wx_user->subscribe === 0) {
         return $this->render('need_subscribe');
     }
     $bindMobiles = \app\models\OpenidBindMobile::findOne(['gh_id' => $gh_id, 'openid' => $openid]);
     if (empty($bindMobiles)) {
         $url = \yii\helpers\Url::to();
         \Yii::$app->getSession()->set('RETURN_URL', $url);
         return $this->redirect(['wap/addbindmobile', 'gh_id' => $gh_id, 'openid' => $openid]);
     }
     $hd201509t1 = \app\models\MHd201509t1::findOne(['mobile' => $bindMobiles->mobile]);
     if (empty($hd201509t1)) {
         //不在能充值的用户表中, 不符合充值条件,显示对不起页面
         return $this->render('hd201509t2_1');
     }
     $hd201509t2 = \app\models\MHd201509t2::findOne(['mobile' => $hd201509t1->mobile]);
     if (empty($hd201509t2)) {
         $hd201509t2 = new \app\models\MHd201509t2();
         $hd201509t2->gh_id = $gh_id;
         $hd201509t2->openid = $openid;
         $hd201509t2->mobile = $bindMobiles->mobile;
         $hd201509t2->status = 0;
         $hd201509t2->yfzx = $hd201509t1->yfzx;
         $hd201509t2->fsc = $hd201509t1->fsc;
         $hd201509t2->save(false);
     }
     return $this->render('hd201509t2', ['observer' => $wx_user, 'hd201509t2' => $hd201509t2]);
 }
예제 #2
0
 /**
  * Finds the MHd201509t2 model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return MHd201509t2 the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = MHd201509t2::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }