Commit aebb67f4f1714df75bcbfe269e84fa04e534607b
1 parent
69aab057
update...
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/data/pilot80/PilotReport.java
| ... | ... | @@ -90,7 +90,7 @@ public class PilotReport { |
| 90 | 90 | case 0xA3: |
| 91 | 91 | ScheduleRealInfo outSch = dayOfSchedule.searchNearByBcType(nbbm, "out"); |
| 92 | 92 | //如果有对应出场班次 |
| 93 | - if (outSch != null) { | |
| 93 | + if (outSch != null && StringUtils.isEmpty(outSch.getFcsjActual())) { | |
| 94 | 94 | //没有计划里程的出场班次,出场既是首发站,发送下一班次的调度指令 |
| 95 | 95 | if (outSch.getJhlc() == null) |
| 96 | 96 | outSch = dayOfSchedule.next(outSch); | ... | ... |