Commit c72a260e899b89b9bae4a5942e5bdb6b113802cd

Authored by 潘钊
1 parent 35b37b97

update...

src/main/java/com/bsth/data/pilot80/PilotReport.java
... ... @@ -156,7 +156,7 @@ public class PilotReport {
156 156 if (d80.getConfirmRs() == 0) {
157 157 String nbbm = BasicData.deviceId2NbbmMap.get(d80.getDeviceId());
158 158  
159   - ScheduleRealInfo sch = dayOfSchedule.nextByBcType(nbbm, "out");
  159 + ScheduleRealInfo sch = dayOfSchedule.searchNearByBcType(nbbm, "out");
160 160 if (null == sch)
161 161 return;
162 162  
... ...
src/main/resources/static/real_control_v2/js/main.js
... ... @@ -47,7 +47,7 @@ var gb_main_ep = new EventProxy(),
47 47 $('li.map-panel', '#main-tab-content').load('/real_control_v2/mapmonitor/real.html');
48 48 }, 1000);
49 49 //弹出更新说明
50   - //showUpdateDescription();
  50 + showUpdateDescription();
51 51 });
52 52  
53 53 function g_emit(id) {
... ... @@ -168,8 +168,8 @@ var disabled_submit_btn = function (form) {
168 168 function showUpdateDescription() {
169 169 //更新说明
170 170 var updateDescription = {
171   - date: '2017-09-24',
172   - text: '<h5>1、尝试解决 “祝桥2路” 和 “机场七线” 进站问题!</h5>'
  171 + date: '2017-09-28',
  172 + text: '<h5>1、修复了一个bug,该bug曾导致,出场时间设置为请求出场的线路,有几率早出场时间会误跳至分班班次!</h5>'
173 173 };
174 174  
175 175 var storage = window.localStorage
... ...