SignTypeManage.jsp
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:5k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GB2312" %>
  2. <%@ page import="com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
  3. <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
  4. <%
  5. Request m_request = new Request(request);
  6. int iPageSize = 18;
  7. int iPage = m_request.GetInt("Page");
  8. %>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
  12. <title>考勤签到-- GForce OA 2.0</title>
  13. <link href="/css/txt.jsp" rel="stylesheet" type="text/css">
  14. <script language="JavaScript" src="/js/changestyle.js"></script>
  15. </head>
  16. <body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
  17. <table width="100%" height="100%" border="0" align="center" cellspacing="0">
  18.     <tr>
  19.         <td align="center" valign="top"><p>&nbsp;</p>
  20.             <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
  21.                 <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
  22.                     <th width="3%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
  23.                     <th width="6%" nowrap><font color="#000000">序号</font></th>
  24.                     <th width="35%" nowrap><font color="#000000">考勤类型名称</font></th>
  25.                     <th width="8%" nowrap><font color="#000000">签到开始时间</font></th>
  26.                     <th width="8%" nowrap><font color="#000000">签到结束时间</font></th>
  27.                     <th width="28%" nowrap><font color="#000000">签到有效星期</font></th>
  28.                     <th width="6%" nowrap><font color="#000000">修改</font></th>
  29.                     <th width="6%" nowrap><font color="#000000">删除</font></th>
  30.                 </tr>
  31. <%
  32. Vector vt = SignTypeManager.getAllRecord();
  33. if(iPage<1)iPage=1;
  34. int iPageCount = StringNew.getPageCount(vt.size(),iPageSize);
  35. if(iPage>iPageCount) iPage=1;
  36. for(int i=(iPage-1)*iPageSize;i<vt.size()&&i<iPage*iPageSize;i++)
  37. {
  38.     String strID = ((Vector)vt.get(i)).get(0).toString();
  39.     if(i % 2 == 0)
  40.         out.println("<tr id="Row"+ i+ "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
  41.     else
  42.         out.println("<tr id="Row"+ i+ "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
  43.     out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
  44.     out.println("<td align="right" valign="middle">" + (i+1) + "</td>");
  45.     out.println("<td align="left" valign="middle" nowrap title="" + ((Vector)vt.get(i)).get(1).toString() + "">" + ((Vector)vt.get(i)).get(1).toString() + "</td>");
  46.     String strWorkDays=((Vector)vt.get(i)).get(7).toString().trim();
  47.     if(strWorkDays.length()>0)
  48.     {
  49.       strWorkDays = strWorkDays.replaceAll("0","星期日");
  50.       strWorkDays = strWorkDays.replaceAll("1","星期一");
  51.       strWorkDays = strWorkDays.replaceAll("2","星期二");
  52.       strWorkDays = strWorkDays.replaceAll("3","星期三");
  53.       strWorkDays = strWorkDays.replaceAll("4","星期四");
  54.       strWorkDays = strWorkDays.replaceAll("5","星期五");
  55.       strWorkDays = strWorkDays.replaceAll("6","星期六");
  56.     }
  57.     else
  58.     {
  59.       strWorkDays = "&nbsp;";
  60.     }
  61.     out.println("<td align="left" valign="middle" nowrap>" + ((Vector)vt.get(i)).get(2).toString() + "</td>");
  62.     out.println("<td align="left" valign="middle" nowrap>" + ((Vector)vt.get(i)).get(3).toString() + "</td>");
  63.     out.println("<td align="left" valign="middle" nowrap>" + strWorkDays + "</td>");
  64.     out.println("<td align="center" valign="middle" nowrap><a href="EditSignType.jsp?Page=" + iPage + "&ID=" + strID + "">修改</a></td>");
  65.     out.println("<td align="center" valign="middle" nowrap><a href="DelSignType.jsp?Page="+iPage+"&ID=" + strID + "" onclick="return confirm('您确实要删除该签到类型吗?\n删除该类型之前必须删除该类型所有相关签到记录,\n否则会出错,您是否继续?');">删除</a></td>");
  66.     out.println("</tr>");
  67. }
  68. %>
  69.                 <tr>
  70.                     <th align="center" valign="top" colspan="5">
  71. <%
  72. String strCurrentPageURL = request.getRequestURI();
  73. if(iPage<2)
  74. out.print("首页&nbsp;&nbsp;上页");
  75. else
  76. out.print("<a href=""+ strCurrentPageURL+"?Page=" + 1 + "">首页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + (iPage-1) + "">上页</a>");
  77. out.print("&nbsp;&nbsp;当前是第" + iPage + "页,共" + vt.size() + "条记录" + iPageCount + "页&nbsp;&nbsp;");
  78. if(iPage>=iPageCount)
  79. out.print("下页&nbsp;&nbsp;末页");
  80. else
  81. out.print("<a href=""+ strCurrentPageURL+"?Page=" + (iPage+1) + "">下页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + iPageCount + "">末页</a>");
  82. %>
  83.                     </th>
  84.                     <th align="center" valign="top" colspan="3">
  85.                     <a href="AddSignType.jsp">新增考勤类型</a>
  86.                     </th>
  87.                 </tr>
  88.             </table>
  89.           </form>
  90.         </td>
  91.     </tr>
  92. </table>
  93. </body>
  94. </html>