|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
- use yii\db\Expression;
-
- /**
- * This is the model class for table "opera_tourist_common".
- *
- * @property integer $tourist_id
- * @property string $tourist_code
- * @property integer $main_corp_id
- * @property integer $supplier_id
- * @property string $tourist_name
- * @property string $tourist_sub_head
- * @property integer $is_onsale
- * @property integer $cancel_flag
- * @property integer $create_user_id
- * @property string $create_time
- * @property integer $update_user_id
- * @property string $update_time
- * @property string $tourist_description
- * @property integer $min_people_num
- * @property integer $day_num
- * @property integer $night_num
- * @property string $tourist_type
- * @property integer $start_area_id
- * @property string $end_area_list
- * @property integer $pre_days
- * @property string $pre_time
- * @property string $list_image_url
- * @property string $top_image_url
- * @property string $message
- * @property string $refund_limit_day
- * @property string $refund_limit_time
- */
- class OperaTouristCommon extends \yii\db\ActiveRecord
- {
- // 取最下级初始地
- public $tp_start_area_id1;
- public $tp_end_area_list;
- public $files;
-
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_tourist_common';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['main_corp_id', 'supplier_id', 'is_onsale', 'cancel_flag', 'create_user_id', 'update_user_id', 'min_people_num', 'day_num', 'night_num', 'start_area_id', 'pre_days'], 'integer'],
- [['supplier_id', 'tourist_name', 'tourist_sub_head', 'list_image_url', 'refund_limit_time'], 'required'],
- [['create_time', 'update_time', 'top_image_url'], 'safe'],
- [['tourist_description','message'], 'string'],
- [['tourist_code'], 'string', 'max' => 30],
- [['tourist_name', 'tourist_sub_head'], 'string', 'max' => 200],
- [['tourist_type'], 'string', 'max' => 3],
- [['end_area_list', 'list_image_url', 'top_image_url', 'message'], 'string', 'max' => 255],
- [['pre_time'], 'string', 'max' => 5],
- [['refund_limit_day', 'refund_limit_time'], 'string', 'max' => 20],
- ];
- }
-
- // //检测省市是否都有
- // public function checkOrgID($attribute, $params)
- // {
- // if ($this->start_area_id !== '' && $this->tp_start_area_id1 !== '')
- // return true;
- // else
- // $this->addError($attribute, '请完整选择省市');
- // }
-
- public function load($post, $formName = null)
- {
- $this->supplier_id = isset($post['supplier_id']) ? $post['supplier_id'] : 0;
- $this->tourist_sub_head = isset($post['tourist_sub_head']) ? $post['tourist_sub_head'] : '0';
- $this->list_image_url = isset($post['list_image_url']) ? $post['list_image_url'] : '0';
- $this->top_image_url = isset($post['top_image_url']) ? $post['top_image_url'] : '0';
-
- return parent::load($post);
- }
-
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'tourist_id' => 'Tourist ID',
- 'tourist_code' => '内部编号',
- 'main_corp_id' => '运营主体',
- 'supplier_id' => '供应商ID',
- 'tourist_name' => '产品名称',
- 'tourist_sub_head' => '自由行产品副标题',
- 'is_onsale' => '上下架标志',
- 'cancel_flag' => '删除标志',
- 'create_user_id' => '创建者ID',
- 'create_time' => '创建时间',
- 'update_user_id' => '更新者ID',
- 'update_time' => '更新时间',
- 'tourist_description' => '自由行产品说明',
- 'min_people_num' => '该自由行产品基础人数',
- 'day_num' => '行程天数',
- 'night_num' => '行程晚数',
- 'tourist_type' => '自由行产品种类:[100]单车票[010]单酒店[001]单门票[110]车+酒[101]车+门[011]酒+门[111]车+酒+门',
- 'start_area_id' => '首发城市',
- 'end_area_list' => '目的地城市(1_2_3)',
- 'pre_days' => '提前停售天数',
- 'pre_time' => '提前停售时刻',
- 'list_image_url' => '列表中展示的图片(小)',
- 'top_image_url' => '封面图片',
- 'message' => '短信模板',
- 'refund_limit_day' => '退款截止天数,-1时表示没有退款截止时间',
- 'refund_limit_time' => '退款截止时间',
- ];
- }
-
- /*
- * 通过id获取天数和晚数
- */
- public function getDayNight($tourist_id)
- {
- $result = self::find()->select('day_num,night_num')
- ->from(self::tableName())
- ->where(['and', ['=', 'cancel_flag', 0], ['=', 'tourist_id', $tourist_id]])
- ->asArray()
- ->one();
- return $result;
- }
-
- public function getbase_area()
- {
- return $this->hasOne(BaseArea::className(), ['ID' => 'start_area_id']);
- }
-
- /*
- * 修改行程天晚数
- */
- public function upt_day_night($tourist_id, $tourist_day, $tourist_night)
- {
- self::updateAll(['day_num' => $tourist_day, 'night_num' => $tourist_night], ['and', ['=', 'cancel_flag', 0], ['=', 'tourist_id', $tourist_id]]);
- }
-
- public function getAllTouristInfo()
- {
- $url = CS1_DOMAIN;
- $tp_data = self::find()
- ->select([
- 'sign' => 'otc.tourist_id',
- 'name' => 'otc.tourist_name',
- 'prod_des' =>new Expression('" "'),
- 'feature' => 'ote.hint_point',
- 'trip_desc' => 'ifnull(otc.tourist_description,\'\')',
- 'memo' => 'ote.must_read',
- 'price_explain' => 'ote.price_explain',
- 'start_area'=>'start_area_id',
- 'end_area'=>'trim(TRAILING "," from end_area_list)',
- 'top_image_url'=>"if(top_image_url<>NULL,'',concat('http://','$url',top_image_url))",
- 'list_image_url'=>"if(list_image_url<>NULL,'',concat('http://','$url',list_image_url))",
- ])
- ->from('`opera_tourist_agent` as ota')
- ->leftJoin('`opera_tourist_common` as otc', 'otc.tourist_id = ota.tourist_id')
- ->leftJoin('`opera_tourist_extra` as ote', 'otc.tourist_id = ote.tourist_id')
- ->where(['and',
- ['=', 'ota.cancel_flag', 0],
- ['=', 'otc.cancel_flag', 0],
- ['=', 'ota.is_onsale', 1],
- ['=', 'otc.is_onsale', 1],
- // ['=', 'ota.to_org_id', $to_org_id],
- ])
- ->asArray()
- ->all();
- if (isset($tp_data)) {
- $data = ['code' => 0, 'info' => '获取数据成功','list'=>[]];
- $img_str_select = ['list_img_url' => new Expression("concat('http://','$url',image_url,image_name)")];
- foreach ($tp_data as $k => $v) {
- $v["feature"] = str_replace("\n", "<br />", $v["feature"]);
- $v["memo"] = str_replace("\n", "<br />", $v["memo"]);
- $data['list'][$v['sign']] = $v;
- $sub_ticket = [['prod_id' => 'TR-' . $v['sign'] . '-1', 'prod_name' => '成人票'], ['prod_id' => 'TR-' . $v['sign'] . '-2', 'prod_name' => '儿童票']];
- $data['list'][$v['sign']]['sub_ticket'] = $sub_ticket;
- $tmp_img_arr = OperaTouristImg::find()->select($img_str_select)
- ->from('opera_tourist_img')->where(['and', ['=', 'cancel_flag', 0], ['=', 'tourist_id', $v['sign']]])
- ->asArray()->all();
- $data['list'][$v['sign']]['list_img_url'] = array_column($tmp_img_arr, 'list_img_url');
- }
- } else {
- $data = ['code' => 1, 'info' => '获取数据失败'];
- }
-
-
- return $data;
- }
-
- /**
- * Function Description:获取显示用 天数和晚数 -1特殊处理
- * Function Name: getShowDayAndNight
- * @param $day_num
- * @param $night_num
- *
- * @return string
- *
- * @author LUOCJ
- */
- public static function getShowDayAndNight($day_num, $night_num)
- {
- if ($day_num != -1)
- $return_day_num = $day_num . '天';
- else
- $return_day_num = '';
- if ($night_num != -1)
- $return_night_num = $night_num . '晚';
- else
- $return_night_num = '';
- return $return_day_num == '' && $return_night_num == '' ? '- ' : $return_day_num . $return_night_num;
- }
-
- /**
- * Function Description:数据复制
- * Function Name: commonClone
- * @param $tourist_id
- * @param $user_id
- * @param $time
- *
- * @return bool|string
- * @throws \yii\db\Exception
- *
- * @author 冒炎
- */
- public function commonClone($tourist_id,$user_id,$time){
- $sql = "INSERT INTO opera_tourist_common (
- tourist_code,
- main_corp_id,
- supplier_id,
- tourist_name,
- tourist_sub_head,
- is_onsale,
- cancel_flag,
- create_user_id,
- create_time,
- update_user_id,
- update_time,
- tourist_description,
- min_people_num,
- day_num,
- night_num,
- tourist_type,
- start_area_id,
- end_area_list,
- pre_days,
- pre_time,
- list_image_url,
- top_image_url,
- message,
- refund_limit_day,
- refund_limit_time
-
- ) SELECT
- `tourist_code`,
- `main_corp_id`,
- `supplier_id`,
- `tourist_name`,
- `tourist_sub_head`,
- `is_onsale`,
- `cancel_flag`,
- {$user_id},
- '{$time}',
- {$user_id},
- '{$time}',
- `tourist_description`,
- `min_people_num`,
- `day_num`,
- `night_num`,
- `tourist_type`,
- `start_area_id`,
- `end_area_list`,
- `pre_days`,
- `pre_time`,
- `list_image_url`,
- `top_image_url`,
- `message`,
- `refund_limit_day`,
- `refund_limit_time`
- FROM
- opera_tourist_common
- WHERE
- tourist_id = {$tourist_id}";
- $res = Yii::$app->db->createCommand($sql)->execute();
- if($res){
- $last_tourist_id = Yii::$app->db->getLastInsertID();
- return $last_tourist_id;
- }else{
- return false;
- }
- }
- }
|