Commit f76872cc43cb5c741e661ee6201d77b89103f8f3

Authored by 娄高锋
1 parent 3f48d99b

LGF 报表

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++;
... ...