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.
 
 
 
 
 
 

627 line
25 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 001
  5. * Date: 2017/11/6
  6. * Time: 16:13
  7. */
  8. namespace backend\modules\zzcs\logic;
  9. use backend\modules\zzcs\models\BaseResource;
  10. use backend\modules\zzcs\models\BaseSupplierPurchase;
  11. use backend\modules\zzcs\models\BaseUser;
  12. use backend\modules\zzcs\models\OperaLine;
  13. use backend\modules\zzcs\models\OperaStation;
  14. use backend\modules\zzcs\models\OperaTickets;
  15. use backend\modules\zzcs\models\OperaTicketsGroup;
  16. use backend\modules\zzcs\util\Util;
  17. use common\models\Utils;
  18. class LineManage
  19. {
  20. /**
  21. * Function Description:线路列表
  22. * Function Name: getLineList
  23. * @param $line_code
  24. * @param $line_status
  25. * @param $line_type
  26. * @param $tailor_type
  27. * @param $current_page
  28. * @param $page_size
  29. *
  30. * @return array
  31. *
  32. * @author 冒炎
  33. */
  34. public function getLineList($line_code,$line_status,$use_status,$line_type,$tailor_type,$run_duty_id,$current_page,$page_size){
  35. $model = new OperaLine();
  36. $line_list = $model->getLineList($line_code,$line_status,$use_status,$line_type,$tailor_type,$run_duty_id,$current_page,$page_size);
  37. return $line_list;
  38. }
  39. /**
  40. * Function Description:线路启用/停用
  41. * Function Name: LineUpt
  42. * @param $opt_code
  43. * @param $line_id_str
  44. *
  45. * @return array
  46. *
  47. * @author 冒炎
  48. */
  49. public function LineUpt($opt_code,$line_id_str){
  50. if(($opt_code!=1&&$opt_code!=2)||$line_id_str == -1){
  51. return [
  52. 'code'=>1,
  53. 'msg'=>'参数有误'
  54. ];
  55. }
  56. if($opt_code ==1){
  57. $ex_msg = '启用';
  58. }else{
  59. $ex_msg = '停用';
  60. }
  61. $model = new OperaLine();
  62. $upt_res = $model->LineUpt($opt_code,$line_id_str);
  63. if($upt_res ==1){
  64. return [
  65. 'code'=>0,
  66. 'msg'=>$ex_msg . '成功'
  67. ];
  68. }else if($upt_res ==-1){
  69. return [
  70. 'code'=>3,
  71. 'msg'=>'线路下有未完成的班次,操作失败'
  72. ];
  73. }else{
  74. return [
  75. 'code'=>2,
  76. 'msg'=>'操作失败'
  77. ];
  78. }
  79. }
  80. /**
  81. * Function Description:获得站点详情
  82. * Function Name: getAreaByRes
  83. * @param $res_id
  84. *
  85. * @return mixed
  86. *
  87. * @author 冒炎
  88. */
  89. public function getAreaByRes($res_id){
  90. if($res_id == -1){
  91. $data['code']= '2';
  92. $data ['info'] = '参数有误';
  93. return $data;
  94. }
  95. $model = new BaseResource();
  96. $area= $model->getAreaByRes($res_id);
  97. if ($area['area_id'] == 0) {
  98. $data['code'] = '1';
  99. $data['info'] = '该站点无应用POI,请先配置应用POI!';
  100. return $data;
  101. }
  102. $res_info = $model->getStationsByres($res_id);
  103. $res_info['parent_area_id_list'] = substr($res_info['parent_area_id_list'], 1, -1);
  104. $res_info['parent_area_name_list'] = substr($res_info['parent_area_name_list'], 1, -1);
  105. $res_info['parent_area_id_list'] = explode("}{", $res_info['parent_area_id_list']);//应用POI站点id数组
  106. $res_info['parent_area_name_list'] = explode("}{", $res_info['parent_area_name_list']);//应用POI站点name数组
  107. $res_info['checkport_res_id'] = explode(",", $res_info['checkport_res_id']);//检票口id数组
  108. $res_info['checkport_res_name'] = explode(",", $res_info['checkport_res_name']);//检票口name数组
  109. //规整返回前端的站点数据
  110. $res = array();
  111. $res['res_id'] = $res_info['res_id'];
  112. $res['res_name'] = $res_info['res_name'];
  113. foreach ($res_info['parent_area_id_list'] as $k => $v) {
  114. $res['parent_area'][$k]['id'] = $v;
  115. $res['parent_area'][$k]['name'] = $res_info['parent_area_name_list'][$k];
  116. }
  117. foreach ($res_info['checkport_res_id'] as $k => $v) {
  118. $res['check_port'][$k]['id'] = $v;
  119. $res['check_port'][$k]['name'] = $res_info['checkport_res_name'][$k];
  120. }
  121. $res['inout_type'] = array(
  122. 0 => array(
  123. 'id' => '108',
  124. 'name' => '上'
  125. ),
  126. 1 => array(
  127. 'id' => '109',
  128. 'name' => '上下'
  129. ),
  130. 2 => array(
  131. 'id' => '110',
  132. 'name' => '下'
  133. )
  134. );
  135. $data['code'] = '0';
  136. $data['info'] = '返回数据成功';
  137. $data['res_info'] = $res;
  138. return $data;
  139. }
  140. /**
  141. * Function Description:根据名字搜索站点名
  142. * Function Name: getLineStation
  143. * @param $res_name
  144. *
  145. * @return mixed
  146. *
  147. * @author 冒炎
  148. */
  149. public function getLineStation($res_name){
  150. if($res_name == -1){
  151. $data['code'] = '1';
  152. $data['info'] = '参数有误';
  153. return $data;
  154. }
  155. $model = new BaseResource();
  156. $res_list = $model->getLineStationByRes($res_name);
  157. $data['code'] = '0';
  158. $data['info'] = '返回数据成功';
  159. $data['res_list'] = $res_list;
  160. return $data;
  161. }
  162. /**
  163. * Function Description:获取运营商列表数据
  164. * Function Name: getBaseInfo
  165. *
  166. * @return array
  167. *
  168. * @author 冒炎
  169. */
  170. public function getBaseInfo(){
  171. $model = new BaseSupplierPurchase();
  172. $list = $model->getSupplies();
  173. $data = [
  174. 'list'=>$list
  175. ];
  176. return $data;
  177. }
  178. /**
  179. * Function Description:根据line_id获取票种列表
  180. * Function Name: getTicketList
  181. * @param $line_id
  182. * @param $current_page
  183. * @param $page_size
  184. *
  185. * @return mixed
  186. *
  187. * @author 冒炎
  188. */
  189. public function getTicketList($line_id,$current_page,$page_size){
  190. $model = new OperaTicketsGroup();
  191. $data = $model->GetTicketListByLineId($line_id,$current_page,$page_size);
  192. return $data;
  193. }
  194. /**
  195. * Function Description:获取票种配置信息
  196. * Function Name: getTicketBase
  197. * @param $line_id
  198. *
  199. * @return mixed
  200. *
  201. * @author 冒炎
  202. */
  203. public function getTicketBase($line_id){
  204. $model = new OperaStation();
  205. $data = $model->getTicketBase($line_id);
  206. return $data;
  207. }
  208. /**
  209. * Function Description:根据起始站获得终点站
  210. * Function Name: getTicketEndStation
  211. * @param $line_id
  212. * @param $start_res_id
  213. *
  214. * @return mixed
  215. *
  216. * @author 冒炎
  217. */
  218. public function getTicketEndStation($line_id,$start_res_id){
  219. $model = new OperaStation();
  220. $data = $model->getTicketEndStation($line_id,$start_res_id);
  221. return $data;
  222. }
  223. /**
  224. * Function Description:添加票种保存数据
  225. * Function Name: addTicketSave
  226. * @param $line_id
  227. * @param $station_str
  228. * @param $prod_price
  229. * @param $cus_price
  230. * @param $cost_price
  231. * @param $seat_type
  232. * @param $human_type
  233. * @param $user_id
  234. * @param $create_time
  235. *
  236. * @return mixed
  237. * @throws \yii\db\Exception
  238. *
  239. * @author 冒炎
  240. */
  241. public function addTicketSave($line_id,$station_str,$prod_price,$cus_price,$cost_price,$seat_type,$human_type,$user_id,$create_time){
  242. $model = new OperaTickets();
  243. $ticket_name_sql = "select type_name from dict_type where id = " . $seat_type;
  244. $ticket_name = \Yii::$app->db->createCommand($ticket_name_sql)->queryOne();
  245. $ticket_name = $ticket_name['type_name'] . "票";
  246. //获取最大的ticket_id
  247. $ticket_id_sql = "select ifnull(max(ticket_id),0) as ticket_id from opera_tickets";
  248. $ticket_id = \Yii::$app->db->createCommand($ticket_id_sql)->queryOne();
  249. $ticket_id = $ticket_id['ticket_id'];
  250. $station_str = substr($station_str,1,-1);
  251. $station_array = explode("}{",$station_str);
  252. //获取检验是否存在票种的查询条件
  253. foreach($station_array as $k => $v)
  254. {
  255. $res_group = explode(",",$v);
  256. //获取所有的站点id;
  257. $res_array[$res_group[0]] = $res_group[0];
  258. $res_array[$res_group[1]] = $res_group[1];
  259. $check_arr[] = "(start_station_res_id = " . $res_group[0] . " and end_station_res_id = " . $res_group[1] . ")";
  260. }
  261. $check_str = "(" . implode(" or ",$check_arr) . ")";
  262. //检查是否存在已添加的票种
  263. $check_sql = "SELECT
  264. start_station_res_id,
  265. (SELECT res_name FROM base_resource WHERE res_id = t.start_station_res_id) as start_station_res_name,
  266. end_station_res_id,
  267. (SELECT res_name FROM base_resource WHERE res_id = t.end_station_res_id) as end_station_res_name
  268. FROM
  269. opera_tickets as t
  270. WHERE
  271. line_id = " . $line_id . "
  272. AND cancel_flag = 0
  273. AND seat_type = " . $seat_type . "
  274. AND human_type = " . $human_type . "
  275. AND " . $check_str;
  276. $check_ticket = \Yii::$app->db->createCommand($check_sql)->queryAll();
  277. if(count($check_ticket) > 0)
  278. {
  279. $info_array = array();
  280. foreach($check_ticket as $k => $v)
  281. {
  282. $info_array[] = $v['start_station_res_name'] . "-" . $v['end_station_res_name'];
  283. }
  284. $json['code'] = '1';
  285. $json['info'] = implode(",",$info_array) . "的该人群及座位等级已添加过,添加失败";
  286. return $json;
  287. }
  288. //查询所有站点ID的area_id
  289. $area_sql = "SELECT
  290. area_id,
  291. res_id
  292. FROM
  293. opera_station
  294. WHERE
  295. line_id = " . $line_id . "
  296. AND res_id in (" . implode(",",$res_array) . ")
  297. AND cancel_flag = 0";
  298. $res_area = \Yii::$app->db->createCommand($area_sql)->queryAll();
  299. //查询所有的站点名称
  300. $area_sql = "SELECT
  301. res_id,
  302. res_name
  303. FROM
  304. base_resource
  305. WHERE
  306. res_id in (" . implode(",",$res_array) . ")
  307. AND cancel_flag = 0";
  308. $res_name = \Yii::$app->db->createCommand($area_sql)->queryAll();
  309. foreach ($res_area as $k => $v)
  310. {
  311. $res_area_array[$v['res_id']] = $v['area_id'];
  312. }
  313. foreach ($res_name as $k => $v)
  314. {
  315. $res_name_array[$v['res_id']] = $v['res_name'];
  316. }
  317. $insert_ticket_sql = "INSERT INTO opera_tickets (
  318. ticket_id,
  319. create_user_id,
  320. create_time,
  321. update_user_id,
  322. cancel_flag,
  323. line_id,
  324. ticket_name,
  325. ticket_type,
  326. start_station_res_id,
  327. end_station_res_id,
  328. start_station_area_id,
  329. end_station_area_id,
  330. seat_type,
  331. human_type,
  332. prod_price,
  333. cus_price,
  334. cost_price,
  335. is_onsale
  336. )
  337. VALUES ";
  338. foreach($station_array as $k => $v)
  339. {
  340. $ticket_id ++;
  341. $ticket_group[] = $ticket_id;
  342. $station_res_group = explode(",",$v);
  343. $station_id_group[] = $station_res_group[0] . "-" . $station_res_group[1];//站点联系组合
  344. $station_name_group[] = $res_name_array[$station_res_group[0]] . "-" . $res_name_array[$station_res_group[1]];//站点名称联系组合
  345. $ticket_sql_array[] = "(" . $ticket_id . "," . $user_id . ",'" . $create_time . "'," . $user_id . ",0," . $line_id . ",'" . $ticket_name . "',1," . $station_res_group[0] . "," . $station_res_group[1] . "," . $res_area_array[$station_res_group[0]] . "," . $res_area_array[$station_res_group[1]] . "," . $seat_type . "," . $human_type . ",'" . $prod_price . "','" . $cus_price . "','" . $cost_price . "',0)";
  346. }
  347. $ticket_sql = implode(",",$ticket_sql_array);
  348. $insert_ticket_sql .= $ticket_sql;
  349. //添加票种分组
  350. $insert_ticket_group_sql = "INSERT INTO opera_tickets_group (
  351. create_user_id,
  352. create_time,
  353. update_user_id,
  354. update_time,
  355. cancel_flag,
  356. line_id,
  357. ticket_id,
  358. station_id,
  359. station_name,
  360. seat_type,
  361. human_type,
  362. prod_price,
  363. cus_price,
  364. cost_price
  365. )
  366. VALUES(" . $user_id . ",'" . $create_time . "'," . $user_id . ",'" . $create_time . "',0," . $line_id . ",'" . implode(",",$ticket_group) . "','" . implode(",",$station_id_group) . "','" . implode(",",$station_name_group) . "'," . $seat_type . "," . $human_type . ",'" . $prod_price . "','" . $cus_price . "','" . $cost_price . "')";
  367. // zzcsUtils::writeLog($insert_ticket_sql);
  368. $result1 = \Yii::$app->db->createCommand($insert_ticket_sql)->execute();
  369. // zzcsUtils::writeLog($insert_ticket_group_sql);
  370. $result2 = \Yii::$app->db->createCommand($insert_ticket_group_sql)->execute();
  371. if($result1 && $result2)
  372. {
  373. $json['code'] = '0';
  374. $json['info'] = '添加票种成功';
  375. }
  376. else
  377. {
  378. $json['code'] = '1';
  379. $json['info'] = '后台逻辑有误';
  380. }
  381. return $json;
  382. }
  383. /**
  384. * Function Description:票种修改数据保存
  385. * Function Name: uptTicketSave
  386. * @param $line_id
  387. * @param $group_id
  388. * @param $ticket_id
  389. * @param $prod_price
  390. * @param $cus_price
  391. * @param $cost_price
  392. * @param $user_id
  393. * @param $update_time
  394. *
  395. * @return array
  396. * @throws \yii\db\Exception
  397. *
  398. * @author 冒炎
  399. */
  400. public function uptTicketSave($line_id,$group_id,$ticket_id,$prod_price,$cus_price,$cost_price,$user_id,$update_time){
  401. //判断分销价是否改变,改变需要操作下属分销
  402. $get_prod_price_sql="select prod_price from opera_tickets where ticket_id in ($ticket_id) limit 1";
  403. $tmp_prod_price = \Yii::$app->db->createCommand($get_prod_price_sql)->queryOne();
  404. if($tmp_prod_price['prod_price'] != $prod_price){
  405. $url='http://'.CS1_DOMAIN.'/zzcs/agent-product/upt-status-for-self-sale';
  406. $cookie="user_id=$user_id";
  407. $send_data=array(
  408. 'prod_price'=>$prod_price,
  409. 'ticket_list'=>$ticket_id,
  410. 'is_onsale'=>0
  411. );
  412. $result= $this->httpRequestForYii($url,$send_data,$cookie);
  413. $result=unserialize($result);
  414. if($result['code']!=0){
  415. return array(
  416. 'code'=>1,
  417. 'info'=>'票种代售授权失败'
  418. );
  419. }
  420. }
  421. $ticket_sql = "UPDATE opera_tickets
  422. SET prod_price = '" . $prod_price . "',
  423. cus_price = '" . $cus_price . "',
  424. cost_price = '" . $cost_price . "',
  425. update_user_id = " . $user_id . ",
  426. update_time = '" . $update_time . "'
  427. WHERE
  428. line_id = " . $line_id . "
  429. AND cancel_flag = 0
  430. AND ticket_id IN (" . $ticket_id . ")";
  431. $ticket_group_sql = "UPDATE opera_tickets_group
  432. SET prod_price = '" . $prod_price . "',
  433. cus_price = '" . $cus_price . "',
  434. cost_price = '" . $cost_price . "',
  435. update_user_id = " . $user_id . ",
  436. update_time = '" . $update_time . "'
  437. WHERE
  438. line_id = " . $line_id . "
  439. AND cancel_flag = 0
  440. AND id = " . $group_id;
  441. //zzcsUtils::writeLog($ticket_sql);
  442. $result1 = \Yii::$app->db->createCommand($ticket_sql)->execute();
  443. //zzcsUtils::writeLog($ticket_group_sql);
  444. $result2 = \Yii::$app->db->createCommand($ticket_group_sql)->execute();
  445. if($result1 && $result2)
  446. {
  447. $json['code'] = '0';
  448. $json['info'] = '修改价格成功';
  449. }
  450. else
  451. {
  452. $json['code'] = '1';
  453. $json['info'] = '后台逻辑有误';
  454. }
  455. return $json;
  456. }
  457. public function deleteTicket($line_id,$group_id,$ticket_id,$user_id,$update_time,$current_day){
  458. $ticket_type_exists_sql = "SELECT count(order_id) as total_num FROM `order_main`
  459. WHERE `order_status` IN (145,146)
  460. AND `RUN_DATE` >= '{$current_day}'
  461. AND `PROD_ID` IN ($ticket_id)";
  462. $run_bus_exists_sql = "SELECT count(id) as total_num2 FROM `run_bus`
  463. WHERE `RUN_ID` IN (SELECT `RUN_ID` FROM `run_main` WHERE `PROD_id`= '{$line_id}')
  464. AND `RUN_BUS_STATUS` IN (137,138,139)";
  465. $result5 = \Yii::$app->db->createCommand($ticket_type_exists_sql)->queryOne();
  466. $result6 = \Yii::$app->db->createCommand($run_bus_exists_sql)->queryOne();
  467. if( $result5["total_num"] > 0 || $result6["total_num2"] > 0 )
  468. {
  469. $json['code'] = '3';
  470. $json['info'] = $result5["total_num"] > 0 ? '请将该票种相关未完成的订单全部取消后再执行删除操作' : '请将该线路的未完成班次全部停运后再执行删除操作' ;
  471. return $json;
  472. }
  473. $ticket_sql = "UPDATE opera_tickets
  474. SET cancel_flag = 1,
  475. update_user_id = " . $user_id . ",
  476. update_time = '" . $update_time . "'
  477. WHERE
  478. line_id = " . $line_id . "
  479. AND cancel_flag = 0
  480. AND ticket_id IN (" . $ticket_id . ")";
  481. $ticket_group_sql = "UPDATE opera_tickets_group
  482. SET cancel_flag = 1,
  483. update_user_id = " . $user_id . ",
  484. update_time = '" . $update_time . "'
  485. WHERE
  486. line_id = " . $line_id . "
  487. AND cancel_flag = 0
  488. AND id = " . $group_id;
  489. //将opera_message_template表的相关数据cancel_flag置为1
  490. $ticket_template_sql = "UPDATE opera_message_template
  491. SET cancel_flag = 1,
  492. update_user_id = " . $user_id . ",
  493. update_time = '" . $update_time . "'
  494. WHERE template_type=2
  495. AND cancel_flag = 0
  496. AND ticket_group_id = " . $group_id;
  497. // zzcsUtils::writeLog($ticket_sql);
  498. $result1 = \Yii::$app->db->createCommand($ticket_sql)->execute();
  499. // zzcsUtils::writeLog($ticket_group_sql);
  500. $result2 = \Yii::$app->db->createCommand($ticket_group_sql)->execute();
  501. // zzcsUtils::writeLog($ticket_template_sql);
  502. $result3 = \Yii::$app->db->createCommand($ticket_template_sql)->execute();
  503. if($result1 && $result2)
  504. {
  505. //删除票种后,代售信息删除
  506. $url='http://'.CS1_DOMAIN.'/zzcs/agent-product/delete-ticket';
  507. $cookie="user_id=$user_id";
  508. $send_data=array(
  509. 'ticket_list'=>$ticket_id,
  510. );
  511. $result4=$this->httpRequestForYii($url,$send_data,$cookie);
  512. //return unserialize($result);
  513. $json['code'] = '0';
  514. $json['info'] = '删除票种成功';
  515. }
  516. else
  517. {
  518. $json['code'] = '1';
  519. $json['info'] = '后台逻辑有误';
  520. }
  521. return $json;
  522. }
  523. /**
  524. * Function Description:票种上下架
  525. * Function Name: sendInfo
  526. * @param $ticket_list
  527. * @param $is_onsale
  528. *
  529. * @return mixed
  530. *
  531. * @author 冒炎
  532. */
  533. public function sendInfo($ticket_list,$is_onsale){
  534. $param = [];
  535. $param['ticket_list'] = $ticket_list;
  536. $param['is_onsale'] = $is_onsale;
  537. $url='http://'.CS1_DOMAIN.'/zzcs/agent-product/upt-status-for-self-sale';
  538. $user_id = \Yii::$app->request->cookies->getValue('user_id',-1);
  539. $cookie="user_id=$user_id";
  540. $result=$this->httpRequestForYii($url,$param,$cookie);
  541. return unserialize($result);
  542. }
  543. /**
  544. * Function Description:修改票种是否需要检票属性
  545. * Function Name: CheckChange
  546. * @param $ticket_list
  547. * @param $is_check
  548. *
  549. * @return array
  550. *
  551. * @author 冒炎
  552. */
  553. public function CheckChange($ticket_list,$is_check){
  554. $model = new OperaTickets();
  555. $ticket_arr = explode(',', $ticket_list);
  556. foreach($ticket_arr as $ticket_id){
  557. $model->uptIsCheck($ticket_id,$is_check);
  558. }
  559. return [
  560. 'code'=>0,
  561. 'info'=>'修改成功'
  562. ];
  563. }
  564. public function httpRequestForYii($url,$data=null,$cookie) {
  565. $ch=curl_init();
  566. curl_setopt($ch, CURLOPT_COOKIE, $cookie);
  567. curl_setopt($ch, CURLOPT_URL, $url);
  568. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  569. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  570. if (!empty($data)){
  571. curl_setopt($ch, CURLOPT_POST, 1);
  572. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  573. }
  574. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  575. $output=curl_exec($ch);
  576. curl_close($ch);
  577. return $output;
  578. }
  579. /**
  580. * Function Description:获取运营负责人信息列表
  581. * Function Name: getRunDuty
  582. * @param $user_id
  583. * @return array|\yii\db\ActiveRecord[]
  584. * @author 田玲菲
  585. */
  586. public function getRunDuty($user_id){
  587. $baseUser = new BaseUser();
  588. $res = $baseUser->getRunDutyList($user_id);
  589. return $res;
  590. }
  591. }