Browse Source

新增打卡其他信息

anderx 4 months ago
parent
commit
597e3bd85a

+ 11 - 8
src/main/java/com/goafanti/weChat/service/impl/PublicReleaseServiceImpl.java

@@ -1021,16 +1021,19 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
 					e.setAdminExamine("");
 				}else {
 					if (!publicExamines.isEmpty()){
-						StringBuffer str =new StringBuffer();
-						for (PublicExamine pe : publicExamines) {
-							if (e.getId().equals(pe.getPrid())){
-								str=str.append(pe.getAname());
-								if (pe.getStatus()==0)str=str.append(" 未审核,");
-								if (pe.getStatus()==1)str=str.append(" 已审核,");
+						if (e.getTechStartProcess()==0){
+							e.setAdminExamine("");
+						}else{
+							StringBuffer str =new StringBuffer();
+							for (PublicExamine pe : publicExamines) {
+								if (e.getId().equals(pe.getPrid())){
+									str=str.append(pe.getAname());
+									if (pe.getStatus()==0)str=str.append(" 未审核,");
+									if (pe.getStatus()==1)str=str.append(" 已审核,");
+								}
+								if (str.length()>1) e.setAdminExamine(str.substring(0,str.length()-1));
 							}
-							if (str.length()>1) e.setAdminExamine(str.substring(0,str.length()-1));
 						}
-
 					}
 				}
 				if(e.getType()==3){