|
@@ -169,6 +169,41 @@ public class DzfQuestionController {
|
|
|
oplist.get(j).setDesc(oplist.get(j).getRoleName()+"-"+oplist.get(j).getDes2()+" "+oplist.get(j).getUpdateDate());
|
|
|
}
|
|
|
|
|
|
+ //添加评价显示
|
|
|
+ if(aa.getDzfQuestionDetilDTOList().get(i).getDes5()!=null&&aa.getDzfQuestionDetilDTOList().get(i).getDes5().equals("1")){
|
|
|
+ DzfQuestionOpRecordDTO opr=new DzfQuestionOpRecordDTO();
|
|
|
+ UserDTO ud=new UserDTO();
|
|
|
+ ud.setId("-1");
|
|
|
+ opr.setCreateBy(ud);
|
|
|
+
|
|
|
+ opr.setTitle("企业评价");
|
|
|
+ opr.setOpTypeName("企业评价");
|
|
|
+ String pjstr="";
|
|
|
+ if(aa.getDzfQuestionDetilDTOList().get(i).getEvaluateFlag()!=null&&aa.getDzfQuestionDetilDTOList().get(i).getEvaluateFlag().equals("0")){
|
|
|
+ pjstr="非常满意";
|
|
|
+ }else if(aa.getDzfQuestionDetilDTOList().get(i).getEvaluateFlag()!=null&&aa.getDzfQuestionDetilDTOList().get(i).getEvaluateFlag().equals("1")){
|
|
|
+ pjstr="满意";
|
|
|
+ }else if(aa.getDzfQuestionDetilDTOList().get(i).getEvaluateFlag()!=null&&aa.getDzfQuestionDetilDTOList().get(i).getEvaluateFlag().equals("2")){
|
|
|
+ pjstr="不满意";
|
|
|
+ }
|
|
|
+
|
|
|
+ String pjstr2="";
|
|
|
+ if(aa.getDzfQuestionDetilDTOList().get(i).getDes3()!=null&&aa.getDzfQuestionDetilDTOList().get(i).getDes3().equals("0")){
|
|
|
+ pjstr2="负责人知晓";
|
|
|
+ }else if(aa.getDzfQuestionDetilDTOList().get(i).getDes3()!=null&&aa.getDzfQuestionDetilDTOList().get(i).getDes3().equals("1")){
|
|
|
+ pjstr2="负责人不知晓";
|
|
|
+ }
|
|
|
+ opr.setDesc(aa.getQyName()+"-"+aa.getQyFzr()+":"+pjstr+" "+pjstr2);
|
|
|
+
|
|
|
+ opr.setRoleName(aa.getQyName());
|
|
|
+ opr.setDes2(aa.getQyFzr()+":"+pjstr+","+pjstr2);
|
|
|
+ opr.setUpdateDate(aa.getUpdateDate());
|
|
|
+
|
|
|
+ oplist.add(opr);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
aa.getDzfQuestionDetilDTOList().get(i).oplist=oplist;
|
|
|
|
|
|
|