|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use yii\db\ActiveRecord;
-
- /**
- * This is the model class for table "opera_station".
- *
- * @property integer $ID
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property integer $CANCEL_FLAG
- * @property integer $LINE_ID
- * @property integer $ORDER_ID
- * @property integer $START_MINUTES
- * @property integer $RES_ID
- * @property integer $CHECKPORT_RES_ID
- * @property integer $INOUT_TYPE
- * @property integer $AREA_ID
- * @property double $DISTANCE
- */
- class OperaStation extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_station';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'LINE_ID', 'ORDER_ID', 'START_MINUTES', 'RES_ID', 'CHECKPORT_RES_ID', 'INOUT_TYPE', 'AREA_ID'], 'integer'],
- [['CREATE_TIME'], 'required'],
- [['UPDATE_TIME'], 'safe'],
- [['DISTANCE'], 'number'],
- [['CREATE_TIME'], 'string', 'max' => 20],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'CREATE_USER_ID' => '记录创建用户ID',
- 'CREATE_TIME' => '记录创建时间',
- 'UPDATE_USER_ID' => '记录最后更新用户ID',
- 'UPDATE_TIME' => '记录最后更新时间',
- 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
- 'LINE_ID' => '线路ID',
- 'ORDER_ID' => '场站停靠顺序ID,从1开始,非0',
- 'START_MINUTES' => '场站发车时间至始发日0点的分钟数',
- 'RES_ID' => '资源ID,BASE_RESOURCE.RES_ID,如普通座、贵宾座等。还缺少站点相关资源',
- 'CHECKPORT_RES_ID' => '检票口资源ID,BASE_RESOURCE.RES_ID,可为0,非必选',
- 'INOUT_TYPE' => '上下车属性ID,DICT_TYPE.ID,108上,109上下,110下。非0,必选',
- 'AREA_ID' => '应用POI,BASE_AREA.ID',
- 'DISTANCE' => '距离',
- ];
- }
-
- /**
- * Function Description:获取票种配置信息
- * Function Name: getTicketBase
- * @param $line_id
- *
- * @return mixed
- *
- * @author 冒炎
- */
- public function getTicketBase($line_id){
- $where = ['and',['=','a.line_id',$line_id],['=','cancel_flag',0],['in','a.inout_type',[108,109]]];
- $select = [
- 'a.res_id',
- 'a.order_id',
- 'res_name'=>"(SELECT res_name FROM base_resource WHERE res_id = a.res_id limit 1)",
-
- ];
- $start_res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->where($where)
- ->groupBy('a.res_id')
- ->asArray()
- ->all();
-
-
- //获取座位类型
- $base_seat = array(72);
- $sql = "SELECT
- id,
- type_name
- FROM
- dict_type
- WHERE
- parent_id = 71";
- $seat_type_result = \Yii::$app->db->createCommand($sql)->queryAll();
- $seat_type = array();
- foreach($seat_type_result as $k => $v)
- {
- if(in_array($v['id'],$base_seat))
- {
- $seat_type[] = $v;
- }
- }
- //获取人群属性
- $human_type = array(array('id' => '0','type_name' => '不限'));
-
- $json['code'] = '0';
- $json['info'] = '获取票种配置成功';
- $json['start_res'] = $start_res;
- $json['seat_type'] = $seat_type;
- $json['human_type'] = $human_type;
- return $json;
- }
-
- /**
- * Function Description:根据起始站获得终点站名称
- * Function Name: getTicketEndStation
- * @param $line_id
- * @param $start_res_id
- *
- * @return mixed
- *
- * @author 冒炎
- */
- public function getTicketEndStation($line_id,$start_res_id){
- $where = ['and',
- ['=','a.line_id',$line_id],
- ['=','cancel_flag',0],
- ['in','a.inout_type',[109,110]],
- ['!=','a.res_id',$start_res_id]
- ];
- $select = [
- 'a.res_id',
- 'a.order_id',
- 'res_name'=>"(SELECT res_name FROM base_resource WHERE res_id = a.res_id limit 1)",
- ];
- $end_res = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->where($where)
- ->andWhere("a.order_id > (SELECT order_id FROM opera_station WHERE line_id = a.line_id AND res_id = " . $start_res_id . " AND cancel_flag = 0 LIMIT 1)")
- ->groupBy('a.res_id')
- ->asArray()
- ->all();
- $json['code'] = '0';
- $json['info'] = '获取下车站点成功';
- $json['end_res'] = $end_res;
- return $json;
-
- }
- }
|