?? baojin.asp
字號:
<%
'☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
'★ ★
'☆ 億達科技WEB進銷存管理系統 V3.1 ☆
'★ ★
'☆ 版權所有: 常州億達科技有限公司 ☆
'★ ★
'☆ 程序制作: 常州億達科技有限公司 ☆
'★ email:yidatech@163.com ★
'☆ QQ:874031633 ☆
'★ ★
'☆ ☆
'★ ★
'☆ ☆
'★ ★
'☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
%>
<%
if session("yida_username")="" then
response.Redirect "login.asp"
end if
%>
<!-- #include file="conn.asp" -->
<!-- #include file="const.asp" -->
<html>
<head>
<title>庫存報警</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="style/style.css" rel="stylesheet" type="text/css">
<style>
body {
background-color:#FFFFFF;
}
</style>
</HEAD>
<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" width="100%">
<tr align="center">
<td class="category" height="30">品名</td>
<td class="category">貨號</td>
<td class="category">庫存數量</td>
</tr>
<%
sql="select * from produit where shulian<baojin"
set rs_produit=conn.execute(sql)
if rs_produit.eof=false then
do while rs_produit.eof=false
sql="select * from ku where id="&rs_produit("id_ku")
set rs_ku=conn.execute(sql)
set rs_zong=conn.execute("select sum(shulian) from produit where huohao='"&rs_produit("huohao")&"'")
%>
<tr onMouseOver="this.className='highlight'" onMouseOut="this.className=''">
<td align=center height=25><%=rs_produit("title")%></td>
<td align=center><%=rs_produit("huohao")%></td>
<td align=center>共<%=formatnumber(rs_zong(0),2)%> | <%=rs_ku("ku")%>(<font color=#ff0000><%=formatnumber(rs_produit("shulian"),2)%></font>)</td>
</tr>
<%
rs_produit.movenext
loop
%>
<%else%>
<tr onMouseOver="this.className='highlight'" onMouseOut="this.className=''">
<td align=center height=25 colspan="3" style="color:#ff0000">沒有產品報警</td>
</tr>
<%end if%>
</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 + -