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

📄 officeequip_receive_list.jsp

📁 oa 源代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=utf-8"%>
<%@ page import = "java.net.URLEncoder"%>
<%@ page import = "java.util.*"%>
<%@ page import = "cn.js.fan.util.*"%>
<%@ page import = "cn.js.fan.web.SkinUtil"%>
<%@ page import = "com.redmoon.oa.officeequip.*"%>
<%@ page import = "java.util.*"%>
<%@ page import = "cn.js.fan.db.*"%>
<%@ page import = "cn.js.fan.web.*"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="../common.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
<title>办公用品领用查询显示</title>
</head>
<body>
<%@ include file="officeequip_inc_menu_top.jsp"%>
<br>
<table width="840" border="0" align="center">
<tr>
  <td width="834" align="right"><%
String priv = "officeequip";
if (!privilege.isUserPrivValid(request, priv))
{
	out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
	return;
}
		String sql;
		String myname = privilege.getUser(request);
		String querystr = "";
		String cond = "";
		sql = "select ot.id from office_equipment_op ot , office_equipment oe , office_equipment_type oet where ot.type = '0'" ;
		String strTypeId=ParamUtil.get(request,"typeId");
		String strOfficeId=ParamUtil.get(request,"equipId");
		String person=ParamUtil.get(request,"person");
		String beginDate=ParamUtil.get(request,"beginDate");
		String endDate=ParamUtil.get(request,"endDate");
		if (!strTypeId.equals(""))
		    cond  += " and oe.typeId = " + strTypeId;
		if (!strOfficeId.equals(""))
		    cond  += " and ot.officeId = " + strOfficeId;
		if (!person.equals(""))
		    cond += "and ot.person like " + StrUtil.sqlstr("%" + person + "%") ;
		if (!beginDate.equals(""))
		    cond += " and "+ StrUtil.sqlstr(beginDate) + " < opDate ";	
		if (!endDate.equals(""))
		    cond += " and "+ StrUtil.sqlstr(endDate) + " > opDate ";		 	
	     	cond += " and ot.officeId = oe.id and oe.typeId = oet.id ";		
		sql +=cond;	
		querystr +=  "&typeId=" + strTypeId + "&equipId=" + strOfficeId + "&person=" + person + "&beginDate=" + beginDate + "&endDate" + endDate;
		int pagesize = 10;
		Paginator paginator = new Paginator(request);
		int curpage = paginator.getCurPage();
		OfficeOpDb ood = new OfficeOpDb();
		ListResult lr = ood.listResult(sql, curpage, pagesize);
		int total1 = lr.getTotal();
		Vector v = lr.getResult();
	    Iterator ir1 = null;
		if (v!=null)
			ir1 = v.iterator();
		paginator.init(total1, pagesize);
		// 设置当前页数和总页数
		int totalpages = paginator.getTotalPages();
		if (totalpages==0)
		{
			curpage = 1;
			totalpages = 1;
		}

%>    &nbsp;找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></b></td>
</tr>
<tr align="center">
  <td><table width="855" border="0" align="center" class="tableframe">
    <tr align="center">
      <td width="98" class="right-title">用品类别</td>
      <td width="141" class="right-title">用品名称</td>
      <td width="79" class="right-title">数量</td>

      <td width="84" class="right-title">领用人</td>
      <td width="141" class="right-title">领用时间</td>
      <td width="141" class="right-title">备注</td>
    </tr>
      <%
		OfficeDb od1 = new OfficeDb();
		OfficeTypeDb otdb = new OfficeTypeDb();
		int equipmentId,typeId;
		while (ir1!=null && ir1.hasNext()) {
		  ood = (OfficeOpDb)ir1.next();
		  equipmentId= ood.getOfficeId();
		  OfficeDb odb = od1.getOfficeDb(equipmentId);
		  typeId = odb.getTypeId();
		  otdb = otdb.getOfficeTypeDb(typeId);
	%>
	 <tr align="center">
      <td height="28" bgcolor="#FFFFFF"><%=otdb.getName()%></td>
      <td bgcolor="#FFFFFF"><%=odb.getOfficeName()%></td>
      <td bgcolor="#FFFFFF"><%=ood.getCount()%></td>
   
      <td bgcolor="#FFFFFF"><%=ood.getPerson()%></td>
      <td bgcolor="#FFFFFF"><%=ood.getOpDate()%></td>
      <td bgcolor="#FFFFFF"><%=ood.getRemark()%></td>
    </tr>
    <%}%>
  </table></td>
</tr>
<tr>
  <td align="right"><%
			   out.print(paginator.getCurPageBlock("?"+querystr));
			 %></td>
</tr>
<tr>
  <td align="center"><input type="button" class="button1" onClick="window.location.href='officeequip_receive_search.jsp'" value="领用查询" /></td>
</tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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