📄 group_data.jsp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="java.util.*"%>
<%@ page import="java.text.SimpleDateFormat"%>
<%@ page import="com.saas.biz.groupInfoMgr.GroupInfo"%>
<html>
<head>
<title>group-data</title>
</head>
<body>
<%
String cust_id="",class_id="",group_type="";
if(request.getParameter("cust_id") != null) {
cust_id = request.getParameter("cust_id");
}
if(request.getParameter("class_id") != null) {
class_id = request.getParameter("class_id");
}
if(request.getParameter("group_type") != null) {
group_type = request.getParameter("group_type");
}
GroupInfo group=new GroupInfo();
ArrayList list=group.getGroupString(cust_id,class_id,group_type);
ArrayList joinList=group.getGroupForJoin(cust_id,class_id,group_type);
//存放已存在的客户ID
ArrayList isExistList =new ArrayList();
int size=0,join=0;
String table = "<table width=100% border=0 cellspacing=1 cellpadding=0><tr style=text-align:left; font-weight:bold;margin-left: 5px;bgcolor=#B4B4B4><td bgcolor=#B4B4B4 colspan=3 width='90%' color=#FFFFFF><img src=/img/delUser.png border=0>以下是你所选分类下已存在的客户,如果要进行删除操作,请选中要删除的记录后,点击删除按钮!</td><td align=right bgcolor=#B4B4B4 width='10%'><input type=button name=dbtn value=删除 onclick=delCustomer()></td></tr>";
table=table+"<tr><td width='10%' align=center bgcolor=#efefef><input type=checkbox id=checkAll name=checkAll value=全选 onclick=seleAll()>全选</td>"+
"<td width='35%' align=center bgcolor=#efedef>客户名称</td><td width='20%' align=center bgcolor=#efefef>客户电话</td><td width='20%' align=center bgcolor=#efefef>E-mail</td></tr>";
if(list !=null && list.size()>0){
size=list.size();
for (int i = 0; i < list.size(); i++) {
HashMap map = (HashMap) list.get(i);
String obj_cust_id = "", cust_name = "", phone = "",email="";
if (map.get("cust_id") != null) {
obj_cust_id = map.get("cust_id").toString();
}
isExistList.add(obj_cust_id);
if (map.get("email") != null) {
email = map.get("email").toString();
}
if (map.get("cust_name") != null) {
cust_name = map.get("cust_name").toString();
cust_name="<a href=/customerMgr/Custinfo.jsp?obj_cust_id="+obj_cust_id+"&user_id= target=_blank>"+cust_name+"</a>";
}
if (map.get("group_contact_phone") != null) {
phone = map.get("group_contact_phone").toString();
}if(i%2==0){
table=table+"<tr><td align=center ><input type=checkbox value="+obj_cust_id+" name=ckbx"+i+" id=ckbx"+i+"</td><td align=left>"+cust_name+"</td><td align=left>"+phone+"</td><td align=left>"+email+"</td></tr>";
}else{
table=table+"<tr><td align=center bgcolor=#efefef><input type=checkbox value="+obj_cust_id+" name=ckbx"+i+" id=ckbx"+i+"</td><td align=left bgcolor=#efedef>"+cust_name+"</td><td align=left bgcolor=#efefef>"+phone+"</td><td align=left bgcolor=#efedef>"+email+"</td></tr>";
}
}
}
String tablej = "<tr style=text-align:left; font-weight:bold;margin-left: 5px;bgcolor=#B4B4B4><td bgcolor=#B4B4B4 colspan=3 width='90%' color=#FFFFFF><img src=/img/addUser.png border=0>你可以将以下客户添加到你所选的分类里,如果要进行操作,请选中的客户记录后,点击添加按钮!</td><td align=right bgcolor=#B4B4B4 width='10%'><input type=button name=abtn value=添加 onclick=addCustomer()></td></tr>"+
"<tr><td width='10%' align=center bgcolor=#efefef><input type=checkbox id=checkjoin name=checkjoin value=全选 onclick=addAll()>全选</td>"+
"<td width='35%' align=center bgcolor=#efedef>客户名称</td><td width='20%' align=center bgcolor=#efefef>客户电话</td><td width='20%' align=center bgcolor=#efefef>E-mail</td></tr>";
if(joinList !=null && joinList.size()>0){
join=joinList.size();
for (int i = 0; i < joinList.size(); i++) {
HashMap map = (HashMap) joinList.get(i);
String obj_cust_id = "", cust_name = "", phone = "",email="";
if (map.get("cust_id") != null) {
obj_cust_id = map.get("cust_id").toString();
}
if(isExistList.contains(obj_cust_id)){
continue;
}
if (map.get("email") != null) {
email = map.get("email").toString();
}
if (map.get("cust_name") != null) {
cust_name = map.get("cust_name").toString();
cust_name="<a href=/customerMgr/Custinfo.jsp?obj_cust_id="+obj_cust_id+"&user_id= target=_blank>"+cust_name+"</a>";
}
if (map.get("group_contact_phone") != null) {
phone = map.get("group_contact_phone").toString();
}if(i%2==0){
tablej=tablej+"<tr><td align=center ><input type=checkbox value="+obj_cust_id+" name=ckbxj"+i+" id=ckbxj"+i+"</td><td align=left>"+cust_name+"</td><td align=left>"+phone+"</td><td align=left>"+email+"</td></tr>";
}else{
tablej=tablej+"<tr><td align=center bgcolor=#efefef><input type=checkbox value="+obj_cust_id+" name=ckbxj"+i+" id=ckbxj"+i+"</td><td align=left bgcolor=#efedef>"+cust_name+"</td><td align=left bgcolor=#efefef>"+phone+"</td><td align=left bgcolor=#efedef>"+email+"</td></tr>";
}
}
}
table=table+tablej+"</table><input type=hidden id=count name=count value="+size+"><input type=hidden id=join name=count value="+join+">";
out.print(table);
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -