📄 signtypemanage.jsp
字号:
<%@ page contentType="text/html; charset=GB2312" %>
<%@ page import="com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
<jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
<%
Request m_request = new Request(request);
int iPageSize = 18;
int iPage = m_request.GetInt("Page");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
<title>考勤签到-- GForce OA 2.0</title>
<link href="/css/txt.jsp" rel="stylesheet" type="text/css">
<script language="JavaScript" src="/js/changestyle.js"></script>
</head>
<body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
<table width="100%" height="100%" border="0" align="center" cellspacing="0">
<tr>
<td align="center" valign="top"><p> </p>
<table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
<tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
<th width="3%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
<th width="6%" nowrap><font color="#000000">序号</font></th>
<th width="35%" nowrap><font color="#000000">考勤类型名称</font></th>
<th width="8%" nowrap><font color="#000000">签到开始时间</font></th>
<th width="8%" nowrap><font color="#000000">签到结束时间</font></th>
<th width="28%" nowrap><font color="#000000">签到有效星期</font></th>
<th width="6%" nowrap><font color="#000000">修改</font></th>
<th width="6%" nowrap><font color="#000000">删除</font></th>
</tr>
<%
Vector vt = SignTypeManager.getAllRecord();
if(iPage<1)iPage=1;
int iPageCount = StringNew.getPageCount(vt.size(),iPageSize);
if(iPage>iPageCount) iPage=1;
for(int i=(iPage-1)*iPageSize;i<vt.size()&&i<iPage*iPageSize;i++)
{
String strID = ((Vector)vt.get(i)).get(0).toString();
if(i % 2 == 0)
out.println("<tr id=\"Row"+ i+ "\" class=\"DataRowsSingle\" onmouseover=\"mouseon(this,'image" + i + "');\" onmouseout=\"mouseout(this,'image" + i + "','DataRowsSingle');\">");
else
out.println("<tr id=\"Row"+ i+ "\" class=\"DataRowsDouble\" onmouseover=\"mouseon(this,'image" + i + "');\" onmouseout=\"mouseout(this,'image" + i + "','DataRowsDouble');\">");
out.println("<td align=\"right\" valign=\"middle\"><img id=\"image" + i + "\" src=\"../images/lastpost1.gif\" style=\"display:none;\"> </td>");
out.println("<td align=\"right\" valign=\"middle\">" + (i+1) + "</td>");
out.println("<td align=\"left\" valign=\"middle\" nowrap title=\"" + ((Vector)vt.get(i)).get(1).toString() + "\">" + ((Vector)vt.get(i)).get(1).toString() + "</td>");
String strWorkDays=((Vector)vt.get(i)).get(7).toString().trim();
if(strWorkDays.length()>0)
{
strWorkDays = strWorkDays.replaceAll("0","星期日");
strWorkDays = strWorkDays.replaceAll("1","星期一");
strWorkDays = strWorkDays.replaceAll("2","星期二");
strWorkDays = strWorkDays.replaceAll("3","星期三");
strWorkDays = strWorkDays.replaceAll("4","星期四");
strWorkDays = strWorkDays.replaceAll("5","星期五");
strWorkDays = strWorkDays.replaceAll("6","星期六");
}
else
{
strWorkDays = " ";
}
out.println("<td align=\"left\" valign=\"middle\" nowrap>" + ((Vector)vt.get(i)).get(2).toString() + "</td>");
out.println("<td align=\"left\" valign=\"middle\" nowrap>" + ((Vector)vt.get(i)).get(3).toString() + "</td>");
out.println("<td align=\"left\" valign=\"middle\" nowrap>" + strWorkDays + "</td>");
out.println("<td align=\"center\" valign=\"middle\" nowrap><a href=\"EditSignType.jsp?Page=" + iPage + "&ID=" + strID + "\">修改</a></td>");
out.println("<td align=\"center\" valign=\"middle\" nowrap><a href=\"DelSignType.jsp?Page="+iPage+"&ID=" + strID + "\" onclick=\"return confirm('您确实要删除该签到类型吗?\\n删除该类型之前必须删除该类型所有相关签到记录,\\n否则会出错,您是否继续?');\">删除</a></td>");
out.println("</tr>");
}
%>
<tr>
<th align="center" valign="top" colspan="5">
<%
String strCurrentPageURL = request.getRequestURI();
if(iPage<2)
out.print("首页 上页");
else
out.print("<a href=\""+ strCurrentPageURL+"?Page=" + 1 + "\">首页</a> <a href=\""+ strCurrentPageURL+"?Page=" + (iPage-1) + "\">上页</a>");
out.print(" 当前是第" + iPage + "页,共" + vt.size() + "条记录" + iPageCount + "页 ");
if(iPage>=iPageCount)
out.print("下页 末页");
else
out.print("<a href=\""+ strCurrentPageURL+"?Page=" + (iPage+1) + "\">下页</a> <a href=\""+ strCurrentPageURL+"?Page=" + iPageCount + "\">末页</a>");
%>
</th>
<th align="center" valign="top" colspan="3">
<a href="AddSignType.jsp">新增考勤类型</a>
</th>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -