Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

189 строки
6.1 KiB

  1. <?php
  2. namespace backend\modules\api\controllers;
  3. use backend\modules\api\models\BaseUser;
  4. use backend\modules\api\models\OrderMain;
  5. use backend\modules\api\models\RunBus;
  6. use backend\modules\api\models\RunMain;
  7. use backend\modules\api\models\RunProd;
  8. use backend\modules\api\models\RunStation;
  9. use backend\modules\zzcs\models\LineGroupCommon;
  10. use yii\db\Exception;
  11. use yii\web\Controller;
  12. use Yii;
  13. class RunInfoController extends Controller
  14. {
  15. public $enableCsrfValidation = false;
  16. /**
  17. * Function Description:入口
  18. * Function Name: actionIndex
  19. *
  20. * @return string
  21. *
  22. * @author Redstop
  23. */
  24. public function actionIndex()
  25. {
  26. $request = Yii::$app->request;
  27. $action = $request->post('action');
  28. $func = 'action';
  29. $action = explode('_', $action);
  30. foreach ($action as $key => $vel) {
  31. $func .= ucfirst($vel);
  32. }
  33. //check 验证码
  34. if ($this->actionCheckAuthCode() == false) {
  35. $json = ['code' => 1, 'info' => '验证身份失败'];
  36. return json_encode($json);
  37. }
  38. if ($action === false || method_exists($this, $func) == false) {
  39. $json = ['code' => 1, 'info' => '必要参数缺失'];
  40. return json_encode($json);
  41. }
  42. return $this->$func();
  43. }
  44. /**
  45. * Function Description:获取运行线路信息
  46. * Function Name: actionGetRunInfo
  47. *
  48. * @return string
  49. *
  50. * @author 李健
  51. */
  52. public function actionGetRunInfo()
  53. {
  54. $user_id = Yii::$app->request->post('user_id','');
  55. $run_id = Yii::$app->request->post('run_id','');
  56. // 开启事物
  57. $transaction = Yii::$app->db->beginTransaction();
  58. try{
  59. // 查询线路信息
  60. $run_main = new RunMain();
  61. $res1 = $run_main->getRunInfo($run_id);
  62. if(!$res1){
  63. throw new Exception('线路基本信息查询失败');
  64. }
  65. $res1['receiving'] = '';
  66. $data = $res1;
  67. // 查询站点信息
  68. $run_station = new RunStation();
  69. $res2 = $run_station->getStationList($run_id);
  70. $data['station_list']=$res2;
  71. // 获取车次信息
  72. $run_bus = new RunBus();
  73. $res3 = $run_bus->getBusInfo($run_id);
  74. if(!$res3){
  75. throw new Exception('车次信息查询失败');
  76. }
  77. $data['bus_info']=$res3;
  78. // 获取车票信息
  79. $run_prod = new RunProd();
  80. $res4 = $run_prod->getTicketType($run_id);
  81. if(!$res4){
  82. throw new Exception('车票信息查询失败');
  83. }
  84. $data['ticket_type']=$res4;
  85. // 获取订单里面的票种信息
  86. $order_main = new OrderMain();
  87. $res5 = $order_main->getRunTicketInfo($run_id);
  88. if($res5){
  89. foreach ($res5 as $k=>$v){
  90. $res5[$k]['crowd'] = '';
  91. $res5[$k]['if_ticket'] = '是';
  92. }
  93. }
  94. $data['order_ticket_info_list'] = $res5;
  95. // 显示班次可用票种
  96. $res6 = $run_prod->getTicketInfo($run_id);
  97. if($res6) {
  98. foreach ($res6 as $k=>$v){
  99. $res6[$k]['sale'] = '可售';
  100. }
  101. }
  102. $data['not_in_order_ticket_info_list'] = $res6;
  103. $data['code'] = 0;
  104. $data['info'] = '';
  105. } catch (Exception $e) {
  106. $data = [
  107. 'code'=>1,
  108. 'info'=>$e->getMessage(),
  109. ];
  110. }
  111. return json_encode($data,true);
  112. }
  113. /**
  114. * Function Description:获取班次列表
  115. * Function Name: actionGetRunList
  116. *
  117. * @return string
  118. *
  119. * @author 李健
  120. */
  121. public function actionGetRunList()
  122. {
  123. $user_id =Yii::$app->request->post('user_id');
  124. $current_page=Yii::$app->request->post('current_page',1);
  125. $page_size=Yii::$app->request->post('page_size',10);
  126. $line= trim(Yii::$app->request->post('line',''));
  127. $start_date=Yii::$app->request->post('start_date','');
  128. $end_date=Yii::$app->request->post('end_date','');
  129. $run_status=Yii::$app->request->post('run_status','');
  130. $bus_type=Yii::$app->request->post('bus_type',0);
  131. $run_time = Yii::$app->request->post('time');
  132. $order_rule = Yii::$app->request->post('order_rule');
  133. // $PROD_START_LIST = "";
  134. // if( $bus_group != "0" ) {
  135. // // 查询线路通用信息
  136. // $line_group_common = new LineGroupCommon();
  137. // $bus_group_info = $line_group_common->getBusLineCommonInfo($bus_group);
  138. // if( $bus_group_info ) {
  139. // $prod_array = explode("_", $bus_group_info["prod_list"]);
  140. // $start_array = explode("_", $bus_group_info["start_time_list"]);
  141. // foreach( $prod_array as $key => $prod_id) {
  142. // $PROD_START_LIST .= $prod_id.",".$start_array[$key]."|";
  143. // }
  144. // }
  145. // }
  146. try{
  147. $run_main = new RunMain();
  148. // 获取opera_org_id
  149. $base_user = new BaseUser();
  150. $opera_org_id = $base_user->getOperaOrgId($user_id);
  151. // 获取运营主体id
  152. $main_corp_id = $base_user->getMainCorpIdById($user_id);
  153. $result = $run_main->getRunList($start_date,$end_date,$run_status,$line,$bus_type,$opera_org_id,$main_corp_id,$run_time,$current_page,$page_size,$order_rule);
  154. $data = $result;
  155. // 查询线路分组列表
  156. // $line_group_common = new LineGroupCommon();
  157. // $res = $line_group_common->getBusLineList();
  158. // if($res){
  159. // $data['bus_group_list']=$res;
  160. // } else {
  161. // $data['bus_group_list']= array();
  162. // }
  163. $data['code']='0';
  164. $data['info']='';
  165. } catch (Exception $e) {
  166. $data['code']='1';
  167. $data['info']='查询失败';
  168. }
  169. return json_encode($data);
  170. }
  171. }