📄 weishou.asp
字号:
<%
if request.cookies("flag")="" then
response.redirect "login.asp"
response.end
else
%>
<!--#include file="dbconn.asp"-->
<html>
<head>
<title>Untitled Document</title>
<LINK href="css/style.css" type=text/css rel=stylesheet>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p align="center"> </p>
<div align="center">::未收款业务:: </div>
<p align="center"> </p><p> <%
set rs=server.createobject("ADODB.recordset")
sql="select * from caiwu where ([应收金额]>[实收金额])order by [开始日期] desc"
rs.open sql,conn,1,1
%> </p>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr bgcolor="#CCCCCC">
<td width="36" height="28">
<div align="center"><b>编号</b></div></td>
<td width="54" height="28">
<div align="center"><b>合同号</b></div></td>
<td width="188" height="28">
<div align="center"><b>企业名称</b></div></td>
<td width="50" height="28">
<div align="center"><b><font color="#000000">经办人</font></b></div></td>
<td width="110" height="28">
<div align="center"><b>业务分类</b></div></td>
<td width="144" height="28">
<div align="center"><b>具体内容</b></div></td>
<td width="94" height="28">
<div align="center"><b>开始日期</b></div></td>
<td width="64" height="28">
<div align="center"><b>到期日期</b></div></td>
<TD WIDTH="49" HEIGHT="28">
<DIV ALIGN="center"><B>应收金额</B></DIV></TD>
<td width="49" height="28">
<div align="center"><b>实收金额</b></div></td>
<TD WIDTH="49" HEIGHT="28">
<DIV ALIGN="center"><B>待收款</B></DIV></TD>
<td width="50" height="28">
<div align="center"><b>成本支出</b></div></td>
<td width="50" height="28">
<div align="center"><b>经办人1</b></div></td>
<td width="50" height="28">
<div align="center"><b>经办人2</b></div></td>
<td width="75" height="28">
<div align="center"><b>备注</b></div></td>
<td width="100" height="28">
<div align="center"><b>操作</b></div></td></tr>
<%do while not rs.eof%> <tr>
<td width="36" height="32">
<div align="center"><font color="#0000FF"><b><font face="Arial, Helvetica, sans-serif"><%=rs("id")%></font></b></font></div></td>
<td width="54" height="32">
<div align="center"><%=rs("合同编号")%></div></td>
<td width="188" height="32">
<div align="left"> <a href="list.asp?company=<%=rs("企业名称")%>"><%=rs("企业名称")%></a></div></td>
<td width="50" height="32">
<div align="center"><%=rs("企业经办人")%></div></td>
<td width="110" height="32">
<div align="center"><%=rs("项目")%></div></td>
<td width="144" height="32">
<div align="left"> <%=rs("具体内容")%></div></td>
<td width="94" height="32">
<div align="center"><%=rs("开始日期")%></div></td>
<td width="64" height="32">
<div align="center"><%=rs("到期日期")%></div></td>
<TD WIDTH="49" HEIGHT="32">
<DIV ALIGN="center"><%=rs("应收金额")%></DIV></TD>
<td width="49" height="32">
<div align="center"><%=rs("实收金额")%></div></td>
<TD WIDTH="49" HEIGHT="32">
<DIV ALIGN="center"><%=rs("应收金额")-rs("实收金额")%></DIV></TD>
<td width="50" height="32">
<div align="center"><%=rs("成本支出")%></div></td>
<td width="50" height="32">
<div align="center"><%=rs("经办人1")%></div></td>
<td width="50" height="32">
<div align="center"><%=rs("经办人2")%></div></td>
<td width="75" height="32">
<div align="center"><%=rs("memo")%></div></td>
<td width="100" height="32">
<div align="center"><a href="shoukuan.asp?id=<%=rs("id")%>">收款确认</a></div>
</td></tr>
<%
rs.movenext
loop
%> <%rs.close
set rs=nothing
%> </table>
</body>
</html>
<%end if%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -