Browse Source

公出列表取消审核人判定,改为全部显示

anderx 1 year ago
parent
commit
3b5121f446

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

@@ -709,9 +709,9 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
 		if(in.getClockIn()!=null)	map.put("clockIn", in.getClockIn());
 		map.put("assist",in.getAssist()==null?0:in.getAssist());
 		Pagination<OutPublicReleaseList> p=(Pagination<OutPublicReleaseList>) findPage("listPublicRelease", "countPublicRelease", map, in.getPageNo(), in.getPageSize());
-		if(in.getType()==0||in.getType()==4||in.getType()==5){
-			pushExamines(p);
-		}
+		//处理审核人
+		pushExamines(p);
+
 		return p;
 	}