Browse Source

追加描述

胡杰 10 months ago
parent
commit
83a635243a

+ 36 - 0
cn.com.taiji.system/src/main/java/cn/com/taiji/zhongxiao/service/DbdcUserService.java

@@ -23,6 +23,7 @@ import javax.sql.DataSource;
 import cn.com.taiji.zhongxiao.domain.TinfoClass;
 import cn.com.taiji.zhongxiao.domain.TshareApply;
 import cn.com.taiji.zhongxiao.domain.TshareApplyRepository;
+import cn.com.taiji.zhongxiao.dto.TshareApplyDto;
 import org.apache.commons.codec.digest.DigestUtils;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -91,6 +92,9 @@ public class DbdcUserService {
 	RoleMenuRepository roleMenuRepository;
 	@Inject
 	TshareApplyRepository tshareApplyRepository;
+
+	@Inject
+	TshareApplyService tshareApplyService;
 	@Inject
 	MenuRepository menuRepository;
 	@Value("${xsjpg_roleid}")
@@ -945,6 +949,38 @@ public class DbdcUserService {
 					infolist.add(resultMapa);
 			}
 
+			menuUrl = "/tshareApply/tshareApply_balist";
+			hasPerssion = jdbcTemplate.queryForList("select m.menu_id from role_user p,ROLE_MENU q,menu m where p.user_id=? and p.ROLE_ID=q.role_id and m.menu_id=q.menu_id and (m.MENU_URL=? or m.MENU_URL=?)", new Object[]{userInfo.getUserId(), menuUrl, menuUrl + "/"});
+			if(hasPerssion!=null&&hasPerssion.size()>0) {
+
+				// 模拟controller 逻辑太复杂,懒得分析了
+				TshareApplyDto param = new TshareApplyDto();
+				param.setActualize("-1");
+				param.setState("2");
+				param.setTinfoClass(new TinfoClass());
+
+				Pagination<TshareApply> page = new Pagination<TshareApply>();
+				page.setPageSize(10);
+				page.setPageCurrentNum(1);
+				page.setPageStartNo(0);
+
+				Map<String, Object> searchParameters = new HashMap<String, Object>();
+//				searchParameters.put("field", request.getParameter("field"));
+//				searchParameters.put("order", request.getParameter("order"));
+
+				page = tshareApplyService.findtshareApplysave(param, page, userInfo, "1", searchParameters); //表示提供方主管部门
+
+				long count = page.getPageTotal();
+				Map resultMapa = new HashMap<String, Object>();
+				resultMapa.put("info", "您有<font color=\"red\">" + count
+						+ "</font>个待派发任务,请到<a href-name=\"共享备案\" href-url=\"" + menuUrl + "\"> <font color=\"green\">数据共享管理->共享备案</font></a> 功能模块进行操作。");
+				resultMapa.put("message", count + "个待派发任务");
+				resultMapa.put("count", count);
+				if(count > 0) {
+					infolist.add(resultMapa);
+				}
+			}
+
 			List<String> paramList = new ArrayList<String>();
 			StringBuffer sqlBuffer = new StringBuffer(
 					"select count(1)zs from t_service_applyinfo p where p.knowstate='1' and p.inprocess!='4'");