|
|
@@ -707,11 +707,13 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
|
|
|
list.forEach(e ->{ ids.add(e.getId()); });
|
|
|
List<PublicExamine> publicExamines = publicExamineMapper.selectByIds(ids);
|
|
|
for (OutPublicReleaseList e : list) {
|
|
|
- if (e.getStatus()==1
|
|
|
- &&((e.getPublicType()==0||e.getPublicType()==2)
|
|
|
- &&(e.getTechStartProcess()==0||e.getTechStartProcess()==2))
|
|
|
- ){
|
|
|
- e.setAdminExamine(e.getUserAdminName()+" 未审核");
|
|
|
+ if (e.getStatus()==1){
|
|
|
+ if (((e.getPublicType()==0||e.getPublicType()==2)
|
|
|
+ &&(e.getTechStartProcess()==0||e.getTechStartProcess()==2))){
|
|
|
+ e.setAdminExamine(e.getReviewerName()+" 未审核");
|
|
|
+ }else {
|
|
|
+ e.setAdminExamine(e.getUserAdminName()+" 未审核");
|
|
|
+ }
|
|
|
}else if (e.getStatus()==0) {
|
|
|
e.setAdminExamine("");
|
|
|
}else {
|