📄 g_plansh.asp
字号:
<!--#include file="../include/Pubconn.asp"-->
<!--#include file="../include/PublicWeek.asp"-->
<!--#include file="../include/PubFun.asp"-->
<% username=Getuser()
userclass=TableCheck("G_TblClosePlan",username)
if userclass<1 then
response.write"<br>"
response.write"<br>"
response.write "<center><font size=2>抱歉,您没有此项操作权限!<a href=G_mainplan.asp>返回</a>"
response.end
end if
%>
<%
'*************************************
'
'Author:Ruphi Update Time:2001-08-21
'功能说明:通过选择周次与业务员,对其进行审核(对于审核过的内容不再审核),审核是按周审核的
'
'*************************************
%>
<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" width="34" height="15">
</font><font size="2">客户跟进计划审核</font></b><hr width="40%" size="1" align="left">
</td>
</tr>
</table>
<%
wid=request("WeekID")
sid=request("txtstuff")
%>
<%
set Rssh=server.createobject("adodb.recordset")
if wid<>"" and sid<>"" then '================================AA
str="select * from G_TblClosePlan "
str=str&"where CloseWeek='"&wid&"' and StuffNum='"&sid&"' and AuditingYN<>'Y'"
Rssh.open str&"order by id desc",pubconn,1
'response.write str
%>
<form method="post" action="G_plansh.asp" name="myform">
<p>
<table border="0" width="100%">
<tr>
<td width="100%">
<p align="center">
<b>
<font size="3"></font></b>
</td>
</tr>
<tr>
<td width="100%">
<p align="left">(
<font size="2">提示:当前为第<%=datepart("ww",date())%>周
</font>
)
</p>
</td>
</tr>
</table>
<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 53 %>
<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 53 %>
<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 Stuffnum,Name 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 Rssh.eof then%>
<center><p><font size="2">没有符合条件的记录!<a href=G_mainplan.asp>返回</a></font></center>
<% response.end
else
%>
<table border="1" cellspacing="0" width="100%" height="30">
<tr>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -