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.
 
 
 
 
 
 

291 lines
9.8 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\Exception;
  5. /**
  6. * This is the model class for table "opera_tourist_detail".
  7. *
  8. * @property integer $id
  9. * @property integer $tourist_id
  10. * @property integer $create_user_id
  11. * @property string $create_time
  12. * @property integer $update_user_id
  13. * @property string $update_time
  14. * @property integer $cancel_flag
  15. * @property integer $res_type
  16. * @property integer $top_res_id
  17. * @property integer $sub_res_id
  18. * @property integer $sub_res_id1
  19. * @property string $select_res_ids
  20. * @property string $select_res_ids1
  21. * @property string $extra_res_info
  22. * @property string $crowd_type
  23. * @property integer $max_num
  24. * @property integer $day_from_start
  25. * @property integer $serial_id
  26. */
  27. class OperaTouristDetail extends \yii\db\ActiveRecord
  28. {
  29. /**
  30. * @inheritdoc
  31. */
  32. public static function tableName()
  33. {
  34. return 'opera_tourist_detail';
  35. }
  36. /**
  37. * @inheritdoc
  38. */
  39. public function rules()
  40. {
  41. return [
  42. [['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'],
  43. [['create_time', 'update_time'], 'required'],
  44. [['create_time', 'update_time'], 'safe'],
  45. [['select_res_ids', 'select_res_ids1'], 'string', 'max' => 255],
  46. [['extra_res_info'], 'string', 'max' => 50],
  47. [['crowd_type'], 'string', 'max' => 2],
  48. ];
  49. }
  50. /**
  51. * @inheritdoc
  52. */
  53. public function attributeLabels()
  54. {
  55. return [
  56. 'id' => 'ID',
  57. 'tourist_id' => '自由行产品ID',
  58. 'create_user_id' => '创建者ID',
  59. 'create_time' => '创建时间',
  60. 'update_user_id' => '更新者ID',
  61. 'update_time' => '更新时间',
  62. 'cancel_flag' => '删除标志',
  63. 'res_type' => '资源类型: 1巴士 2酒店 3门票',
  64. 'top_res_id' => '巴士:线路ID 酒店:基础房型ID 门票:门票父ID',
  65. 'sub_res_id' => '巴士:票种ID 酒店:子房型ID 门票:门票子ID',
  66. 'sub_res_id1' => '(儿童)巴士:票种ID 酒店:子房型ID 门票:门票子ID',
  67. 'select_res_ids' => '巴士:票种ID 酒店:子房型ID 门票:门票子ID(例:1_2_3)',
  68. 'select_res_ids1' => '(儿童)巴士:票种ID 酒店:子房型ID 门票:门票子ID(例:1_2_3)',
  69. 'extra_res_info' => '巴士:出发时刻 酒店:酒店ID 门票:空',
  70. 'crowd_type' => '人群种类: 10成人 01儿童 11成人+儿童',
  71. 'max_num' => '最大支撑人数',
  72. 'day_from_start' => '该资源日期和整体产品开始日的差',
  73. 'serial_id' => '该资源在当日同种资源内的序列',
  74. ];
  75. }
  76. /**
  77. * Function Description:单个添加自由行产品资源详情
  78. * Function Name: ist_res_detail
  79. * @param $tourist_id
  80. * @param $res_type
  81. * @param $top_res_id
  82. * @param $sub_res_id
  83. * @param $crowd_type
  84. * @param $day_from_start
  85. * @param $extra_res_info
  86. * @param $max_num
  87. * @param $sub_res_id1
  88. *
  89. * @return bool
  90. *
  91. * @author 娄梦宁
  92. */
  93. 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){
  94. $cookies = Yii::$app->request->cookies;
  95. $user_id = $cookies->getValue('user_id', -1);
  96. $values=[
  97. 'tourist_id'=>$tourist_id,
  98. 'create_user_id'=>$user_id,
  99. 'create_time'=>date('Y-m-d H:i:s'),
  100. 'update_user_id'=>$user_id,
  101. 'update_time'=>date('Y-m-d H:i:s'),
  102. 'cancel_flag'=>0,
  103. 'res_type'=>$res_type,
  104. 'top_res_id'=>$top_res_id,
  105. 'sub_res_id'=>$sub_res_id,
  106. 'sub_res_id1'=>$sub_res_id1,
  107. 'select_res_ids'=>$top_res_id,
  108. 'select_res_ids1'=>$top_res_id,
  109. 'extra_res_info'=>$extra_res_info,
  110. 'crowd_type'=>$crowd_type,
  111. 'max_num'=>$max_num,
  112. 'day_from_start'=>$day_from_start,
  113. 'serial_id'=>$serial_id,
  114. ];
  115. try{
  116. $clone=clone $this;
  117. $clone->attributes=$values;
  118. $clone->insert();
  119. return true;
  120. }catch (Exception $e){
  121. return false;
  122. }
  123. }
  124. /**
  125. * Function Description:根据tourist_id 获取子资源详情
  126. * Function Name: get_detail_by_tourist_id
  127. * @param $tourist_id
  128. *
  129. * @return array|\yii\db\ActiveRecord[]
  130. *
  131. * @author 娄梦宁
  132. */
  133. public function get_detail_by_tourist_id($tourist_id){
  134. $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 ')
  135. ->from(self::tableName())
  136. ->where(['and',['=','cancel_flag',0],['=','tourist_id',$tourist_id]])
  137. ->asArray()
  138. ->all();
  139. return $result;
  140. }
  141. /*
  142. * 删除(cancel_flag)自由行所有子资源
  143. */
  144. public function cancel_res($tourist_id){
  145. self::updateAll(['cancel_flag'=>1],['tourist_id'=>$tourist_id]);
  146. }
  147. /**
  148. * Function Description:自由行产品资源组合的修改
  149. * Function Name: upt_res_detail
  150. * @param $tourist_id
  151. * @param $res_type
  152. * @param $top_res_id
  153. * @param $sub_res_id
  154. * @param $crowd_type
  155. * @param $day_from_start
  156. * @param $extra_res_info
  157. * @param $max_num
  158. * @param $sub_res_id1
  159. * @param $serial_id
  160. *
  161. * @return bool
  162. *
  163. * @author 娄梦宁
  164. */
  165. 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){
  166. $cookies = Yii::$app->request->cookies;
  167. $user_id = $cookies->getValue('user_id', -1);
  168. $values=[
  169. 'tourist_id'=>$tourist_id,
  170. 'update_user_id'=>$user_id,
  171. 'update_time'=>date('Y-m-d H:i:s'),
  172. 'cancel_flag'=>0,
  173. 'res_type'=>$res_type,
  174. 'top_res_id'=>$top_res_id,
  175. 'sub_res_id'=>$sub_res_id,
  176. 'sub_res_id1'=>$sub_res_id1,
  177. 'select_res_ids'=>$top_res_id,
  178. 'select_res_ids1'=>$top_res_id,
  179. 'extra_res_info'=>$extra_res_info,
  180. 'crowd_type'=>$crowd_type,
  181. 'max_num'=>$max_num,
  182. 'day_from_start'=>$day_from_start,
  183. 'serial_id'=>$serial_id,
  184. ];
  185. $opera_tourist_detail=clone $this;
  186. $model=$opera_tourist_detail::findOne(['tourist_id'=>$tourist_id,'res_type'=>$res_type,'day_from_start'=>$day_from_start,'serial_id'=>$serial_id]);
  187. if($model){
  188. //有则修改
  189. try{
  190. $model->attributes=$values;
  191. $model->update();
  192. }catch (Exception $e){
  193. return false;
  194. }
  195. }else{
  196. //没有就新增
  197. try{
  198. $values['create_user_id']=$user_id;
  199. $values['create_time']=date('Y-m-d H:i:s');
  200. $opera_tourist_detail->attributes=$values;
  201. $opera_tourist_detail->insert();
  202. }catch (Exception $e){
  203. return false;
  204. }
  205. }
  206. return true;
  207. }
  208. /**
  209. * Function Description:数据复制
  210. * Function Name: detailClone
  211. * @param $tourist_id
  212. * @param $user_id
  213. * @param $time
  214. * @param $last_tourist_id
  215. *
  216. * @return bool
  217. * @throws Exception
  218. *
  219. * @author 冒炎
  220. */
  221. public function detailClone($tourist_id,$user_id,$time,$last_tourist_id){
  222. $info = self::find()
  223. ->select('id')
  224. ->from(self::tableName())
  225. ->where(['and',['=','tourist_id',$tourist_id],['=','cancel_flag',0]])
  226. ->asArray()
  227. ->one();
  228. if(!empty($info)){
  229. $sql = "INSERT INTO opera_tourist_detail (
  230. tourist_id,
  231. create_user_id,
  232. create_time,
  233. update_user_id,
  234. update_time,
  235. cancel_flag,
  236. res_type,
  237. top_res_id,
  238. sub_res_id,
  239. sub_res_id1,
  240. select_res_ids,
  241. select_res_ids1,
  242. extra_res_info,
  243. crowd_type,
  244. max_num,
  245. day_from_start,
  246. serial_id
  247. ) SELECT
  248. {$last_tourist_id},
  249. {$user_id},
  250. '{$time}',
  251. {$user_id},
  252. '{$time}',
  253. cancel_flag,
  254. res_type,
  255. top_res_id,
  256. sub_res_id,
  257. sub_res_id1,
  258. select_res_ids,
  259. select_res_ids1,
  260. extra_res_info,
  261. crowd_type,
  262. max_num,
  263. day_from_start,
  264. serial_id
  265. FROM
  266. opera_tourist_detail
  267. WHERE
  268. tourist_id = {$tourist_id}";
  269. $res = Yii::$app->db->createCommand($sql)->execute();
  270. if($res){
  271. return true;
  272. }else{
  273. return false;
  274. }
  275. }else{
  276. return true;
  277. }
  278. }
  279. }