|
- <?php
- /**
- * Created by PhpStorm.
- * User: 001
- * Date: 2017/11/6
- * Time: 15:34
- */
-
- namespace backend\modules\zzcs\controllers;
-
-
- use backend\modules\zzcs\logic\LineManage;
- use common\models\Utils;
- use yii\base\Controller;
- use Yii;
-
- class LineManageController extends Controller
- {
- public $enableCsrfValidation = false;
- public $layout = '@backend/modules/zzcs/views/layouts/zzcs';
-
- public function actionIndex()
- {
- return 'Hello';
- }
-
- /**
- * Function Description:加载线路列表页面和数据
- * Function Name: actionGetLineList
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionGetLineList()
- {
- $logic = new LineManage();
- $line_code = Yii::$app->request->get('line_code', '');
- $line_status = Yii::$app->request->get('line_status', 0);
- $use_status = Yii::$app->request->get('use_status', -1);
- $line_type = Yii::$app->request->get('line_type', 255);
- $tailor_type = Yii::$app->request->get('tailor_type', 0);
- $current_page = Yii::$app->request->get('current_page', 1);
- $page_size = Yii::$app->request->get('page_size', 10);
- $run_duty_id = Yii::$app->request->get('run_duty_id', -1);
- $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
- $run_duty_list = $logic->getRunDuty($user_id);
- $data = $logic->getLineList(trim($line_code), $line_status, $use_status, $line_type, $tailor_type, $run_duty_id, $current_page, $page_size);
- $data['run_duty_list'] = $run_duty_list;
- return $this->render('line-list', $data);
- }
-
- /**
- * Function Description:线路启用/停用
- * Function Name: actionUptLine
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionUptLine()
- {
- $opt_code = Yii::$app->request->post('opt_code', -1);
- $line_id_str = Yii::$app->request->post('line_id', -1);
- $logic = new LineManage();
- $data = $logic->LineUpt($opt_code, $line_id_str);
- return json_encode($data);
- }
-
-
- /**
- * Function Description:返回线路添加页面
- * Function Name: actionAddLine
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionAddLine()
- {
- $logic = new LineManage();
- $data = $logic->getBaseInfo();
- $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
- $run_duty_list = $logic->getRunDuty($user_id);
- $data['run_duty_list'] = $run_duty_list;
- return $this->render('add-line', $data);
- }
-
-
- /**
- * Function Description:获取站点详情
- * Function Name: actionGetStationInfo
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionGetStationInfo()
- {
- $res_id = Yii::$app->request->post('res_id', -1);
- $logic = new LineManage();
- $data = $logic->getAreaByRes($res_id);
- return json_encode($data);
- }
-
- /**
- * Function Description:根据名字搜索站点名
- * Function Name: actionGetLineStation
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionGetLineStation()
- {
- $res_name = Yii::$app->request->post('res_name', -1);
- $logic = new LineManage();
- $data = $logic->getLineStation(trim($res_name));
- return json_encode($data);
- }
-
-
- /**
- * Function Description:添加线路数据保存接口
- * Function Name: actionAddLineSave
- *
- * @return mixed|string
- *
- * @author 冒炎
- */
- public function actionAddLineSave()
- {
- $line_name = Yii::$app->request->post('line_name', -1);
- $line_code = Yii::$app->request->post('line_code', -1);
- $line_type = Yii::$app->request->post('line_type', -1);
- $line_sub_type = Yii::$app->request->post('line_sub_type', -1);
- $time_type = Yii::$app->request->post('time_type', -1);
- $time_info = Yii::$app->request->post('time_info', -1);
- $supply_id = Yii::$app->request->post('supply_id', -1);
- $station_list = Yii::$app->request->post('station_list', -1);
- $allow_selected_seat = Yii::$app->request->post('allow_selected_seat', -1);
- $remark = Yii::$app->request->post('remark', '');
- $run_duty_id = Yii::$app->request->post('run_duty_id', 0);
- if ($line_name == -1 || $line_code == -1 || $line_type == -1 || $line_sub_type == -1 ||
- $time_type == -1 || $time_info == -1 || $supply_id == -1 || $station_list == -1 || $allow_selected_seat == -1) {
- $data = [
- 'code' => '1',
- 'info' => '参数有误'
- ];
- return json_encode($data);
- }
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- $http_data = [
- 'user_id' => $user_id,
- 'line_name' => $line_name,
- 'line_code' => $line_code,
- 'line_type' => $line_type,
- 'line_sub_type' => $line_sub_type,
- 'time_type' => $time_type,
- 'time_info' => $time_info,
- 'supply_id' => $supply_id,
- 'station_list' => $station_list,
- 'allow_selected_seat' => $allow_selected_seat,
- 'remark' => $remark,
- 'run_duty_id' => $run_duty_id
- ];
- $res = Utils::httpRequest('http://' . CS1_DOMAIN . '/api/run-edit/add-line', $http_data);
- return $res;
- }
-
- /**
- * Function Description:加载线路修改页面
- * Function Name: actionChangeLineInfo
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionChangeLineInfo()
- {
- $line_id = Yii::$app->request->get('line_id', -1);
- $logic = new LineManage();
- $data = $logic->getBaseInfo();
- $data['line_id'] = $line_id;
- $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
- $run_duty_list = $logic->getRunDuty($user_id);
- $data['run_duty_list'] = $run_duty_list;
- return $this->render('upt-line', $data);
- }
-
- /**
- * Function Description:获取单条线路详细信息
- * Function Name: actionGetLineDetail
- *
- * @return array|mixed|string
- *
- * @author 冒炎
- */
- public function actionGetLineDetail()
- {
- $line_id = Yii::$app->request->post('line_id', -1);
- if ($line_id == -1) {
- $data = [
- 'code' => '2',
- 'info' => '参数有误'
- ];
- return json_encode($data);
- }
- $http_data = array(
- 'line_id' => $line_id
- );
- $data = Utils::httpRequest('http://' . CS1_DOMAIN . '/api/run-edit/get-line-detail', $http_data);
- return $data;
- }
-
- /**
- * Function Description:修改线路保存数据
- * Function Name: actionUptLineSave
- *
- * @return mixed|string
- *
- * @author 冒炎
- */
- public function actionUptLineSave()
- {
-
- $line_id = Yii::$app->request->post('line_id', -1);
- $line_name = Yii::$app->request->post('line_name', -1);
- $line_code = Yii::$app->request->post('line_code', -1);
- $line_type = Yii::$app->request->post('line_type', -1);
- $line_sub_type = Yii::$app->request->post('line_sub_type', -1);
- $time_type = Yii::$app->request->post('time_type', -1);
- $time_info = Yii::$app->request->post('time_info', -1);
- $supply_id = Yii::$app->request->post('supply_id', -1);
- $station_list = Yii::$app->request->post('station_list', -1);
- $tailor_flag = Yii::$app->request->post('tailor_flag', -1);
- $allow_selected_seat = Yii::$app->request->post('allow_selected_seat', -1);
- $run_duty_id = Yii::$app->request->post('run_duty_id', 0);
- $remark = Yii::$app->request->post('remark', '');
- if ($line_id == -1 || $line_name == -1 || $line_code == -1 || $line_type == -1 || $line_sub_type == -1 ||
- $time_type == -1 || $time_info == -1 || $supply_id == -1 || $station_list == -1 || $tailor_flag == -1 ||
- $allow_selected_seat == -1) {
- $data = [
- 'code' => '1',
- 'info' => '参数有误'
- ];
- return json_encode($data);
- }
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- $http_data = [
- 'user_id' => $user_id,
- 'line_id' => $line_id,
- 'line_name' => $line_name,
- 'line_code' => $line_code,
- 'line_type' => $line_type,
- 'line_sub_type' => $line_sub_type,
- 'time_type' => $time_type,
- 'time_info' => $time_info,
- 'supply_id' => $supply_id,
- 'station_list' => $station_list,
- 'tailor_flag' => $tailor_flag,
- 'allow_selected_seat' => $allow_selected_seat,
- 'remark' => $remark,
- 'run_duty_id' => $run_duty_id,
- ];
- $res = Utils::httpRequest('http://' . CS1_DOMAIN . '/api/run-edit/upt-line', $http_data);
- return $res;
- }
-
- /**
- * Function Description:加载票种管理页面
- * Function Name: actionLineProdManage
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionLineProdManage()
- {
- $line_id = Yii::$app->request->get('line_id', '');
- $line_type = Yii::$app->request->get('line_type', '');
- $data = [
- 'line_id' => $line_id,
- 'line_type' => $line_type
- ];
- return $this->render('line-prod', $data);
- }
-
- /**
- * Function Description:获取票种列表
- * Function Name: actionGetTicketList
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionGetTicketList()
- {
- $line_id = Yii::$app->request->post('line_id', -1);
- $current_page = Yii::$app->request->post('current_page', 1);
- $page_size = Yii::$app->request->post('page_size', 10);
- if ($line_id == -1) {
- $data = [
- 'code' => '2',
- 'info' => '参数有误'
- ];
- return json_encode($data);
- }
- $logic = new LineManage();
- $data = $logic->getTicketList($line_id, $current_page, $page_size);
- return json_encode($data);
- }
-
- /**
- * Function Description:获取票种配置信息
- * Function Name: actionGetTicketBase
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionGetTicketBase()
- {
- $line_id = Yii::$app->request->post('line_id', -1);
- if ($line_id == -1) {
- $data = [
- 'code' => '2',
- 'info' => '参数有误'
- ];
- return json_encode($data);
- }
- $logic = new LineManage();
- $data = $logic->getTicketBase($line_id);
- return json_encode($data);
- }
-
-
- /**
- * Function Description:根据起始站获得终点站
- * Function Name: actionGetTicketEndStation
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionGetTicketEndStation()
- {
- $line_id = Yii::$app->request->post('line_id', -1);
- $start_res_id = Yii::$app->request->post('start_res_id', -1);
- if ($line_id == -1 || $start_res_id == -1) {
- $data = [
- 'code' => '2',
- 'info' => '参数有误'
- ];
- return json_encode($data);
- }
- if (empty($line_id) || empty($start_res_id)) {
- $data = [
- 'code' => '3',
- 'info' => '部分参数为空'
- ];
- return json_encode($data);
- }
- $logic = new LineManage();
- $data = $logic->getTicketEndStation($line_id, $start_res_id);
- return json_encode($data);
- }
-
- /**
- * Function Description:添加票种数据保存
- * Function Name: actionAddTicketSave
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionAddTicketSave()
- {
- $line_id = Yii::$app->request->post('line_id', -1);
- $station_str = Yii::$app->request->post('station_str', -1);
- $prod_price = Yii::$app->request->post('prod_price', -1);
- $cus_price = Yii::$app->request->post('cus_price', -1);
- $cost_price = Yii::$app->request->post('cost_price', -1);
- $seat_type = Yii::$app->request->post('seat_type', -1);
- $human_type = Yii::$app->request->post('human_type', -1);
- $human_type = 159;
- $line_type = 1;
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- $create_time = date("Y-m-d H:i:s", time());
-
- if ($line_id == -1 || $station_str == -1 || $prod_price == -1 || $cus_price == -1 || $cost_price == -1 || $seat_type == -1 || $human_type == -1) {
- $json['code'] = '2';
- $json['info'] = '缺少必要参数';
- return json_encode($json);
- }
- if (empty($line_id) || empty($station_str) || empty($prod_price) || empty($cus_price) || empty($seat_type) || empty($human_type)) {
- $json['code'] = '2';
- $json['info'] = '部分参数为空';
- return json_encode($json);
- }
-
- $logic = new LineManage();
- $data = $logic->addTicketSave($line_id, $station_str, $prod_price, $cus_price, $cost_price, $seat_type, $human_type, $user_id, $create_time);
- return json_encode($data);
- }
-
- /**
- * Function Description:票种修改数据保存
- * Function Name: actionUptTicketSave
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionUptTicketSave()
- {
- $line_id = Yii::$app->request->post('line_id', -1);
- $group_id = Yii::$app->request->post('group_id', -1);
- $ticket_id = Yii::$app->request->post('ticket_id', -1);
- $prod_price = Yii::$app->request->post('prod_price', -1);
- $cus_price = Yii::$app->request->post('cus_price', -1);
- $cost_price = Yii::$app->request->post('cost_price', -1);
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- $update_time = date("Y-m-d H:i:s", time());
- if ($line_id == -1 || $ticket_id == -1 || $prod_price == -1 || $cus_price == -1 || $cost_price == -1 || $group_id == -1) {
- $json['code'] = '2';
- $json['info'] = '缺少必要参数';
- return json_encode($json);
- }
- $logic = new LineManage();
- $data = $logic->uptTicketSave($line_id, $group_id, $ticket_id, $prod_price, $cus_price, $cost_price, $user_id, $update_time);
- return json_encode($data);
-
- }
-
- /**
- * Function Description:票种删除
- * Function Name: actionDeleteTicket
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionDeleteTicket()
- {
- $line_id = Yii::$app->request->post('line_id', -1);
- $group_id = Yii::$app->request->post('group_id', -1);
- $ticket_id = Yii::$app->request->post('ticket_id', -1);
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- $update_time = date("Y-m-d H:i:s", time());
- if ($line_id == -1 || $ticket_id == -1) {
- $json['code'] = '2';
- $json['info'] = '缺少必要参数';
- return json_encode($json);
- }
- $current_day = date("Y-m-d");
- $logic = new LineManage();
- $data = $logic->deleteTicket($line_id, $group_id, $ticket_id, $user_id, $update_time, $current_day);
- return json_encode($data);
- }
-
- /**
- * Function Description:票种上下架
- * Function Name: actionSendInfo
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionSendInfo()
- {
- $ticket_list = Yii::$app->request->post('ticket_list', -1);
- $is_onsale = Yii::$app->request->post('is_onsale', -1);
-
- if ($ticket_list == -1 || $is_onsale == -1) {
- $json['code'] = '2';
- $json['info'] = '缺少必要参数';
- return json_encode($json);
- }
- $logic = new LineManage();
- $data = $logic->sendInfo($ticket_list, $is_onsale);
- return json_encode($data);
-
- }
-
- /**
- * Function Description:修改票种是否需要检票属性
- * Function Name: actionCheckChange
- *
- * @return string
- *
- * @author 冒炎
- */
- public function actionCheckChange()
- {
- $ticket_list = Yii::$app->request->post('ticket_list', -1);
- $is_check = Yii::$app->request->post('is_check', -1);
-
- if ($ticket_list == -1 || $is_check == -1) {
- $json['code'] = '2';
- $json['info'] = '缺少必要参数';
- return json_encode($json);
- }
- $logic = new LineManage();
- $data = $logic->CheckChange($ticket_list, $is_check);
- return json_encode($data);
-
- }
-
- }
|