Commit 94ceb8ea by sunxin

跟踪页面 业务类型 类别 逻辑修复

parent f61e2c34
......@@ -654,26 +654,37 @@ public class ReportController extends BaseController {
}
}
/*封装业务类型map*/
Map<String,String> typeMap=new HashMap();
if(oldType != ""){
String[] typeArr= oldType.split(",");
CtBbtcBusType ctBbtcBusType002=null;
for (String arr:typeArr) {
ctBbtcBusType002 = CtBbtcBusTypeService.get(arr);
typeMap.put(ctBbtcBusType002.getName(),arr);
if(ctBbtcBusType002 != null){
typeMap.put(ctBbtcBusType002.getName(),arr);
}
}
}
/*封装业务类别map*/
Map<String,String> catgoryMap=new HashMap();
if(oldCat != ""){
String[] typeArr= oldCat.split(",");
CtBbtcBusCategory ctBbtcBusCategory002=null;
for (String arr:typeArr) {
ctBbtcBusCategory002 = ctBbtcBusCategoryService.get(arr);
catgoryMap.put(ctBbtcBusCategory002.getName(),arr);
if(ctBbtcBusCategory002 != null){
catgoryMap.put(ctBbtcBusCategory002.getName(),arr);
}
}
}
/*
System.out.println("类别map大小:"+catgoryMap.size());
System.out.println("类型map大小:"+typeMap.size());
*/
model.addAttribute("page", page);
model.addAttribute("user", userEntity);
model.addAttribute("userName", user.getName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment