📄 customer_list.jsp
字号:
<%@ page contentType="text/html; charset=utf-8"%>
<%@ page import = "java.util.*"%>
<%@ page import = "cn.js.fan.db.*"%>
<%@ page import = "cn.js.fan.util.*"%>
<%@ page import = "com.redmoon.oa.visual.*"%>
<%@ page import = "com.redmoon.oa.flow.FormDb"%>
<%@ page import = "com.redmoon.oa.flow.FormField"%>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>客户列表</title>
<link href="../common.css" rel="stylesheet" type="text/css">
</head>
<%@ include file="../inc/nocache.jsp"%>
<body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
<%
String priv = "sales.user";
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 op = ParamUtil.get(request, "op");
String formCode = "sales_customer";
String action = ParamUtil.get(request, "action"); // action为manage时表示为销售总管理员方式
if (action.equals("manage")) {
if (!privilege.isUserPrivValid(request, "sales"))
{
out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
return;
}
}
%>
<%@ include file="customer_inc_menu_top.jsp"%>
<%
String querystr = "";
FormDb fd = new FormDb();
fd = fd.getFormDb(formCode);
String sql = "select id from " + fd.getTableNameByForm();
String query = ParamUtil.get(request, "query");
if (!query.equals(""))
sql = query;
else
if (op.equals("search")) {
Iterator ir = fd.getFields().iterator();
String cond = "";
if (action.equals(""))
cond = "sales_person=" + StrUtil.sqlstr(privilege.getUser(request));
while (ir.hasNext()) {
FormField ff = (FormField)ir.next();
String value = ParamUtil.get(request, ff.getName());
String name_cond = ParamUtil.get(request, ff.getName() + "_cond");
if (ff.getType().equals(ff.TYPE_DATE) || ff.getType().equals(ff.TYPE_DATE_TIME)) {
String fDate = ParamUtil.get(request, ff.getName() + "FromDate");
String tDate = ParamUtil.get(request, ff.getName() + "ToDate");
if (!fDate.equals("")) {
if (cond.equals(""))
cond += ff.getName() + ">=" + StrUtil.sqlstr(fDate);
else
cond += " and " + ff.getName() + ">=" + StrUtil.sqlstr(fDate);
}
if (!tDate.equals("")) {
if (cond.equals(""))
cond += ff.getName() + "<=" + StrUtil.sqlstr(tDate);
else
cond += " and " + ff.getName() + "<=" + StrUtil.sqlstr(tDate);
}
}
else {
if (name_cond.equals("0")) {
if (!value.equals("")) {
if (cond.equals(""))
cond += ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
else
cond += " and " + ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
}
}
else if (name_cond.equals("1")) {
if (!value.equals("")) {
if (cond.equals(""))
cond += ff.getName() + "=" + StrUtil.sqlstr(value);
else
cond += " and " + ff.getName() + "=" + StrUtil.sqlstr(value);
}
}
}
}
if (!cond.equals(""))
sql = sql + " where " + cond;
}
else {
if (action.equals("")) {
sql += " where sales_person=" + StrUtil.sqlstr(privilege.getUser(request));
}
}
querystr = "query=" + StrUtil.UrlEncode(sql);
// out.print(sql);
%>
<br>
<table width="494" border="0" align="center" cellpadding="0" cellspacing="0" class="main">
<tr>
<td height="23" valign="middle" class="right-title">
<%
if (action.equals("")) {
out.print("我的");
}
%><%=fd.getName()%>
</td>
</tr>
<tr>
<td valign="top" background="workplan/images/tab-b-back.gif">
<%
int pagesize = 10;
Paginator paginator = new Paginator(request);
int curpage = paginator.getCurPage();
FormDAO fdao = new FormDAO();
ListResult lr = fdao.listResult(formCode, sql, curpage, pagesize);
int total = lr.getTotal();
Vector v = lr.getResult();
Iterator ir = null;
if (v!=null)
ir = v.iterator();
paginator.init(total, pagesize);
// 设置当前页数和总页数
int totalpages = paginator.getTotalPages();
if (totalpages==0)
{
curpage = 1;
totalpages = 1;
}
%>
<table width="37%" border="0" align="center" cellSpacing="1" class="tableframe">
<form id="form2" name="form2" action="?op=search" method="post">
<tbody>
<tr>
<td noWrap colSpan="3"><table width="100%" border="0" align="center" cellPadding="2" cellSpacing="0">
<tbody>
<tr>
<td colSpan="3" bgcolor="#C4DAFF"><b>查询</b></td>
</tr>
<tr>
<td width="29%">客户名称:</td>
<td noWrap width="19%"><select name="customer_cond">
<option value="1">等于</option>
<option value="0" selected>包含</option>
</select></td>
<td width="52%"><input name="customer" size="20"></td>
</tr>
<tr>
<td width="29%">电话:</td>
<td noWrap width="19%"><select name="tel_cond">
<option value="1">等于</option>
<option value="0" selected>包含</option>
</select></td>
<td width="52%"><input name="tel" size="20"></td>
</tr>
<tr>
<td width="29%">网址:</td>
<td noWrap width="19%"><select name="web_cond">
<option value="1">等于</option>
<option value="0" selected>包含</option>
</select></td>
<td width="52%"><input name="web" size="20"></td>
</tr>
<tr>
<td width="29%">电子邮件:</td>
<td noWrap width="19%"><select name="email_cond">
<option value="1">等于</option>
<option value="0" selected>包含</option>
</select></td>
<td width="52%"><input name="email" size="20"></td>
</tr>
</tbody>
</table></td>
</tr>
<tr align="middle">
<td noWrap align="center" colSpan="3" height="30"><input class="BigButton" type="submit" value="查 询" name="submit">
<input type=hidden name="action" value="<%=action%>">
</td>
</tr>
</tbody>
</form>
</table>
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="47"> </td>
<td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="2" cellspacing="1">
<tr align="center" bgcolor="#C4DAFF">
<td width="25%" bgcolor="#C4DAFF">客户名称</td>
<td width="20%" bgcolor="#C4DAFF">电话</td>
<td width="20%" bgcolor="#C4DAFF">传真</td>
<td width="16%" bgcolor="#C4DAFF">网址</td>
<td width="19%" bgcolor="#C4DAFF">操作</td>
</tr>
<%
int i = 0;
while (ir!=null && ir.hasNext()) {
fdao = (FormDAO)ir.next();
i++;
int id = fdao.getId();
%>
<tr align="center" bgcolor="#EEEEEE">
<td width="25%" bgcolor="#EEEEEE"> <a href="customer_show.jsp?id=<%=id%>&formCode=<%=formCode%>"><%=fdao.getFieldValue("customer")%></a></td>
<td width="20%" bgcolor="#EEEEEE"><a href=../visual_show.jsp?id=<%=id%>&formCode=<%=formCode%>><%=fdao.getFieldValue("tel")%></a></td>
<td width="20%" bgcolor="#EEEEEE"><a href=../visual_show.jsp?id=<%=id%>&formCode=<%=formCode%>><%=fdao.getFieldValue("fax")%></a></td>
<td width="16%" bgcolor="#EEEEEE"><a href=../visual_show.jsp?id=<%=id%>&formCode=<%=formCode%>><%=fdao.getFieldValue("web")%></a></td>
<td width="19%" bgcolor="#EEEEEE"><a href="customer_edit.jsp?id=<%=id%>&formCode=<%=StrUtil.UrlEncode(formCode)%>">编辑</a> <a href="../visual_del.jsp?id=<%=id%>&formCode=<%=formCode%>&privurl=<%=StrUtil.getUrl(request)%>">删除</a> <a href="#" class="STYLE2" onClick="window.open('customer_share_list.jsp?id=<%=id%>','','height=181, width=300, top=200,left=400, menubar=no, scrollbars=yes,resizable=auto,location=no,status=no')">共享客户</a> </span> </td>
</tr>
<%
}
%>
</table>
<br>
<table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
<tr>
<td width="1%" height="23"> </td>
<td height="23" valign="baseline">
<div align="right">
<%
out.print(paginator.getCurPageBlock("?action=" + action + "&" +querystr));
%>
</div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="9"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -