You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

306 lines
11 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\Expression;
  5. /**
  6. * This is the model class for table "opera_tourist_common".
  7. *
  8. * @property integer $tourist_id
  9. * @property string $tourist_code
  10. * @property integer $main_corp_id
  11. * @property integer $supplier_id
  12. * @property string $tourist_name
  13. * @property string $tourist_sub_head
  14. * @property integer $is_onsale
  15. * @property integer $cancel_flag
  16. * @property integer $create_user_id
  17. * @property string $create_time
  18. * @property integer $update_user_id
  19. * @property string $update_time
  20. * @property string $tourist_description
  21. * @property integer $min_people_num
  22. * @property integer $day_num
  23. * @property integer $night_num
  24. * @property string $tourist_type
  25. * @property integer $start_area_id
  26. * @property string $end_area_list
  27. * @property integer $pre_days
  28. * @property string $pre_time
  29. * @property string $list_image_url
  30. * @property string $top_image_url
  31. * @property string $message
  32. * @property string $refund_limit_day
  33. * @property string $refund_limit_time
  34. */
  35. class OperaTouristCommon extends \yii\db\ActiveRecord
  36. {
  37. // 取最下级初始地
  38. public $tp_start_area_id1;
  39. public $tp_end_area_list;
  40. public $files;
  41. /**
  42. * @inheritdoc
  43. */
  44. public static function tableName()
  45. {
  46. return 'opera_tourist_common';
  47. }
  48. /**
  49. * @inheritdoc
  50. */
  51. public function rules()
  52. {
  53. return [
  54. [['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'],
  55. [['supplier_id', 'tourist_name', 'tourist_sub_head', 'list_image_url', 'refund_limit_time'], 'required'],
  56. [['create_time', 'update_time', 'top_image_url'], 'safe'],
  57. [['tourist_description','message'], 'string'],
  58. [['tourist_code'], 'string', 'max' => 30],
  59. [['tourist_name', 'tourist_sub_head'], 'string', 'max' => 200],
  60. [['tourist_type'], 'string', 'max' => 3],
  61. [['end_area_list', 'list_image_url', 'top_image_url', 'message'], 'string', 'max' => 255],
  62. [['pre_time'], 'string', 'max' => 5],
  63. [['refund_limit_day', 'refund_limit_time'], 'string', 'max' => 20],
  64. ];
  65. }
  66. // //检测省市是否都有
  67. // public function checkOrgID($attribute, $params)
  68. // {
  69. // if ($this->start_area_id !== '' && $this->tp_start_area_id1 !== '')
  70. // return true;
  71. // else
  72. // $this->addError($attribute, '请完整选择省市');
  73. // }
  74. public function load($post, $formName = null)
  75. {
  76. $this->supplier_id = isset($post['supplier_id']) ? $post['supplier_id'] : 0;
  77. $this->tourist_sub_head = isset($post['tourist_sub_head']) ? $post['tourist_sub_head'] : '0';
  78. $this->list_image_url = isset($post['list_image_url']) ? $post['list_image_url'] : '0';
  79. $this->top_image_url = isset($post['top_image_url']) ? $post['top_image_url'] : '0';
  80. return parent::load($post);
  81. }
  82. /**
  83. * @inheritdoc
  84. */
  85. public function attributeLabels()
  86. {
  87. return [
  88. 'tourist_id' => 'Tourist ID',
  89. 'tourist_code' => '内部编号',
  90. 'main_corp_id' => '运营主体',
  91. 'supplier_id' => '供应商ID',
  92. 'tourist_name' => '产品名称',
  93. 'tourist_sub_head' => '自由行产品副标题',
  94. 'is_onsale' => '上下架标志',
  95. 'cancel_flag' => '删除标志',
  96. 'create_user_id' => '创建者ID',
  97. 'create_time' => '创建时间',
  98. 'update_user_id' => '更新者ID',
  99. 'update_time' => '更新时间',
  100. 'tourist_description' => '自由行产品说明',
  101. 'min_people_num' => '该自由行产品基础人数',
  102. 'day_num' => '行程天数',
  103. 'night_num' => '行程晚数',
  104. 'tourist_type' => '自由行产品种类:[100]单车票[010]单酒店[001]单门票[110]车+酒[101]车+门[011]酒+门[111]车+酒+门',
  105. 'start_area_id' => '首发城市',
  106. 'end_area_list' => '目的地城市(1_2_3)',
  107. 'pre_days' => '提前停售天数',
  108. 'pre_time' => '提前停售时刻',
  109. 'list_image_url' => '列表中展示的图片(小)',
  110. 'top_image_url' => '封面图片',
  111. 'message' => '短信模板',
  112. 'refund_limit_day' => '退款截止天数,-1时表示没有退款截止时间',
  113. 'refund_limit_time' => '退款截止时间',
  114. ];
  115. }
  116. /*
  117. * 通过id获取天数和晚数
  118. */
  119. public function getDayNight($tourist_id)
  120. {
  121. $result = self::find()->select('day_num,night_num')
  122. ->from(self::tableName())
  123. ->where(['and', ['=', 'cancel_flag', 0], ['=', 'tourist_id', $tourist_id]])
  124. ->asArray()
  125. ->one();
  126. return $result;
  127. }
  128. public function getbase_area()
  129. {
  130. return $this->hasOne(BaseArea::className(), ['ID' => 'start_area_id']);
  131. }
  132. /*
  133. * 修改行程天晚数
  134. */
  135. public function upt_day_night($tourist_id, $tourist_day, $tourist_night)
  136. {
  137. self::updateAll(['day_num' => $tourist_day, 'night_num' => $tourist_night], ['and', ['=', 'cancel_flag', 0], ['=', 'tourist_id', $tourist_id]]);
  138. }
  139. public function getAllTouristInfo()
  140. {
  141. $url = CS1_DOMAIN;
  142. $tp_data = self::find()
  143. ->select([
  144. 'sign' => 'otc.tourist_id',
  145. 'name' => 'otc.tourist_name',
  146. 'prod_des' =>new Expression('" "'),
  147. 'feature' => 'ote.hint_point',
  148. 'trip_desc' => 'ifnull(otc.tourist_description,\'\')',
  149. 'memo' => 'ote.must_read',
  150. 'price_explain' => 'ote.price_explain',
  151. 'start_area'=>'start_area_id',
  152. 'end_area'=>'trim(TRAILING "," from end_area_list)',
  153. 'top_image_url'=>"if(top_image_url<>NULL,'',concat('http://','$url',top_image_url))",
  154. 'list_image_url'=>"if(list_image_url<>NULL,'',concat('http://','$url',list_image_url))",
  155. ])
  156. ->from('`opera_tourist_agent` as ota')
  157. ->leftJoin('`opera_tourist_common` as otc', 'otc.tourist_id = ota.tourist_id')
  158. ->leftJoin('`opera_tourist_extra` as ote', 'otc.tourist_id = ote.tourist_id')
  159. ->where(['and',
  160. ['=', 'ota.cancel_flag', 0],
  161. ['=', 'otc.cancel_flag', 0],
  162. ['=', 'ota.is_onsale', 1],
  163. ['=', 'otc.is_onsale', 1],
  164. // ['=', 'ota.to_org_id', $to_org_id],
  165. ])
  166. ->asArray()
  167. ->all();
  168. if (isset($tp_data)) {
  169. $data = ['code' => 0, 'info' => '获取数据成功','list'=>[]];
  170. $img_str_select = ['list_img_url' => new Expression("concat('http://','$url',image_url,image_name)")];
  171. foreach ($tp_data as $k => $v) {
  172. $v["feature"] = str_replace("\n", "<br />", $v["feature"]);
  173. $v["memo"] = str_replace("\n", "<br />", $v["memo"]);
  174. $data['list'][$v['sign']] = $v;
  175. $sub_ticket = [['prod_id' => 'TR-' . $v['sign'] . '-1', 'prod_name' => '成人票'], ['prod_id' => 'TR-' . $v['sign'] . '-2', 'prod_name' => '儿童票']];
  176. $data['list'][$v['sign']]['sub_ticket'] = $sub_ticket;
  177. $tmp_img_arr = OperaTouristImg::find()->select($img_str_select)
  178. ->from('opera_tourist_img')->where(['and', ['=', 'cancel_flag', 0], ['=', 'tourist_id', $v['sign']]])
  179. ->asArray()->all();
  180. $data['list'][$v['sign']]['list_img_url'] = array_column($tmp_img_arr, 'list_img_url');
  181. }
  182. } else {
  183. $data = ['code' => 1, 'info' => '获取数据失败'];
  184. }
  185. return $data;
  186. }
  187. /**
  188. * Function Description:获取显示用 天数和晚数 -1特殊处理
  189. * Function Name: getShowDayAndNight
  190. * @param $day_num
  191. * @param $night_num
  192. *
  193. * @return string
  194. *
  195. * @author LUOCJ
  196. */
  197. public static function getShowDayAndNight($day_num, $night_num)
  198. {
  199. if ($day_num != -1)
  200. $return_day_num = $day_num . '天';
  201. else
  202. $return_day_num = '';
  203. if ($night_num != -1)
  204. $return_night_num = $night_num . '晚';
  205. else
  206. $return_night_num = '';
  207. return $return_day_num == '' && $return_night_num == '' ? '- ' : $return_day_num . $return_night_num;
  208. }
  209. /**
  210. * Function Description:数据复制
  211. * Function Name: commonClone
  212. * @param $tourist_id
  213. * @param $user_id
  214. * @param $time
  215. *
  216. * @return bool|string
  217. * @throws \yii\db\Exception
  218. *
  219. * @author 冒炎
  220. */
  221. public function commonClone($tourist_id,$user_id,$time){
  222. $sql = "INSERT INTO opera_tourist_common (
  223. tourist_code,
  224. main_corp_id,
  225. supplier_id,
  226. tourist_name,
  227. tourist_sub_head,
  228. is_onsale,
  229. cancel_flag,
  230. create_user_id,
  231. create_time,
  232. update_user_id,
  233. update_time,
  234. tourist_description,
  235. min_people_num,
  236. day_num,
  237. night_num,
  238. tourist_type,
  239. start_area_id,
  240. end_area_list,
  241. pre_days,
  242. pre_time,
  243. list_image_url,
  244. top_image_url,
  245. message,
  246. refund_limit_day,
  247. refund_limit_time
  248. ) SELECT
  249. `tourist_code`,
  250. `main_corp_id`,
  251. `supplier_id`,
  252. `tourist_name`,
  253. `tourist_sub_head`,
  254. `is_onsale`,
  255. `cancel_flag`,
  256. {$user_id},
  257. '{$time}',
  258. {$user_id},
  259. '{$time}',
  260. `tourist_description`,
  261. `min_people_num`,
  262. `day_num`,
  263. `night_num`,
  264. `tourist_type`,
  265. `start_area_id`,
  266. `end_area_list`,
  267. `pre_days`,
  268. `pre_time`,
  269. `list_image_url`,
  270. `top_image_url`,
  271. `message`,
  272. `refund_limit_day`,
  273. `refund_limit_time`
  274. FROM
  275. opera_tourist_common
  276. WHERE
  277. tourist_id = {$tourist_id}";
  278. $res = Yii::$app->db->createCommand($sql)->execute();
  279. if($res){
  280. $last_tourist_id = Yii::$app->db->getLastInsertID();
  281. return $last_tourist_id;
  282. }else{
  283. return false;
  284. }
  285. }
  286. }