📄 g_lostsh.asp
字号:
<!--#include file="../include/Pubconn.asp"-->
<!--#include file="../include/PubFun.asp"-->
<% username=Getuser()
userclass=TableCheck("G_TblLostReport",username)
if userclass<1 then
response.write"<br>"
response.write"<br>"
response.write "<center><font size=2>抱歉,您没有此项操作权限!<a href=G_mainlost.asp>返回</a>"
response.end
end if
%>
<%
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>单据查询</title><link href="cread.css" rel="stylesheet" type="text/css">
</head>
<script language="vbscript">
sub check1()
if myform.WeekID.value="" then
msgbox"请选择月份!",64,"提示:"
exit sub
end if
if myform.txtstuff.value="" then
msgbox"请选择业务员!",64,"提示:"
exit sub
end if
myform.submit
end sub
</script>
<body bgcolor="#FFFFFF" >
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="100%"><b><font size="3"><img border="0" src="../pic/it_22.gif">
</font><font size="2">丢失报告审核</font></b><hr width="40%" size="1" align="left">
</td>
</tr>
</table>
<%
wid=request("WeekID")
sid=request("txtstuff")
%>
<%
set Rslost=server.createobject("adodb.recordset")
if wid<>"" and sid<>"" then
str="select * from G_TblLostReport "
str=str&"where CloseMonth='"&wid&"' and StuffNum='"&sid&"' and AuditingYN<>'Y'"
Rslost.open str&"order by id desc",pubconn,1
'response.write str
%>
<form method="post" action="G_lostsh.asp" name="myform">
<table border="0" cellspacing="0" width="100%" align="center">
<tr>
<td width="12%" align="center" bgcolor="#F1E8DA">
<p align="right">
<font size="2">月份
</font>
</p>
</td>
<td width="19%" align="center" bgcolor="#F1E8DA">
<p align="left">
<select name="WeekID" size="1" style="width:100">
<% if wid<>"" then%>
<option value="">请选择</option>
<% for i=1 to 12 %>
<option value="<%=i%>" <% if cint(trim(wid))=i then
response.write ("selected")
end if
%>><%=i%>月</option>
<%next%>
<%else%>
<option value="">请选择</option>
<%for i=1 to 12 %>
<option value="<%=i%>" ><%=i%>月</option>
<%next%>
<%end if %>
</select>
</p>
</td>
<td width="11%" align="center" bgcolor="#F1E8DA">
<p align="right">
业务员
</p>
</td>
<td width="29%" align="center" bgcolor="#F1E8DA">
<p align="left">
<select name="txtstuff" style="width:100" size="1">
<%
'业务员列表
set rst1=Server.CreateObject("ADODB.RecordSet")
sql="Select * from A_StuffInfo Where SaleFlag='1' and delflag='0'"
rst1.open sql,pubconn,1
%>
<option value="">请选择</option>
<%do while not rst1.eof%>
<option value="<%=rst1("StuffNum")%>" <%
if sid<>"" then
if trim(sid)=rst1("StuffNum") then
response.write("selected")
end if
end if
%> ><%=rst1("Name")%></option>
<%
rst1.movenext
loop
set rst1=nothing
%>
</select> <input type="button" value="查询" onclick="check1()" class="hand" style="background-color: #D1D1D1; border-style: solid; border-width: 1" >
</p>
</td>
</tr>
</table>
<%
if Rslost.eof then%>
<center><p>没有符合条件的记录!<a href=G_mainlost.asp>返回</a></center>
<% response.end
else
%>
<div align="center">
<center>
<table border="1" cellspacing="0" width="100%" height="30" width="100%" width="100%">
<tr>
<td width="69" height="24" align="center" width="122" bgcolor="#DDD2C4">
<font size="2">丢失客户
</font>
</td>
<td width="53" height="24" align="center" width="131" bgcolor="#DDD2C4">
<font size="2">业务员
</font>
</td>
<td width="105" height="24" align="center" width="84" bgcolor="#DDD2C4">
<font size="2">报告日期
</font>
</td>
<td width="83" height="24" align="center" width="98" bgcolor="#DDD2C4">
<font size="2">产品
</font>
</td>
<td width="61" height="24" align="center" width="120" bgcolor="#DDD2C4">
<font size="2">竞争者
</font>
</td>
<td width="104" height="24" align="center" width="146" bgcolor="#DDD2C4">
<font size="2">竞争者签约时间
</font>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -