|
- <?php
- namespace backend\modules\api\controllers;
-
- use backend\modules\api\models\BaseUser;
- use backend\modules\api\models\OrderMain;
- use backend\modules\api\models\RunBus;
- use backend\modules\api\models\RunMain;
- use backend\modules\api\models\RunProd;
- use backend\modules\api\models\RunStation;
- use backend\modules\zzcs\models\LineGroupCommon;
- use yii\db\Exception;
- use yii\web\Controller;
- use Yii;
-
- class RunInfoController extends Controller
- {
- public $enableCsrfValidation = false;
-
- /**
- * Function Description:入口
- * Function Name: actionIndex
- *
- * @return string
- *
- * @author Redstop
- */
- public function actionIndex()
- {
- $request = Yii::$app->request;
- $action = $request->post('action');
- $func = 'action';
- $action = explode('_', $action);
- foreach ($action as $key => $vel) {
- $func .= ucfirst($vel);
- }
- //check 验证码
- if ($this->actionCheckAuthCode() == false) {
- $json = ['code' => 1, 'info' => '验证身份失败'];
- return json_encode($json);
- }
-
- if ($action === false || method_exists($this, $func) == false) {
- $json = ['code' => 1, 'info' => '必要参数缺失'];
- return json_encode($json);
- }
- return $this->$func();
- }
-
- /**
- * Function Description:获取运行线路信息
- * Function Name: actionGetRunInfo
- *
- * @return string
- *
- * @author 李健
- */
- public function actionGetRunInfo()
- {
- $user_id = Yii::$app->request->post('user_id','');
- $run_id = Yii::$app->request->post('run_id','');
- // 开启事物
- $transaction = Yii::$app->db->beginTransaction();
- try{
- // 查询线路信息
- $run_main = new RunMain();
- $res1 = $run_main->getRunInfo($run_id);
- if(!$res1){
- throw new Exception('线路基本信息查询失败');
- }
- $res1['receiving'] = '';
-
- $data = $res1;
-
- // 查询站点信息
- $run_station = new RunStation();
- $res2 = $run_station->getStationList($run_id);
-
- $data['station_list']=$res2;
-
- // 获取车次信息
- $run_bus = new RunBus();
- $res3 = $run_bus->getBusInfo($run_id);
- if(!$res3){
- throw new Exception('车次信息查询失败');
- }
- $data['bus_info']=$res3;
-
- // 获取车票信息
- $run_prod = new RunProd();
- $res4 = $run_prod->getTicketType($run_id);
- if(!$res4){
- throw new Exception('车票信息查询失败');
- }
- $data['ticket_type']=$res4;
-
- // 获取订单里面的票种信息
- $order_main = new OrderMain();
- $res5 = $order_main->getRunTicketInfo($run_id);
- if($res5){
- foreach ($res5 as $k=>$v){
- $res5[$k]['crowd'] = '';
- $res5[$k]['if_ticket'] = '是';
- }
- }
-
- $data['order_ticket_info_list'] = $res5;
-
- // 显示班次可用票种
- $res6 = $run_prod->getTicketInfo($run_id);
- if($res6) {
- foreach ($res6 as $k=>$v){
- $res6[$k]['sale'] = '可售';
- }
- }
- $data['not_in_order_ticket_info_list'] = $res6;
-
- $data['code'] = 0;
- $data['info'] = '';
- } catch (Exception $e) {
- $data = [
- 'code'=>1,
- 'info'=>$e->getMessage(),
- ];
- }
-
- return json_encode($data,true);
- }
-
- /**
- * Function Description:获取班次列表
- * Function Name: actionGetRunList
- *
- * @return string
- *
- * @author 李健
- */
- public function actionGetRunList()
- {
- $user_id =Yii::$app->request->post('user_id');
- $current_page=Yii::$app->request->post('current_page',1);
- $page_size=Yii::$app->request->post('page_size',10);
- $line= trim(Yii::$app->request->post('line',''));
- $start_date=Yii::$app->request->post('start_date','');
- $end_date=Yii::$app->request->post('end_date','');
- $run_status=Yii::$app->request->post('run_status','');
- $bus_type=Yii::$app->request->post('bus_type',0);
- $run_time = Yii::$app->request->post('time');
- $order_rule = Yii::$app->request->post('order_rule');
-
- // $PROD_START_LIST = "";
- // if( $bus_group != "0" ) {
- // // 查询线路通用信息
- // $line_group_common = new LineGroupCommon();
- // $bus_group_info = $line_group_common->getBusLineCommonInfo($bus_group);
- // if( $bus_group_info ) {
- // $prod_array = explode("_", $bus_group_info["prod_list"]);
- // $start_array = explode("_", $bus_group_info["start_time_list"]);
- // foreach( $prod_array as $key => $prod_id) {
- // $PROD_START_LIST .= $prod_id.",".$start_array[$key]."|";
- // }
- // }
- // }
- try{
- $run_main = new RunMain();
- // 获取opera_org_id
- $base_user = new BaseUser();
- $opera_org_id = $base_user->getOperaOrgId($user_id);
- // 获取运营主体id
- $main_corp_id = $base_user->getMainCorpIdById($user_id);
- $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);
- $data = $result;
- // 查询线路分组列表
- // $line_group_common = new LineGroupCommon();
- // $res = $line_group_common->getBusLineList();
- // if($res){
- // $data['bus_group_list']=$res;
- // } else {
- // $data['bus_group_list']= array();
- // }
- $data['code']='0';
- $data['info']='';
- } catch (Exception $e) {
- $data['code']='1';
- $data['info']='查询失败';
- }
-
- return json_encode($data);
- }
- }
|