|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
- use yii\db\Exception;
-
- /**
- * This is the model class for table "opera_tourist_detail".
- *
- * @property integer $id
- * @property integer $tourist_id
- * @property integer $create_user_id
- * @property string $create_time
- * @property integer $update_user_id
- * @property string $update_time
- * @property integer $cancel_flag
- * @property integer $res_type
- * @property integer $top_res_id
- * @property integer $sub_res_id
- * @property integer $sub_res_id1
- * @property string $select_res_ids
- * @property string $select_res_ids1
- * @property string $extra_res_info
- * @property string $crowd_type
- * @property integer $max_num
- * @property integer $day_from_start
- * @property integer $serial_id
- */
- class OperaTouristDetail extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_tourist_detail';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['tourist_id', 'create_user_id', 'update_user_id', 'cancel_flag', 'res_type', 'top_res_id', 'sub_res_id', 'sub_res_id1', 'max_num', 'day_from_start', 'serial_id'], 'integer'],
- [['create_time', 'update_time'], 'required'],
- [['create_time', 'update_time'], 'safe'],
- [['select_res_ids', 'select_res_ids1'], 'string', 'max' => 255],
- [['extra_res_info'], 'string', 'max' => 50],
- [['crowd_type'], 'string', 'max' => 2],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'tourist_id' => '自由行产品ID',
- 'create_user_id' => '创建者ID',
- 'create_time' => '创建时间',
- 'update_user_id' => '更新者ID',
- 'update_time' => '更新时间',
- 'cancel_flag' => '删除标志',
- 'res_type' => '资源类型: 1巴士 2酒店 3门票',
- 'top_res_id' => '巴士:线路ID 酒店:基础房型ID 门票:门票父ID',
- 'sub_res_id' => '巴士:票种ID 酒店:子房型ID 门票:门票子ID',
- 'sub_res_id1' => '(儿童)巴士:票种ID 酒店:子房型ID 门票:门票子ID',
- 'select_res_ids' => '巴士:票种ID 酒店:子房型ID 门票:门票子ID(例:1_2_3)',
- 'select_res_ids1' => '(儿童)巴士:票种ID 酒店:子房型ID 门票:门票子ID(例:1_2_3)',
- 'extra_res_info' => '巴士:出发时刻 酒店:酒店ID 门票:空',
- 'crowd_type' => '人群种类: 10成人 01儿童 11成人+儿童',
- 'max_num' => '最大支撑人数',
- 'day_from_start' => '该资源日期和整体产品开始日的差',
- 'serial_id' => '该资源在当日同种资源内的序列',
- ];
- }
-
- /**
- * Function Description:单个添加自由行产品资源详情
- * Function Name: ist_res_detail
- * @param $tourist_id
- * @param $res_type
- * @param $top_res_id
- * @param $sub_res_id
- * @param $crowd_type
- * @param $day_from_start
- * @param $extra_res_info
- * @param $max_num
- * @param $sub_res_id1
- *
- * @return bool
- *
- * @author 娄梦宁
- */
- public function ist_res_detail($tourist_id,$res_type,$top_res_id,$sub_res_id,$crowd_type,$day_from_start,$extra_res_info,$max_num,$sub_res_id1,$serial_id){
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id', -1);
- $values=[
- 'tourist_id'=>$tourist_id,
- 'create_user_id'=>$user_id,
- 'create_time'=>date('Y-m-d H:i:s'),
- 'update_user_id'=>$user_id,
- 'update_time'=>date('Y-m-d H:i:s'),
- 'cancel_flag'=>0,
- 'res_type'=>$res_type,
- 'top_res_id'=>$top_res_id,
- 'sub_res_id'=>$sub_res_id,
- 'sub_res_id1'=>$sub_res_id1,
- 'select_res_ids'=>$top_res_id,
- 'select_res_ids1'=>$top_res_id,
- 'extra_res_info'=>$extra_res_info,
- 'crowd_type'=>$crowd_type,
- 'max_num'=>$max_num,
- 'day_from_start'=>$day_from_start,
- 'serial_id'=>$serial_id,
- ];
- try{
- $clone=clone $this;
- $clone->attributes=$values;
- $clone->insert();
- return true;
- }catch (Exception $e){
- return false;
- }
- }
-
- /**
- * Function Description:根据tourist_id 获取子资源详情
- * Function Name: get_detail_by_tourist_id
- * @param $tourist_id
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 娄梦宁
- */
- public function get_detail_by_tourist_id($tourist_id){
- $result=self::find()->select('res_type,top_res_id,sub_res_id,sub_res_id1,extra_res_info,crowd_type,max_num,(day_from_start+1) as day_from_start ')
- ->from(self::tableName())
- ->where(['and',['=','cancel_flag',0],['=','tourist_id',$tourist_id]])
- ->asArray()
- ->all();
- return $result;
- }
- /*
- * 删除(cancel_flag)自由行所有子资源
- */
- public function cancel_res($tourist_id){
- self::updateAll(['cancel_flag'=>1],['tourist_id'=>$tourist_id]);
- }
-
- /**
- * Function Description:自由行产品资源组合的修改
- * Function Name: upt_res_detail
- * @param $tourist_id
- * @param $res_type
- * @param $top_res_id
- * @param $sub_res_id
- * @param $crowd_type
- * @param $day_from_start
- * @param $extra_res_info
- * @param $max_num
- * @param $sub_res_id1
- * @param $serial_id
- *
- * @return bool
- *
- * @author 娄梦宁
- */
- public function upt_res_detail($tourist_id,$res_type,$top_res_id,$sub_res_id,$crowd_type,$day_from_start,$extra_res_info,$max_num,$sub_res_id1,$serial_id){
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id', -1);
- $values=[
- 'tourist_id'=>$tourist_id,
- 'update_user_id'=>$user_id,
- 'update_time'=>date('Y-m-d H:i:s'),
- 'cancel_flag'=>0,
- 'res_type'=>$res_type,
- 'top_res_id'=>$top_res_id,
- 'sub_res_id'=>$sub_res_id,
- 'sub_res_id1'=>$sub_res_id1,
- 'select_res_ids'=>$top_res_id,
- 'select_res_ids1'=>$top_res_id,
- 'extra_res_info'=>$extra_res_info,
- 'crowd_type'=>$crowd_type,
- 'max_num'=>$max_num,
- 'day_from_start'=>$day_from_start,
- 'serial_id'=>$serial_id,
- ];
- $opera_tourist_detail=clone $this;
- $model=$opera_tourist_detail::findOne(['tourist_id'=>$tourist_id,'res_type'=>$res_type,'day_from_start'=>$day_from_start,'serial_id'=>$serial_id]);
- if($model){
- //有则修改
- try{
- $model->attributes=$values;
- $model->update();
- }catch (Exception $e){
- return false;
- }
- }else{
- //没有就新增
- try{
- $values['create_user_id']=$user_id;
- $values['create_time']=date('Y-m-d H:i:s');
- $opera_tourist_detail->attributes=$values;
- $opera_tourist_detail->insert();
- }catch (Exception $e){
- return false;
- }
- }
- return true;
- }
-
-
- /**
- * Function Description:数据复制
- * Function Name: detailClone
- * @param $tourist_id
- * @param $user_id
- * @param $time
- * @param $last_tourist_id
- *
- * @return bool
- * @throws Exception
- *
- * @author 冒炎
- */
- public function detailClone($tourist_id,$user_id,$time,$last_tourist_id){
- $info = self::find()
- ->select('id')
- ->from(self::tableName())
- ->where(['and',['=','tourist_id',$tourist_id],['=','cancel_flag',0]])
- ->asArray()
- ->one();
- if(!empty($info)){
- $sql = "INSERT INTO opera_tourist_detail (
- tourist_id,
- create_user_id,
- create_time,
- update_user_id,
- update_time,
- cancel_flag,
- res_type,
- top_res_id,
- sub_res_id,
- sub_res_id1,
- select_res_ids,
- select_res_ids1,
- extra_res_info,
- crowd_type,
- max_num,
- day_from_start,
- serial_id
- ) SELECT
- {$last_tourist_id},
- {$user_id},
- '{$time}',
- {$user_id},
- '{$time}',
- cancel_flag,
- res_type,
- top_res_id,
- sub_res_id,
- sub_res_id1,
- select_res_ids,
- select_res_ids1,
- extra_res_info,
- crowd_type,
- max_num,
- day_from_start,
- serial_id
- FROM
- opera_tourist_detail
- WHERE
- tourist_id = {$tourist_id}";
- $res = Yii::$app->db->createCommand($sql)->execute();
- if($res){
- return true;
- }else{
- return false;
- }
- }else{
- return true;
- }
-
- }
- }
|