📄 d_financedetail.asp
字号:
<!--#include file="../include/Pubconn.asp"-->
<!--#include file="../include/PubFun.asp"-->
<!--#include file="../include/PubCode.asp"-->
<%
'username=Getuser()
'userclass=TableVisitor("d_linkman",username)
'if userclass<2 then
' response.write"<br>"
' response.write"<br>"
' response.write "<center><font size=2>抱歉,您没有此项操作权限!<a href=D_linkManbrow.asp>返回</a>"
' response.end
'end if
%>
<%
'传过来的客户序号
khxh=request("par_id")
if khxh<>"" then
set rskh=Server.CreateObject("ADODB.RecordSet")
sql="select ClientName from D_ClientInfo where clientnum='"&khxh&"'"
rskh.open sql,pubconn,1
if not rskh.eof then
khmc=rskh("clientName")
end if
'通过客户序号在营业状况表中找对应的数据
set rscw=Server.CreateObject("ADODB.RecordSet")
sql="select * from D_Finance where Clientnum='"&khxh&"'"
rscw.open sql,pubconn,1
if not rscw.eof then
BusinessPlace=rscw("BusinessPlace")
PlaceValue=rscw("PlaceValue")
PayWay=rscw("PayWay")
PayPerson=rscw("PayPerson")
InvoiceWay=rscw("InvoiceWay")
if rscw("SupportFee")="" then
SupportFee=0
else
SupportFee=rscw("SupportFee")
end if
if rscw("BaseFee")="" then
BaseFee=0
else
BaseFee=rscw("BaseFee")
end if
if rscw("EnterFee")="" then
EnterFee=0
else
EnterFee=rscw("EnterFee")
end if
if rscw("OtherFee")="" then
OtherFee=0
else
OtherFee=rscw("OtherFee")
end if
OpenBank=rscw("OpenBank")
Counting=rscw("Counting")
Remark=rscw("Remark")
else
BusinessPlace=""
PlaceValue=""
PayWay=""
PayPerson=""
InvoiceWay=""
SupportFee=0
BaseFee=0
EnterFee=0
OtherFee=0
OpenBank=""
Counting=""
Remark=""
end if
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>客户跟进计划</title>
<link href="../cread.css" rel="stylesheet" type="text/css">
</head>
<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>
<form method="POST" action="D_businessInfo.asp" name="form1" >
<table border="1" width="100%" cellspacing="0" height="9" bgcolor="#F7F4E5" bordercolor="#F7F4E5">
<tr>
<td width="13%" height="23" align="right" bgcolor="#F7F4E5" bordercolorlight="#F7F4E5">
<font size="2">
客户名称
</font>
</td>
<td width="73%" height="23" bgcolor="#F7F4E5" bordercolorlight="#F7F4E5" colspan="5">
<input type="text" name="khmc" size="27" value="<%=khmc%>" readonly style="background-color: #edefef">
</tr>
<tr>
<td width="13%" height="23" align="right" bgcolor="#F7F4E5" bordercolorlight="#F7F4E5">
<font size="2">营业场所
</font>
</td>
<td width="15%" height="23" bgcolor="#F7F4E5" bordercolorlight="#F7F4E5">
<p align="left">
<input type="text" name="khmc1" size="13" value="<%=BusinessPlace%>" readonly style="background-color: #edefef">
<td width="10%" height="23" align="right" bgcolor="#F7F4E5" bordercolorlight="#F7F4E5">
<font size="2">价值
</font>
</td>
<td width="48%" height="23" bgcolor="#F7F4E5" bordercolorlight="#F7F4E5" colspan="3" >
<input type="text" name="khmc2" size="13" value="<%=PlaceValue%>" readonly style="background-color: #edefef">
</td>
</tr>
<tr>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -