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.
 
 
 
 
 
 

164 lines
5.0 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use yii\db\ActiveRecord;
  4. /**
  5. * This is the model class for table "opera_station".
  6. *
  7. * @property integer $ID
  8. * @property integer $CREATE_USER_ID
  9. * @property string $CREATE_TIME
  10. * @property integer $UPDATE_USER_ID
  11. * @property string $UPDATE_TIME
  12. * @property integer $CANCEL_FLAG
  13. * @property integer $LINE_ID
  14. * @property integer $ORDER_ID
  15. * @property integer $START_MINUTES
  16. * @property integer $RES_ID
  17. * @property integer $CHECKPORT_RES_ID
  18. * @property integer $INOUT_TYPE
  19. * @property integer $AREA_ID
  20. * @property double $DISTANCE
  21. */
  22. class OperaStation extends ActiveRecord
  23. {
  24. /**
  25. * @inheritdoc
  26. */
  27. public static function tableName()
  28. {
  29. return 'opera_station';
  30. }
  31. /**
  32. * @inheritdoc
  33. */
  34. public function rules()
  35. {
  36. return [
  37. [['CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'LINE_ID', 'ORDER_ID', 'START_MINUTES', 'RES_ID', 'CHECKPORT_RES_ID', 'INOUT_TYPE', 'AREA_ID'], 'integer'],
  38. [['CREATE_TIME'], 'required'],
  39. [['UPDATE_TIME'], 'safe'],
  40. [['DISTANCE'], 'number'],
  41. [['CREATE_TIME'], 'string', 'max' => 20],
  42. ];
  43. }
  44. /**
  45. * @inheritdoc
  46. */
  47. public function attributeLabels()
  48. {
  49. return [
  50. 'ID' => 'ID',
  51. 'CREATE_USER_ID' => '记录创建用户ID',
  52. 'CREATE_TIME' => '记录创建时间',
  53. 'UPDATE_USER_ID' => '记录最后更新用户ID',
  54. 'UPDATE_TIME' => '记录最后更新时间',
  55. 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
  56. 'LINE_ID' => '线路ID',
  57. 'ORDER_ID' => '场站停靠顺序ID,从1开始,非0',
  58. 'START_MINUTES' => '场站发车时间至始发日0点的分钟数',
  59. 'RES_ID' => '资源ID,BASE_RESOURCE.RES_ID,如普通座、贵宾座等。还缺少站点相关资源',
  60. 'CHECKPORT_RES_ID' => '检票口资源ID,BASE_RESOURCE.RES_ID,可为0,非必选',
  61. 'INOUT_TYPE' => '上下车属性ID,DICT_TYPE.ID,108上,109上下,110下。非0,必选',
  62. 'AREA_ID' => '应用POI,BASE_AREA.ID',
  63. 'DISTANCE' => '距离',
  64. ];
  65. }
  66. /**
  67. * Function Description:获取票种配置信息
  68. * Function Name: getTicketBase
  69. * @param $line_id
  70. *
  71. * @return mixed
  72. *
  73. * @author 冒炎
  74. */
  75. public function getTicketBase($line_id){
  76. $where = ['and',['=','a.line_id',$line_id],['=','cancel_flag',0],['in','a.inout_type',[108,109]]];
  77. $select = [
  78. 'a.res_id',
  79. 'a.order_id',
  80. 'res_name'=>"(SELECT res_name FROM base_resource WHERE res_id = a.res_id limit 1)",
  81. ];
  82. $start_res = self::find()
  83. ->select($select)
  84. ->from(self::tableName() . ' a')
  85. ->where($where)
  86. ->groupBy('a.res_id')
  87. ->asArray()
  88. ->all();
  89. //获取座位类型
  90. $base_seat = array(72);
  91. $sql = "SELECT
  92. id,
  93. type_name
  94. FROM
  95. dict_type
  96. WHERE
  97. parent_id = 71";
  98. $seat_type_result = \Yii::$app->db->createCommand($sql)->queryAll();
  99. $seat_type = array();
  100. foreach($seat_type_result as $k => $v)
  101. {
  102. if(in_array($v['id'],$base_seat))
  103. {
  104. $seat_type[] = $v;
  105. }
  106. }
  107. //获取人群属性
  108. $human_type = array(array('id' => '0','type_name' => '不限'));
  109. $json['code'] = '0';
  110. $json['info'] = '获取票种配置成功';
  111. $json['start_res'] = $start_res;
  112. $json['seat_type'] = $seat_type;
  113. $json['human_type'] = $human_type;
  114. return $json;
  115. }
  116. /**
  117. * Function Description:根据起始站获得终点站名称
  118. * Function Name: getTicketEndStation
  119. * @param $line_id
  120. * @param $start_res_id
  121. *
  122. * @return mixed
  123. *
  124. * @author 冒炎
  125. */
  126. public function getTicketEndStation($line_id,$start_res_id){
  127. $where = ['and',
  128. ['=','a.line_id',$line_id],
  129. ['=','cancel_flag',0],
  130. ['in','a.inout_type',[109,110]],
  131. ['!=','a.res_id',$start_res_id]
  132. ];
  133. $select = [
  134. 'a.res_id',
  135. 'a.order_id',
  136. 'res_name'=>"(SELECT res_name FROM base_resource WHERE res_id = a.res_id limit 1)",
  137. ];
  138. $end_res = self::find()
  139. ->select($select)
  140. ->from(self::tableName() . ' a')
  141. ->where($where)
  142. ->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)")
  143. ->groupBy('a.res_id')
  144. ->asArray()
  145. ->all();
  146. $json['code'] = '0';
  147. $json['info'] = '获取下车站点成功';
  148. $json['end_res'] = $end_res;
  149. return $json;
  150. }
  151. }