|
|
@@ -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){
|