Commit 853ef011c7e6ed5aab41f38469d91982c1a77f2c
1 parent
5d90b218
update...
Showing
8 changed files
with
451 additions
and
4 deletions
src/main/java/com/bsth/data/schedule/edit_logs/entity/SchEditInfo.java
| ... | ... | @@ -165,7 +165,13 @@ public class SchEditInfo { |
| 165 | 165 | long t = System.currentTimeMillis(); |
| 166 | 166 | sei.setTs(t); |
| 167 | 167 | sei.setTimeStr(fmtHHmm.print(t)); |
| 168 | - sei.setUser(userId); | |
| 168 | + if(null != userId) | |
| 169 | + sei.setUser(userId); | |
| 170 | + else{ | |
| 171 | + SysUser user = SecurityUtils.getCurrentUser(); | |
| 172 | + if(user != null) | |
| 173 | + sei.setUser(user.getUserName()); | |
| 174 | + } | |
| 169 | 175 | sei.setRq(sch.getScheduleDateStr()); |
| 170 | 176 | sei.setSchId(sch.getId()); |
| 171 | 177 | sei.setLineCode(sch.getXlBm()); | ... | ... |
src/main/java/com/bsth/data/schedule/taopao/TaoPaoDataBuffer.java
0 → 100644
| 1 | +package com.bsth.data.schedule.taopao; | |
| 2 | + | |
| 3 | +import com.bsth.data.schedule.DayOfSchedule; | |
| 4 | +import com.bsth.data.schedule.taopao.entity.CLTaoPaoInfo; | |
| 5 | +import com.google.common.collect.ArrayListMultimap; | |
| 6 | +import org.springframework.beans.factory.annotation.Autowired; | |
| 7 | +import org.springframework.stereotype.Component; | |
| 8 | + | |
| 9 | +/** | |
| 10 | + * 实际班次套跑信息 | |
| 11 | + */ | |
| 12 | +@Component | |
| 13 | +public class TaoPaoDataBuffer { | |
| 14 | + | |
| 15 | + /** | |
| 16 | + * 线路编码 ——> 套跑信息 | |
| 17 | + */ | |
| 18 | + private static ArrayListMultimap<String, CLTaoPaoInfo> multimap; | |
| 19 | + | |
| 20 | + static { | |
| 21 | + multimap = ArrayListMultimap.create(); | |
| 22 | + } | |
| 23 | + | |
| 24 | + @Autowired | |
| 25 | + DayOfSchedule dayOfSchedule; | |
| 26 | +} | ... | ... |
src/main/java/com/bsth/data/schedule/taopao/entity/CLTaoPaoInfo.java
0 → 100644
| 1 | +package com.bsth.data.schedule.taopao.entity; | |
| 2 | + | |
| 3 | +/** | |
| 4 | + * 车辆套跑 信息 | |
| 5 | + */ | |
| 6 | +public class CLTaoPaoInfo { | |
| 7 | + | |
| 8 | + private String lineCode; | |
| 9 | + | |
| 10 | + private String nbbm; | |
| 11 | + | |
| 12 | + /** | |
| 13 | + * 班次ID , 号分割多个 | |
| 14 | + */ | |
| 15 | + private String schIdx; | |
| 16 | + | |
| 17 | + public String getLineCode() { | |
| 18 | + return lineCode; | |
| 19 | + } | |
| 20 | + | |
| 21 | + public void setLineCode(String lineCode) { | |
| 22 | + this.lineCode = lineCode; | |
| 23 | + } | |
| 24 | + | |
| 25 | + public String getNbbm() { | |
| 26 | + return nbbm; | |
| 27 | + } | |
| 28 | + | |
| 29 | + public void setNbbm(String nbbm) { | |
| 30 | + this.nbbm = nbbm; | |
| 31 | + } | |
| 32 | + | |
| 33 | + public String getSchIdx() { | |
| 34 | + return schIdx; | |
| 35 | + } | |
| 36 | + | |
| 37 | + public void setSchIdx(String schIdx) { | |
| 38 | + this.schIdx = schIdx; | |
| 39 | + } | |
| 40 | +} | ... | ... |
src/main/java/com/bsth/data/schedule/taopao/entity/TPCutRealSchedule.java
0 → 100644
| 1 | +package com.bsth.data.schedule.taopao.entity; | |
| 2 | + | |
| 3 | +import javax.persistence.Transient; | |
| 4 | + | |
| 5 | +/** | |
| 6 | + * 精简的班次信息(展示套跑信息用) | |
| 7 | + */ | |
| 8 | +public class TPCutRealSchedule { | |
| 9 | + | |
| 10 | + /** 主键Id */ | |
| 11 | + private Long id; | |
| 12 | + | |
| 13 | + /** 排班日期字符串 YYYY-MM-DD */ | |
| 14 | + private String scheduleDateStr; | |
| 15 | + | |
| 16 | + /** 路牌名称 */ | |
| 17 | + private String lpName; | |
| 18 | + | |
| 19 | + /** 车辆自编号 */ | |
| 20 | + private String clZbh; | |
| 21 | + | |
| 22 | + /** 驾驶员工号 */ | |
| 23 | + private String jGh; | |
| 24 | + /** 驾驶员名字 */ | |
| 25 | + private String jName; | |
| 26 | + /** 售票员工号 */ | |
| 27 | + private String sGh; | |
| 28 | + /** 售票员名字 */ | |
| 29 | + private String sName; | |
| 30 | + | |
| 31 | + /** 线路方向 */ | |
| 32 | + private String xlDir; | |
| 33 | + /** 起点站名字 */ | |
| 34 | + private String qdzName; | |
| 35 | + | |
| 36 | + /** 终点站名字 */ | |
| 37 | + private String zdzName; | |
| 38 | + | |
| 39 | + /** 计划发车时间(格式 HH:mm) */ | |
| 40 | + private String fcsj; | |
| 41 | + /** 计划发车时间戳*/ | |
| 42 | + @Transient | |
| 43 | + private Long fcsjT; | |
| 44 | + | |
| 45 | + /** 计划终点时间(格式 HH:mm) */ | |
| 46 | + private String zdsj; | |
| 47 | + /** 计划终点时间戳*/ | |
| 48 | + @Transient | |
| 49 | + private Long zdsjT; | |
| 50 | + | |
| 51 | + /** 计划里程 */ | |
| 52 | + private Double jhlc; | |
| 53 | + | |
| 54 | + /** 班次历时 */ | |
| 55 | + private Integer bcsj; | |
| 56 | + | |
| 57 | + /** | |
| 58 | + * 班次类型 TODO:正常班次、出场、进场、加油、区间班次、放空班次、放大站班次、两点间空驶 | |
| 59 | + */ | |
| 60 | + private String bcType; | |
| 61 | + | |
| 62 | + //放站班次 站点名称 | |
| 63 | + private String majorStationName; | |
| 64 | + | |
| 65 | + /** 实际发车时间*/ | |
| 66 | + private String fcsjActual; | |
| 67 | + /**实际终点时间 */ | |
| 68 | + private String zdsjActual; | |
| 69 | + | |
| 70 | + /**班次状态 0 未执行 1 正在执行 2 已执行 -1 已烂班 */ | |
| 71 | + private int status; | |
| 72 | + | |
| 73 | + private String adjustExps; | |
| 74 | + | |
| 75 | + /** 是否是临加班次 */ | |
| 76 | + private boolean sflj; | |
| 77 | + | |
| 78 | + /** 备注*/ | |
| 79 | + private String remarks; | |
| 80 | + | |
| 81 | + /**待发时间(格式 HH:mm) */ | |
| 82 | + private String dfsj; | |
| 83 | + | |
| 84 | + /**待发时间戳 */ | |
| 85 | + @Transient | |
| 86 | + private Long dfsjT; | |
| 87 | + | |
| 88 | + /** 指令下发状态 60: 已发送, 100: 设备确认收到, 200:驾驶员确认 0:失败 */ | |
| 89 | + private Integer directiveState = -1; | |
| 90 | + | |
| 91 | + /** 起点站计划到达时间 */ | |
| 92 | + @Transient | |
| 93 | + private String qdzArrDatejh; | |
| 94 | + | |
| 95 | + /** 起点站实际到达时间 */ | |
| 96 | + @Transient | |
| 97 | + private String qdzArrDatesj; | |
| 98 | + | |
| 99 | + public Long getId() { | |
| 100 | + return id; | |
| 101 | + } | |
| 102 | + | |
| 103 | + public void setId(Long id) { | |
| 104 | + this.id = id; | |
| 105 | + } | |
| 106 | + | |
| 107 | + public String getScheduleDateStr() { | |
| 108 | + return scheduleDateStr; | |
| 109 | + } | |
| 110 | + | |
| 111 | + public void setScheduleDateStr(String scheduleDateStr) { | |
| 112 | + this.scheduleDateStr = scheduleDateStr; | |
| 113 | + } | |
| 114 | + | |
| 115 | + public String getLpName() { | |
| 116 | + return lpName; | |
| 117 | + } | |
| 118 | + | |
| 119 | + public void setLpName(String lpName) { | |
| 120 | + this.lpName = lpName; | |
| 121 | + } | |
| 122 | + | |
| 123 | + public String getClZbh() { | |
| 124 | + return clZbh; | |
| 125 | + } | |
| 126 | + | |
| 127 | + public void setClZbh(String clZbh) { | |
| 128 | + this.clZbh = clZbh; | |
| 129 | + } | |
| 130 | + | |
| 131 | + public String getjGh() { | |
| 132 | + return jGh; | |
| 133 | + } | |
| 134 | + | |
| 135 | + public void setjGh(String jGh) { | |
| 136 | + this.jGh = jGh; | |
| 137 | + } | |
| 138 | + | |
| 139 | + public String getjName() { | |
| 140 | + return jName; | |
| 141 | + } | |
| 142 | + | |
| 143 | + public void setjName(String jName) { | |
| 144 | + this.jName = jName; | |
| 145 | + } | |
| 146 | + | |
| 147 | + public String getsGh() { | |
| 148 | + return sGh; | |
| 149 | + } | |
| 150 | + | |
| 151 | + public void setsGh(String sGh) { | |
| 152 | + this.sGh = sGh; | |
| 153 | + } | |
| 154 | + | |
| 155 | + public String getsName() { | |
| 156 | + return sName; | |
| 157 | + } | |
| 158 | + | |
| 159 | + public void setsName(String sName) { | |
| 160 | + this.sName = sName; | |
| 161 | + } | |
| 162 | + | |
| 163 | + public String getXlDir() { | |
| 164 | + return xlDir; | |
| 165 | + } | |
| 166 | + | |
| 167 | + public void setXlDir(String xlDir) { | |
| 168 | + this.xlDir = xlDir; | |
| 169 | + } | |
| 170 | + | |
| 171 | + public String getQdzName() { | |
| 172 | + return qdzName; | |
| 173 | + } | |
| 174 | + | |
| 175 | + public void setQdzName(String qdzName) { | |
| 176 | + this.qdzName = qdzName; | |
| 177 | + } | |
| 178 | + | |
| 179 | + public String getZdzName() { | |
| 180 | + return zdzName; | |
| 181 | + } | |
| 182 | + | |
| 183 | + public void setZdzName(String zdzName) { | |
| 184 | + this.zdzName = zdzName; | |
| 185 | + } | |
| 186 | + | |
| 187 | + public String getFcsj() { | |
| 188 | + return fcsj; | |
| 189 | + } | |
| 190 | + | |
| 191 | + public void setFcsj(String fcsj) { | |
| 192 | + this.fcsj = fcsj; | |
| 193 | + } | |
| 194 | + | |
| 195 | + public Long getFcsjT() { | |
| 196 | + return fcsjT; | |
| 197 | + } | |
| 198 | + | |
| 199 | + public void setFcsjT(Long fcsjT) { | |
| 200 | + this.fcsjT = fcsjT; | |
| 201 | + } | |
| 202 | + | |
| 203 | + public String getZdsj() { | |
| 204 | + return zdsj; | |
| 205 | + } | |
| 206 | + | |
| 207 | + public void setZdsj(String zdsj) { | |
| 208 | + this.zdsj = zdsj; | |
| 209 | + } | |
| 210 | + | |
| 211 | + public Long getZdsjT() { | |
| 212 | + return zdsjT; | |
| 213 | + } | |
| 214 | + | |
| 215 | + public void setZdsjT(Long zdsjT) { | |
| 216 | + this.zdsjT = zdsjT; | |
| 217 | + } | |
| 218 | + | |
| 219 | + public Double getJhlc() { | |
| 220 | + return jhlc; | |
| 221 | + } | |
| 222 | + | |
| 223 | + public void setJhlc(Double jhlc) { | |
| 224 | + this.jhlc = jhlc; | |
| 225 | + } | |
| 226 | + | |
| 227 | + public Integer getBcsj() { | |
| 228 | + return bcsj; | |
| 229 | + } | |
| 230 | + | |
| 231 | + public void setBcsj(Integer bcsj) { | |
| 232 | + this.bcsj = bcsj; | |
| 233 | + } | |
| 234 | + | |
| 235 | + public String getBcType() { | |
| 236 | + return bcType; | |
| 237 | + } | |
| 238 | + | |
| 239 | + public void setBcType(String bcType) { | |
| 240 | + this.bcType = bcType; | |
| 241 | + } | |
| 242 | + | |
| 243 | + public String getMajorStationName() { | |
| 244 | + return majorStationName; | |
| 245 | + } | |
| 246 | + | |
| 247 | + public void setMajorStationName(String majorStationName) { | |
| 248 | + this.majorStationName = majorStationName; | |
| 249 | + } | |
| 250 | + | |
| 251 | + public String getFcsjActual() { | |
| 252 | + return fcsjActual; | |
| 253 | + } | |
| 254 | + | |
| 255 | + public void setFcsjActual(String fcsjActual) { | |
| 256 | + this.fcsjActual = fcsjActual; | |
| 257 | + } | |
| 258 | + | |
| 259 | + public String getZdsjActual() { | |
| 260 | + return zdsjActual; | |
| 261 | + } | |
| 262 | + | |
| 263 | + public void setZdsjActual(String zdsjActual) { | |
| 264 | + this.zdsjActual = zdsjActual; | |
| 265 | + } | |
| 266 | + | |
| 267 | + public int getStatus() { | |
| 268 | + return status; | |
| 269 | + } | |
| 270 | + | |
| 271 | + public void setStatus(int status) { | |
| 272 | + this.status = status; | |
| 273 | + } | |
| 274 | + | |
| 275 | + public String getAdjustExps() { | |
| 276 | + return adjustExps; | |
| 277 | + } | |
| 278 | + | |
| 279 | + public void setAdjustExps(String adjustExps) { | |
| 280 | + this.adjustExps = adjustExps; | |
| 281 | + } | |
| 282 | + | |
| 283 | + public boolean isSflj() { | |
| 284 | + return sflj; | |
| 285 | + } | |
| 286 | + | |
| 287 | + public void setSflj(boolean sflj) { | |
| 288 | + this.sflj = sflj; | |
| 289 | + } | |
| 290 | + | |
| 291 | + public String getRemarks() { | |
| 292 | + return remarks; | |
| 293 | + } | |
| 294 | + | |
| 295 | + public void setRemarks(String remarks) { | |
| 296 | + this.remarks = remarks; | |
| 297 | + } | |
| 298 | + | |
| 299 | + public String getDfsj() { | |
| 300 | + return dfsj; | |
| 301 | + } | |
| 302 | + | |
| 303 | + public void setDfsj(String dfsj) { | |
| 304 | + this.dfsj = dfsj; | |
| 305 | + } | |
| 306 | + | |
| 307 | + public Long getDfsjT() { | |
| 308 | + return dfsjT; | |
| 309 | + } | |
| 310 | + | |
| 311 | + public void setDfsjT(Long dfsjT) { | |
| 312 | + this.dfsjT = dfsjT; | |
| 313 | + } | |
| 314 | + | |
| 315 | + public Integer getDirectiveState() { | |
| 316 | + return directiveState; | |
| 317 | + } | |
| 318 | + | |
| 319 | + public void setDirectiveState(Integer directiveState) { | |
| 320 | + this.directiveState = directiveState; | |
| 321 | + } | |
| 322 | + | |
| 323 | + public String getQdzArrDatejh() { | |
| 324 | + return qdzArrDatejh; | |
| 325 | + } | |
| 326 | + | |
| 327 | + public void setQdzArrDatejh(String qdzArrDatejh) { | |
| 328 | + this.qdzArrDatejh = qdzArrDatejh; | |
| 329 | + } | |
| 330 | + | |
| 331 | + public String getQdzArrDatesj() { | |
| 332 | + return qdzArrDatesj; | |
| 333 | + } | |
| 334 | + | |
| 335 | + public void setQdzArrDatesj(String qdzArrDatesj) { | |
| 336 | + this.qdzArrDatesj = qdzArrDatesj; | |
| 337 | + } | |
| 338 | +} | ... | ... |
src/main/resources/static/real_control_v2/css/main.css
src/main/resources/static/real_control_v2/fragments/line_schedule/sch_table.html
| ... | ... | @@ -24,6 +24,8 @@ |
| 24 | 24 | </div> |
| 25 | 25 | </div> |
| 26 | 26 | <i class="uk-icon-eye uk-icon-hover ct_eye_icon"></i> |
| 27 | + <!--<i class="uk-icon-share-alt uk-icon-hover tp_info_icon" ></i>--> | |
| 28 | + | |
| 27 | 29 | <span class="warn_multi_station" data-updown="{{dir}}" data-code="{{line.lineCode}}"></span> |
| 28 | 30 | <div class="search_sch_panel"> |
| 29 | 31 | <form class="uk-form" onsubmit="javascript:return false;"> | ... | ... |
src/main/resources/static/real_control_v2/js/line_schedule/layout.js
| ... | ... | @@ -64,8 +64,6 @@ var gb_line_layout = (function() { |
| 64 | 64 | var lineCode = $(this).data('code') |
| 65 | 65 | ,updown = $(this).data('updown') |
| 66 | 66 | ,list = gb_schedule_table.findSCodeErrorInfo(lineCode, updown); |
| 67 | - //console.log('this', this); | |
| 68 | - //var data = gb_schedule_table.findSCodeErrorInfo(); | |
| 69 | 67 | return temps['sch-table-m_station_error-temp']({list: list}); |
| 70 | 68 | } |
| 71 | 69 | }, |
| ... | ... | @@ -90,6 +88,38 @@ var gb_line_layout = (function() { |
| 90 | 88 | }); |
| 91 | 89 | }); |
| 92 | 90 | |
| 91 | + | |
| 92 | + $(document).on('mouseenter', '.schedule-wrap .header-title i.tp_info_icon', function() { | |
| 93 | + $(this).qtip({ | |
| 94 | + show: { | |
| 95 | + ready: true, | |
| 96 | + delay: 200 | |
| 97 | + }, | |
| 98 | + content: { | |
| 99 | + text: '点击展开车辆套跑信息' | |
| 100 | + }, | |
| 101 | + position: { | |
| 102 | + viewport: $(window), | |
| 103 | + my: 'bottom center', | |
| 104 | + at: 'top center' | |
| 105 | + }, | |
| 106 | + style: { | |
| 107 | + classes: 'qtip-rounded qtip-shadow ' | |
| 108 | + }, | |
| 109 | + hide: { | |
| 110 | + fixed: true, | |
| 111 | + delay: 300 | |
| 112 | + }, | |
| 113 | + events: { | |
| 114 | + hidden: function(event, api) { | |
| 115 | + //destroy dom | |
| 116 | + $(this).qtip('destroy', true); | |
| 117 | + } | |
| 118 | + } | |
| 119 | + }); | |
| 120 | + }); | |
| 121 | + | |
| 122 | + | |
| 93 | 123 | return { |
| 94 | 124 | layout: layout |
| 95 | 125 | }; | ... | ... |
src/main/resources/static/real_control_v2/js/line_schedule/sch_table.js
| ... | ... | @@ -837,7 +837,7 @@ var gb_schedule_table = (function () { |
| 837 | 837 | continue; |
| 838 | 838 | |
| 839 | 839 | $(".schedule-wrap span.warn_multi_station[data-updown="+(k.split('_')[1])+"]", wrap) |
| 840 | - .html('班次站点编码与实际不符!!!').show(); | |
| 840 | + .html('o(* ̄▽ ̄*)o 班次站点编码有点问题!!').show(); | |
| 841 | 841 | } |
| 842 | 842 | |
| 843 | 843 | errorCodeData = data; | ... | ... |