⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baojin.asp

📁 系统包括采购管理、销售管理、分销管理、库存管理、财务管理、统计报表、编码管理等功能模块。
💻 ASP
字号:
<%
'☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
'★                                                                  ★
'☆                   简单WEB进销存管理系统 V2.1                     ☆
'★                                                                  ★
'☆  版权所有: cnshitou.cn                                             ☆
'★                                                                  ★
'☆  程序制作: 石头网络                                              ☆
'★            email:chinashiwei007@yahoo.com.cn                     ★
'☆            QQ:365167311                                          ☆
'★                                                                  ★
'☆                                                                  ☆
'★  主页地址: http://www.cnshitou.cn/            石头网络及产品       ★
'☆            http://www.cnshitou.cn/avonjxc/    演示地址             ☆
'★                                                                  ★
'☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
%>
<%
if request.Cookies("shiwei_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>&nbsp;库存报警</td>
	  <td align="right">&nbsp;</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 + -