Commit a44178d9 authored by tangwei's avatar tangwei

检查类型修复

parent 7703329d
......@@ -804,6 +804,15 @@ public class PointServiceImpl implements IPointService {
String excludeItems = list.get(0).getExcludeItems();
if(excludeItems!=null){
resList.forEach(e->{
if("WGJC".equals(e.get("input_classify").toString())){
e.put("input_classify","外观检查");
}else if("GNCS".equals(e.get("input_classify").toString())){
e.put("input_classify","功能测试");
}else if("HJJC".equals(e.get("input_classify").toString())){
e.put("input_classify","环境检查");
}else{
e.put("input_classify","其他");
}
if (excludeItems.contains(e.get("itemId").toString())){
e.put("checked",true);
}else {
......
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