2d47b366 by zenglele

修改

1 parent 6447f4bb
......@@ -318,7 +318,7 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen
if(map.get("ZTS")!=null){
documentMap.put("fj", "业务号:"+ywh+";"+map.get("ZTS"));
}else{
documentMap.put("fj", "业务号:"+ywh);
documentMap.put("fj", "业务号:"+ywh+";"+map.get("FJ"));
}
documentMap.put("qx", "汉台区");
String base64ewm =getBase64ewm((String) map.get("ID"),(String) map.get("QLRMC"),(String) map.get("ZJH"));
......@@ -549,6 +549,7 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen
} else {
hashMap.put("QLQTZK", qlqtzk);
}
hashMap.put("FJ", (String) map.get("FJ"));
}
list.add(hashMap);
}
......@@ -611,6 +612,7 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen
} else {
hashMap.put("QLQTZK", qlqtzk);
}
hashMap.put("FJ", (String) map.get("FJ"));
}
list.add(hashMap);
}
......@@ -701,7 +703,9 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen
map.put("ZTS", "本次登记包含"+list.size()+"(套、间)");
Map qrlInfoMap=regBusBdcqzsdjxxMapper.getQlrInfoByYwh((String) map.get("YWH"));
if(qrlInfoMap!=null){
map.put("ZJH",qrlInfoMap.get("ZJH"));
String FJ=(String)map.get("FJ");
map.put("ZJH",FJ.replace("&ldquo;", "“").replace("&rdquo;", "”"));
/* map.put("ZJH",qrlInfoMap.get("ZJH"));*/
}
return map;
}
......