📄 dx_capital.asp
字号:
<!-- #include file="capital_calculate.asp" -->
<html>
<head>
<title>总资产信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/style.css" rel="stylesheet" type="text/css">
<style>
body {
background-color:#FFFFFF;
}
</style>
</HEAD>
<script language="javascript">
var show=false;
function collapse(str, objName)
{
var obj;
obj = document.getElementById(objName);
if (show)
{
obj.style.display = 'none';
show=false;
}
else
{
show=true;
obj.style.display = '';
}
}
</script>
<BODY>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#C4D8ED">
<tr>
<td><img src="Images/r_1.gif" alt="" /></td>
<td width="100%" background="Images/r_0.gif">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td> 总资产信息表</td>
<td align="right"> </td>
</tr>
</table>
</td>
<td><img src="Images/r_2.gif" alt="" /></td>
</tr>
<tr>
<td></td>
<td>
<table align="center" cellpadding="4" cellspacing="1" class="toptable grid" border="1">
<tr>
<td width="20%" align="right" height="30">库存资产:</td>
<td width="80%">
<%if Num1=0 then%>暂无库存<%else%>
<%=dx_ToDepot_capital_all%> 元
<input type="button" value="详细情况" class="button" onClick="collapse(this, 'buy1')">
<%end if%>
<div id="buy1" style="display:none;">
<table align="center" cellpadding="2" cellspacing="0" class="grid" border="1" width="100%">
<tr align="center">
<td height="25" width="10%" class="highlight"><strong>进货单号</strong></td>
<td width="10%" class="highlight"><strong>商品号</strong></td>
<td width="10%" class="highlight"><strong>次品回库</strong></td>
<td width="15%" class="highlight"><strong>进货价</strong></td>
<td width="15%" class="highlight"><strong>现存数量</strong></td>
<td width="15%" class="highlight"><strong>总资产</strong></td>
</tr>
<%for i=1 to Num1 %>
<tr>
<td align="center" class="highlight"><%=dx_ToDepot_List(i)%> </td>
<td align="center" class="highlight"><%=dx_ToDepot_product(i)%> </td>
<td align="center" class="highlight"><%=dx_ToDepot_ToNew(i)%> </td>
<td align="center" class="highlight"><%=dx_ToDepot_buy_price(i)%> </td>
<td align="center" class="highlight"><%=dx_ToDepot_now_count(i)%> </td>
<td align="center" class="highlight"><%=dx_ToDepot_capital(i)%> 元</td>
</tr>
<%next%>
</table>
</div>
</td>
</tr>
<tr>
<td align="right" height="30">银行资金:</td>
<td>
<%if Num2=0 then%>暂无银行资金<%else%>
<%=dx_bank_capital%> 元
<input type="button" value="详细情况" class="button" onClick="collapse(this, 'buy2')">
<%end if%>
<div id="buy2" style="display:none;">
<table align="center" cellpadding="2" cellspacing="0" class="grid" border="1" width="100%">
<tr align="center">
<td height="25" width="15%" class="highlight"><strong>开户银行</strong></td>
<td width="15%" class="highlight"><strong>银行账号</strong></td>
<td width="10%" class="highlight"><strong>资金</strong></td>
</tr>
<%for i=1 to Num2 %>
<tr>
<td align="center" class="highlight"><%=dx_bank_bank(i)%> </td>
<td align="center" class="highlight"><%=dx_bank_num(i)%> </td>
<td align="center" class="highlight"><%=dx_bank_money(i)%> 元</td>
</tr>
<%next%>
</table>
</div>
</td>
</tr>
<tr>
<td align="right" height="30">负债总额:</td>
<td>
<%if Num3=0 then%>暂无负债记录<%else%>
<%=dx_debt_capital%> 元
<input type="button" value="详细情况" class="button" onClick="collapse(this, 'buy3')">
<%end if%>
<div id="buy3" style="display:none;">
<table align="center" cellpadding="2" cellspacing="0" class="grid" border="1" width="100%">
<tr align="center">
<td height="25" width="10%" class="highlight"><strong>负债原因</strong></td>
<td width="5%" class="highlight"><strong>负债金额</strong></td>
</tr>
<%for i=1 to Num3 %>
<tr>
<td align="center" class="highlight">
<%if dx_debt_about(i)<>"" then%>
<%=dx_debt_about(i)%>
<%else%>
入库负债!
<%end if%>
</td>
<td align="center" class="highlight"><%=dx_debt_money(i)%> </td>
</tr>
<%next%>
</table>
</div>
</td>
</tr>
<tr>
<td align="right" height="30">欠账总额:</td>
<td>
<%if Num4=0 then%>暂无欠账记录<%else%>
<%=dx_accounts_capital%> 元
<input type="button" value="详细情况" class="button" onClick="collapse(this, 'buy4')">
<%end if%>
<div id="buy4" style="display:none;">
<table align="center" cellpadding="2" cellspacing="0" class="grid" border="1" width="100%">
<tr align="center">
<td height="25" width="10%" class="highlight"><strong>欠账原因</strong></td>
<td width="5%" class="highlight"><strong>欠账金额</strong></td>
</tr>
<%for i=1 to Num4 %>
<tr>
<td align="center" class="highlight">
<%if dx_accounts_about(i)<>"" then%>
<%=dx_accounts_about(i)%>
<%else%>
出库欠账!
<%end if%></td>
<td align="center" class="highlight"><%=dx_accounts_money(i)%> </td>
</tr>
<%next%>
</table>
</div>
</td>
</tr>
<tr>
<td align="right" height="30">初始汇总:</td>
<td><%=dx_site_money%> 元</td>
</tr>
<tr>
<td align="right" height="30">现有总资产:</td>
<td><%=dx_capital_all%> 元</td>
</tr>
</table>
</td>
<td></td>
</tr>
<tr>
<td><img src="Images/r_4.gif" alt="" /></td>
<td></td>
<td><img src="Images/r_3.gif" alt="" /></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -