|
|
@ -83,7 +83,7 @@ public class DcTrafficSurveyDataServiceImpl implements IDcTrafficSurveyDataServi |
|
|
|
//单个设备济南方向数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
row.put("direction","1"); |
|
|
|
row.put("direction","3"); |
|
|
|
|
|
|
|
//单个设备合计数据
|
|
|
|
Map<String,Object> totalRow = new HashMap<>(); |
|
|
@ -94,10 +94,10 @@ public class DcTrafficSurveyDataServiceImpl implements IDcTrafficSurveyDataServi |
|
|
|
totalRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
if (directionData.containsKey("1")){ |
|
|
|
if (directionData.containsKey("3")){ |
|
|
|
Integer total = 0; |
|
|
|
//单个设备济南方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("1"); |
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("3"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
@ -121,11 +121,11 @@ public class DcTrafficSurveyDataServiceImpl implements IDcTrafficSurveyDataServi |
|
|
|
//单个设备菏泽方向数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
row.put("direction","3"); |
|
|
|
if (directionData.containsKey("3")){ |
|
|
|
row.put("direction","1"); |
|
|
|
if (directionData.containsKey("1")){ |
|
|
|
Integer total = 0; |
|
|
|
//单个设备菏泽方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("3"); |
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("1"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
@ -185,6 +185,545 @@ public class DcTrafficSurveyDataServiceImpl implements IDcTrafficSurveyDataServi |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询一类交调数据列表 |
|
|
|
* |
|
|
|
* @param dcTrafficSurveyData 一类交调数据 |
|
|
|
* @return 一类交调数据 |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public AjaxResult selectDcTrafficSurveyDataListNew(DcTrafficSurveyData dcTrafficSurveyData) |
|
|
|
{ |
|
|
|
List<Map<String,Object>> rowList = new ArrayList<>(); |
|
|
|
List<Map<String,String>> columnList = getColumnList(dcTrafficSurveyData); |
|
|
|
List<DcTrafficSurveyData> dataList = new ArrayList<>(); |
|
|
|
if (dcTrafficSurveyData.getType().equals("day")){ |
|
|
|
dataList = dcTrafficSurveyDataMapper.selectDay(dcTrafficSurveyData); |
|
|
|
} else if (dcTrafficSurveyData.getType().equals("month")){ |
|
|
|
dataList = dcTrafficSurveyDataMapper.selectMonth(dcTrafficSurveyData); |
|
|
|
} else if (dcTrafficSurveyData.getType().equals("year")){ |
|
|
|
dataList = dcTrafficSurveyDataMapper.selectYear(dcTrafficSurveyData); |
|
|
|
} else if (dcTrafficSurveyData.getType().equals("range")){ |
|
|
|
dataList = dcTrafficSurveyDataMapper.selectRange(dcTrafficSurveyData); |
|
|
|
} |
|
|
|
Map<String,Map<String, Map<String, List<DcTrafficSurveyData>>>> groupedData = dataList.stream() |
|
|
|
.collect(Collectors.groupingBy( |
|
|
|
DcTrafficSurveyData::getIotDeviceId, // 第一级分组:按设备Id
|
|
|
|
Collectors.groupingBy(DcTrafficSurveyData::getDirection, // 第二级分组:按方向
|
|
|
|
Collectors.groupingBy(DcTrafficSurveyData::getTimes) // 第三级分组:按时间
|
|
|
|
))); |
|
|
|
List<DcDevice> deviceList = dcTrafficSurveyDataMapper.selectDeviceList(); |
|
|
|
|
|
|
|
Map<String,Object> row = new HashMap<>(); |
|
|
|
for (DcDevice dcDevice : deviceList) { |
|
|
|
if (groupedData.containsKey(dcDevice.getIotDeviceId())){ |
|
|
|
|
|
|
|
Map<String,Map<String, List<DcTrafficSurveyData>>> directionData = groupedData.get(dcDevice.getIotDeviceId()); |
|
|
|
|
|
|
|
if (dcTrafficSurveyData.getRowType().equals("1")){ |
|
|
|
//单个设备济南方向数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
row.put("direction","济南"); |
|
|
|
|
|
|
|
//单个设备客车数据
|
|
|
|
Map<String,Object> busRow = new HashMap<>(); |
|
|
|
busRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
busRow.put("direction","客车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
busRow.put(columnMap.get("key"),0); |
|
|
|
busRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
//单个设备货车数据
|
|
|
|
Map<String,Object> goodsCarRow = new HashMap<>(); |
|
|
|
goodsCarRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
goodsCarRow.put("direction","货车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
goodsCarRow.put(columnMap.get("key"),0); |
|
|
|
goodsCarRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
//单个设备合计数据
|
|
|
|
Map<String,Object> totalRow = new HashMap<>(); |
|
|
|
totalRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
totalRow.put("direction","合计"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
totalRow.put(columnMap.get("key"),0); |
|
|
|
totalRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
if (directionData.containsKey("3")){ |
|
|
|
Integer bus = 0; |
|
|
|
Integer goodsCar = 0; |
|
|
|
Integer total = 0; |
|
|
|
//单个设备济南方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("3"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
|
row.put(columnMap.get("key"),timeList.get(0).getTrafficVolume()); |
|
|
|
busRow.put(columnMap.get("key"),timeList.get(0).getBus()); |
|
|
|
goodsCarRow.put(columnMap.get("key"),timeList.get(0).getGoodsCar()); |
|
|
|
totalRow.put(columnMap.get("key"),timeList.get(0).getTrafficVolume()); |
|
|
|
bus += timeList.get(0).getBus(); |
|
|
|
goodsCar += timeList.get(0).getGoodsCar(); |
|
|
|
total += timeList.get(0).getTrafficVolume().intValue(); |
|
|
|
} else { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
} |
|
|
|
} |
|
|
|
row.put("total",total); |
|
|
|
busRow.put("total",bus); |
|
|
|
goodsCarRow.put("total",goodsCar); |
|
|
|
totalRow.put("total",total); |
|
|
|
} else { |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
row.put("total",0); |
|
|
|
} |
|
|
|
} |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
//单个设备菏泽方向数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
row.put("direction","菏泽"); |
|
|
|
if (directionData.containsKey("1")){ |
|
|
|
Integer bus = 0; |
|
|
|
Integer goodsCar = 0; |
|
|
|
Integer total = 0; |
|
|
|
//单个设备菏泽方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("1"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
|
row.put(columnMap.get("key"),timeList.get(0).getTrafficVolume()); |
|
|
|
Long busRowData = Long.parseLong(busRow.get(columnMap.get("key")).toString()); |
|
|
|
busRow.put(columnMap.get("key"),busRowData + timeList.get(0).getBus()); |
|
|
|
Long goodsCarRowData = Long.parseLong(goodsCarRow.get(columnMap.get("key")).toString()); |
|
|
|
goodsCarRow.put(columnMap.get("key"),goodsCarRowData + timeList.get(0).getGoodsCar()); |
|
|
|
Long totalRowData = Long.parseLong(totalRow.get(columnMap.get("key")).toString()); |
|
|
|
totalRow.put(columnMap.get("key"),totalRowData + timeList.get(0).getTrafficVolume()); |
|
|
|
bus += timeList.get(0).getBus(); |
|
|
|
goodsCar += timeList.get(0).getGoodsCar(); |
|
|
|
total += timeList.get(0).getTrafficVolume().intValue(); |
|
|
|
} else { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
} |
|
|
|
} |
|
|
|
row.put("total",total); |
|
|
|
busRow.put("total",Integer.parseInt(busRow.get("total").toString()) + bus); |
|
|
|
goodsCarRow.put("total",Integer.parseInt(goodsCarRow.get("total").toString()) + goodsCar); |
|
|
|
totalRow.put("total",Integer.parseInt(totalRow.get("total").toString()) + total); |
|
|
|
} else { |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
row.put("total",0); |
|
|
|
} |
|
|
|
} |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
//客车
|
|
|
|
rowList.add(busRow); |
|
|
|
//客车占比
|
|
|
|
Map<String,Object> busRatioRow = new HashMap<>(); |
|
|
|
busRatioRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
busRatioRow.put("direction","客车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
Integer busTotal = Integer.valueOf(busRow.get(columnMap.get("key")).toString()); |
|
|
|
Integer total = Integer.valueOf(totalRow.get(columnMap.get("key")).toString()); |
|
|
|
if (total > 0){ |
|
|
|
busRatioRow.put(columnMap.get("key"),String.format("%.2f",(double) busTotal / total * 100) + "%"); |
|
|
|
} else { |
|
|
|
busRatioRow.put(columnMap.get("key"),"0.00%"); |
|
|
|
} |
|
|
|
} |
|
|
|
Integer allBusTotal = Integer.valueOf(busRow.get("total").toString()); |
|
|
|
Integer allTotal = Integer.valueOf(totalRow.get("total").toString()); |
|
|
|
if (allTotal > 0){ |
|
|
|
busRatioRow.put("total",String.format("%.2f",(double) allBusTotal / allTotal * 100) + "%"); |
|
|
|
} else { |
|
|
|
busRatioRow.put("total","0.00%"); |
|
|
|
} |
|
|
|
rowList.add(busRatioRow); |
|
|
|
|
|
|
|
//货车
|
|
|
|
rowList.add(goodsCarRow); |
|
|
|
//货车占比
|
|
|
|
Map<String,Object> goodsCarRatioRow = new HashMap<>(); |
|
|
|
goodsCarRatioRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
goodsCarRatioRow.put("direction","货车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
Integer goodsCarTotal = Integer.valueOf(goodsCarRow.get(columnMap.get("key")).toString()); |
|
|
|
Integer total = Integer.valueOf(totalRow.get(columnMap.get("key")).toString()); |
|
|
|
if (total > 0) { |
|
|
|
goodsCarRatioRow.put(columnMap.get("key"), String.format("%.2f", (double) goodsCarTotal / total * 100) + "%"); |
|
|
|
} else { |
|
|
|
goodsCarRatioRow.put(columnMap.get("key"),"0.00%"); |
|
|
|
} |
|
|
|
} |
|
|
|
Integer allGoodsCarTotal = Integer.valueOf(goodsCarRow.get("total").toString()); |
|
|
|
if (allTotal > 0){ |
|
|
|
goodsCarRatioRow.put("total",String.format("%.2f",(double) allGoodsCarTotal / allTotal * 100) + "%"); |
|
|
|
} else { |
|
|
|
goodsCarRatioRow.put("total","0.00%"); |
|
|
|
} |
|
|
|
rowList.add(goodsCarRatioRow); |
|
|
|
|
|
|
|
|
|
|
|
//最后加入合计
|
|
|
|
rowList.add(totalRow); |
|
|
|
} else if (dcTrafficSurveyData.getRowType().equals("2")){ |
|
|
|
//单个设备济南方向数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
row.put("direction","济南"); |
|
|
|
|
|
|
|
//单个设备合计数据
|
|
|
|
Map<String,Object> totalRow = new HashMap<>(); |
|
|
|
totalRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
totalRow.put("direction","合计"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
totalRow.put(columnMap.get("key"),0); |
|
|
|
totalRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
if (directionData.containsKey("3")){ |
|
|
|
Integer total = 0; |
|
|
|
//单个设备济南方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("3"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
|
row.put(columnMap.get("key"),timeList.get(0).getTrafficVolume()); |
|
|
|
totalRow.put(columnMap.get("key"),timeList.get(0).getTrafficVolume()); |
|
|
|
total += timeList.get(0).getTrafficVolume().intValue(); |
|
|
|
} else { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
} |
|
|
|
} |
|
|
|
row.put("total",total); |
|
|
|
totalRow.put("total",total); |
|
|
|
} else { |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
row.put("total",0); |
|
|
|
} |
|
|
|
} |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
//单个设备菏泽方向数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
row.put("direction","菏泽"); |
|
|
|
if (directionData.containsKey("1")){ |
|
|
|
Integer total = 0; |
|
|
|
//单个设备菏泽方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("1"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
|
row.put(columnMap.get("key"),timeList.get(0).getTrafficVolume()); |
|
|
|
Long totalRowData = Long.parseLong(totalRow.get(columnMap.get("key")).toString()); |
|
|
|
totalRow.put(columnMap.get("key"),totalRowData + timeList.get(0).getTrafficVolume()); |
|
|
|
total += timeList.get(0).getTrafficVolume().intValue(); |
|
|
|
} else { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
} |
|
|
|
} |
|
|
|
row.put("total",total); |
|
|
|
totalRow.put("total",Integer.parseInt(totalRow.get("total").toString()) + total); |
|
|
|
} else { |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"),0); |
|
|
|
row.put("total",0); |
|
|
|
} |
|
|
|
} |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
//最后加入合计
|
|
|
|
rowList.add(totalRow); |
|
|
|
} else { |
|
|
|
|
|
|
|
//单个设备客车数据
|
|
|
|
Map<String,Object> busRow = new HashMap<>(); |
|
|
|
busRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
busRow.put("direction","客车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
busRow.put(columnMap.get("key"),0); |
|
|
|
busRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
//单个设备货车数据
|
|
|
|
Map<String,Object> goodsCarRow = new HashMap<>(); |
|
|
|
goodsCarRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
goodsCarRow.put("direction","货车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
goodsCarRow.put(columnMap.get("key"),0); |
|
|
|
goodsCarRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
//单个设备合计数据
|
|
|
|
Map<String,Object> totalRow = new HashMap<>(); |
|
|
|
totalRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
totalRow.put("direction","合计"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
totalRow.put(columnMap.get("key"),0); |
|
|
|
totalRow.put("total",0); |
|
|
|
} |
|
|
|
|
|
|
|
if (directionData.containsKey("3")){ |
|
|
|
Integer bus = 0; |
|
|
|
Integer goodsCar = 0; |
|
|
|
Integer total = 0; |
|
|
|
//单个设备济南方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("3"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
|
busRow.put(columnMap.get("key"),timeList.get(0).getBus()); |
|
|
|
goodsCarRow.put(columnMap.get("key"),timeList.get(0).getGoodsCar()); |
|
|
|
totalRow.put(columnMap.get("key"),timeList.get(0).getTrafficVolume()); |
|
|
|
bus += timeList.get(0).getBus(); |
|
|
|
goodsCar += timeList.get(0).getGoodsCar(); |
|
|
|
total += timeList.get(0).getTrafficVolume().intValue(); |
|
|
|
} |
|
|
|
} |
|
|
|
busRow.put("total",bus); |
|
|
|
goodsCarRow.put("total",goodsCar); |
|
|
|
totalRow.put("total",total); |
|
|
|
} |
|
|
|
|
|
|
|
//单个设备菏泽方向数据
|
|
|
|
if (directionData.containsKey("1")){ |
|
|
|
Integer bus = 0; |
|
|
|
Integer goodsCar = 0; |
|
|
|
Integer total = 0; |
|
|
|
//单个设备菏泽方向分时数据
|
|
|
|
Map<String,List<DcTrafficSurveyData>> directionList = directionData.get("1"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
if (directionList.containsKey(columnMap.get("key"))){ |
|
|
|
List<DcTrafficSurveyData> timeList = directionList.get(columnMap.get("key")); |
|
|
|
Long busRowData = Long.parseLong(busRow.get(columnMap.get("key")).toString()); |
|
|
|
Long goodsCarRowData = Long.parseLong(goodsCarRow.get(columnMap.get("key")).toString()); |
|
|
|
Long totalRowData = Long.parseLong(totalRow.get(columnMap.get("key")).toString()); |
|
|
|
busRow.put(columnMap.get("key"),busRowData + timeList.get(0).getBus()); |
|
|
|
goodsCarRow.put(columnMap.get("key"),goodsCarRowData + timeList.get(0).getGoodsCar()); |
|
|
|
totalRow.put(columnMap.get("key"),totalRowData + timeList.get(0).getTrafficVolume()); |
|
|
|
bus += timeList.get(0).getBus(); |
|
|
|
goodsCar += timeList.get(0).getGoodsCar(); |
|
|
|
total += timeList.get(0).getTrafficVolume().intValue(); |
|
|
|
} |
|
|
|
} |
|
|
|
busRow.put("total",Integer.parseInt(busRow.get("total").toString()) + bus); |
|
|
|
goodsCarRow.put("total",Integer.parseInt(goodsCarRow.get("total").toString()) + goodsCar); |
|
|
|
totalRow.put("total",Integer.parseInt(totalRow.get("total").toString()) + total); |
|
|
|
} |
|
|
|
|
|
|
|
//客车
|
|
|
|
rowList.add(busRow); |
|
|
|
//客车占比
|
|
|
|
Map<String,Object> busRatioRow = new HashMap<>(); |
|
|
|
busRatioRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
busRatioRow.put("direction","客车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
Integer busTotal = Integer.valueOf(busRow.get(columnMap.get("key")).toString()); |
|
|
|
Integer total = Integer.valueOf(totalRow.get(columnMap.get("key")).toString()); |
|
|
|
if (total > 0){ |
|
|
|
busRatioRow.put(columnMap.get("key"),String.format("%.2f",(double) busTotal / total * 100) + "%"); |
|
|
|
} else { |
|
|
|
busRatioRow.put(columnMap.get("key"),"0.00%"); |
|
|
|
} |
|
|
|
} |
|
|
|
Integer allBusTotal = Integer.valueOf(busRow.get("total").toString()); |
|
|
|
Integer allTotal = Integer.valueOf(totalRow.get("total").toString()); |
|
|
|
if (allTotal > 0){ |
|
|
|
busRatioRow.put("total",String.format("%.2f",(double) allBusTotal / allTotal * 100) + "%"); |
|
|
|
} else { |
|
|
|
busRatioRow.put("total","0.00%"); |
|
|
|
} |
|
|
|
rowList.add(busRatioRow); |
|
|
|
|
|
|
|
//货车
|
|
|
|
rowList.add(goodsCarRow); |
|
|
|
//货车占比
|
|
|
|
Map<String,Object> goodsCarRatioRow = new HashMap<>(); |
|
|
|
goodsCarRatioRow.put("stakeMark",dcDevice.getStakeMark()); |
|
|
|
goodsCarRatioRow.put("direction","货车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
Integer goodsCarTotal = Integer.valueOf(goodsCarRow.get(columnMap.get("key")).toString()); |
|
|
|
Integer total = Integer.valueOf(totalRow.get(columnMap.get("key")).toString()); |
|
|
|
if (total > 0) { |
|
|
|
goodsCarRatioRow.put(columnMap.get("key"), String.format("%.2f", (double) goodsCarTotal / total * 100) + "%"); |
|
|
|
} else { |
|
|
|
goodsCarRatioRow.put(columnMap.get("key"),"0.00%"); |
|
|
|
} |
|
|
|
} |
|
|
|
Integer allGoodsCarTotal = Integer.valueOf(goodsCarRow.get("total").toString()); |
|
|
|
if (allTotal > 0){ |
|
|
|
goodsCarRatioRow.put("total",String.format("%.2f",(double) allGoodsCarTotal / allTotal * 100) + "%"); |
|
|
|
} else { |
|
|
|
goodsCarRatioRow.put("total","0.00%"); |
|
|
|
} |
|
|
|
rowList.add(goodsCarRatioRow); |
|
|
|
|
|
|
|
|
|
|
|
//最后加入合计
|
|
|
|
rowList.add(totalRow); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
if (dcTrafficSurveyData.getRowType().equals("1")){ |
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "济南"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "菏泽"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "客车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "客车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "货车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "货车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
//单个设备合计数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "合计"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
} else if (dcTrafficSurveyData.getRowType().equals("2")) { |
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "济南"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "菏泽"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
//单个设备合计数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "合计"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
} else { |
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "客车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "客车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "货车"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "货车占比"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
|
|
|
|
//单个设备合计数据
|
|
|
|
row = new HashMap<>(); |
|
|
|
row.put("stakeMark", dcDevice.getStakeMark()); |
|
|
|
row.put("direction", "合计"); |
|
|
|
for (Map<String, String> columnMap : columnList) { |
|
|
|
row.put(columnMap.get("key"), 0); |
|
|
|
} |
|
|
|
row.put("total", 0); |
|
|
|
rowList.add(row); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
Map<String,Object> result = new HashMap<>(); |
|
|
|
result.put("rowList",rowList); |
|
|
|
result.put("columnList",columnList); |
|
|
|
return AjaxResult.success(result); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public List<Map<String,String>> getColumnList(DcTrafficSurveyData dcTrafficSurveyData){ |
|
|
|
List<Map<String,String>> columnList = new ArrayList<>(); |
|
|
|
Map<String,String> column; |
|
|
|