|
|
|
@ -145,7 +145,13 @@ public class QualityReportServiceImpl implements IQualityReportService {
|
|
|
|
|
@Override
|
|
|
|
|
public List<RepairRateReport> repairRateReportList(Map hashMap) {
|
|
|
|
|
if (hashMap.containsKey("stationCodeList")){
|
|
|
|
|
hashMap.put("stationCodeList", String.valueOf(hashMap.get("stationCodeList")).split(","));
|
|
|
|
|
String[] stationCodeLists = String.valueOf(hashMap.get("stationCodeList")).split(",");
|
|
|
|
|
hashMap.put("stationCodeList", stationCodeLists);
|
|
|
|
|
for (String station : stationCodeLists) {
|
|
|
|
|
if (station.equals("2001") || station.equals("2006")|| station.equals("2007")){
|
|
|
|
|
hashMap.put("leakFlag", "1");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
String[] stationCodeLists = {"null"};
|
|
|
|
|
hashMap.put("stationCodeList", stationCodeLists);
|
|
|
|
|