Commit 7df1f744ca3c3818d940808b2d3a061517b212f0
1 parent
56780f35
1.发往车载的调度指令中 “应到”改为“计划到达时间”
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/service/directive/DirectiveServiceImpl.java
| ... | ... | @@ -115,7 +115,7 @@ public class DirectiveServiceImpl extends BaseServiceImpl<D60, Integer> implemen |
| 115 | 115 | //待发应到时间 |
| 116 | 116 | String dfsj = fmtHHmm.print(sch.getDfsjT() + (sch.getBcsj() * 60 * 1000)); |
| 117 | 117 | String text = "您已完成" + finish + "个班次,下一发车时间" + fmtHHmm_CN.print(sch.getDfsjT()) + ",由" |
| 118 | - + sch.getQdzName() + "发往" + sch.getZdzName() + ";应到 " + dfsj; | |
| 118 | + + sch.getQdzName() + "发往" + sch.getZdzName() + ";计划到达时间 " + dfsj; | |
| 119 | 119 | |
| 120 | 120 | if(sch.getBcType().equals("venting")){ |
| 121 | 121 | text += " (直放)"; | ... | ... |