⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 importantnote.jsp

📁 tomcat最新安装程序
💻 JSP
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@page import="cn.com.aheadsoft.business.*"%>
<%@page import="cn.com.aheadsoft.recordset.*"%>
<%@page import="java.util.List"%>
<jsp:useBean id="userinfo" scope="session" class="cn.com.aheadsoft.util.UserInfo"/>
<jsp:useBean id="upm" scope="session" class="cn.com.aheadsoft.manage.UserPurviewManage"/>

<%
   String sUser = userinfo.GetUserID();
   
   int iResult = -1;
   MeetingInformBusiness bundi = new MeetingInformBusiness();
   
   // 数据授权
   List userids1 = upm.getUserPurview(userinfo,"10","3","u");
   
   if (userids1.size()<=0)
     userids1.add(sUser);
   bundi.setQuerySendUserList(userids1);
   
   iResult = bundi.execute("query");
   MeetingInformRecordSet MeetingInformRdSet = bundi.getMeetingInformRdset();
   int iResNum = MeetingInformRdSet.size();
%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0"  >
  <tr  class="trA">      
    <td >&nbsp;您的位置:行政管理 >> 会议管理 >> <font class="fontcolor">重发通知</font></td>
  </tr>
  <tr height="8">   
	<td >
	</td>
  </tr>
  <tr>
    <td align="center">
      <table border="0" width="98%"  cellpadding="0" cellspacing="0">
      <tr>
      <td align="center">
      <table border="0" width="100%"  bordercolor="A1B7DB" class="collapse">
	   <tr>             
          <td class="tdA"  colspan="9" align="center"><div align="left">通知列表</div></td>
      </tr>
        <tr  >
          <td  class="common" align="center">通知时间</td>
          <td   class="common" align="center">会议标题</td>
          <!--<td   class="common" align="center">会议主题</td>-->
		  <td   class="common" align="center">会议时间</td>
		  <!--<td   class="common" align="center">会议地点</td>-->
		  <!--<td   class="common" align="center">与会人员</td>-->
		  <td   class="common" align="center">操作</td>
        </tr>
		<% 
		for (int i=0; i<iResNum; i++) { 
		  MeetingInformRdSet.next();
		  String sID = MeetingInformRdSet.getMM_ID();
		  String sInfoTime = MeetingInformRdSet.getMI_InfoTime();
		  String sMeetName = MeetingInformRdSet.getMI_MeetName();
		  String sMeetSubjet = MeetingInformRdSet.getMI_MeetSubject();
		  String sDateTime = MeetingInformRdSet.getMI_MeetTime(); 
		  String sAddress = MeetingInformRdSet.getMI_MeetAddress();
		  MeetingDetailBusiness busi = new MeetingDetailBusiness();
		  busi.setQueryWhereID(sID);
          	  int iRes = busi.execute("query");
                  MeetingDetailRecordSet MeetingDetailRdSet = busi.getMeetingDetailRdset();
                  MeetingDetailRdSet.next();
		  String sAttdence = MeetingDetailRdSet.getMD_Attendance();
		%>
		<tr	<%
		if(i%2!=0){
		%> class="bgcolor"<%}%>>
          <td  class="common" align="center"><%=sInfoTime%></td>
          <td  class="common" align="center"><a href="/krm/jsp/metmanage/importantdetail.jsp?id=<%=sID%>"><%=sMeetName%></a></td>
          <!--<td  class="common"><%=sMeetSubjet%></td>-->
		  <td  class="common" align="center"><%=sDateTime%></td>
		  <!--<td  class="common"><%=sAddress%></td>-->
		  <!--<td  class="common"><%=sAttdence%></td>-->
		  <td  class="common" align="center">
		  <a href="/krm/jsp/metmanage/noteresend.jsp?meetID=<%=sID%>&infotime=<%=sInfoTime%>">修改重发</a></td>
        </tr>
		<% } %>
<tr><td colspan="8" class="tdC">&nbsp;</td>	 </tr>	  
</table>
</table></td></tr>
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -