Commit f76872cc43cb5c741e661ee6201d77b89103f8f3
1 parent
3f48d99b
LGF 报表
Showing
1 changed file
with
4 additions
and
0 deletions
src/main/java/com/bsth/service/schedule/PeopleCarPlanServiceImpl.java
| ... | ... | @@ -443,6 +443,10 @@ public class PeopleCarPlanServiceImpl implements PeopleCarPlanService { |
| 443 | 443 | for(ScheduleRealInfo schedule : keyMap.get(key)){ |
| 444 | 444 | tempMap.put("date", schedule.getScheduleDateStr()); |
| 445 | 445 | tempMap.put("bcsj", schedule.getBcsj()); |
| 446 | + if(schedule.getFcsjActual() != null){ | |
| 447 | + String[] fcsj_ = schedule.getFcsjActual().split(":"); | |
| 448 | + tempMap.put("fcsj_", (Integer.valueOf(fcsj_[0]) * 60) + Integer.valueOf(fcsj_[1])); | |
| 449 | + } | |
| 446 | 450 | jhbc++; |
| 447 | 451 | if(schedule.getZdsjActual() != null && schedule.getFcsjActual() != null){ |
| 448 | 452 | sjbc++; | ... | ... |