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

📄 tui.asp

📁 不错的进销存管理系统。功能比较全
💻 ASP
📖 第 1 页 / 共 2 页
字号:
	<td class="category">修改</td>
	<%end if%>
	<%if fla8="1" or session("shiwei_id")="1" then%>
    <td class="category">删除</td>
	<%end if%>
  </tr>
  <%
  set rs_buy =server.createobject("ADODB.RecordSet")
  sql="select * from sell where type=2 and zu"
  if session("shiwei_id")<>1 and lookbuysell="yes" and fla89="0" then
    sql=sql&" and id_login="&session("shiwei_id")
  end if
  if nowstartdate<>"" then
    sql=sql&" and selldate-#"&nowstartdate&"#>=0"
  end if  
  if nowenddate<>"" then
    sql=sql&" and selldate-#"&nowenddate&"#<=0"
  end if
  if nowku<>"" then
	sql=sql&" and bianhao in (select bianhao from sell where type=2 and id_ku="&nowku&" and zu=false)"
  end if  
  if nowkeyword<>"" then
    sql=sql&" and (bianhao = '"&nowkeyword&"' or id_gys in (select id from gys where company like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or bianhao in (select bianhao from sell where type=2 and (title like '%"&nowkeyword&"%' or huohao like '%"&nowkeyword&"%')))"
  end if

  if request("order1")<>"" then
    sql=sql&" order by bianhao "&request("order1")
  elseif request("order2")<>"" then
    sql=sql&" order by huohao "&request("order2")
  elseif request("order3")<>"" then
    sql=sql&" order by title "&request("order3") 
  elseif request("order4")<>"" then
    sql=sql&" order by selldate "&request("order4") 
  elseif request("order5")<>"" then
    sql=sql&" order by id_login "&request("order5") 
  elseif request("order6")<>"" then
    sql=sql&" order by id_gys "&request("order6")
  elseif request("order7")<>"" then
    sql=sql&" order by shulian "&request("order7")
  elseif request("order8")<>"" then
    sql=sql&" order by price "&request("order8")
  elseif request("order9")<>"" then
    sql=sql&" order by price "&request("order9")
  elseif request("order10")<>"" then
    sql=sql&" order by isok "&request("order10")		        
  else
    sql=sql&" order by selldate desc"  
  end if
	
  rs_buy.open sql,conn,1,3
  if not rs_buy.eof then
  rs_buy.pagesize=maxrecord
  rs_buy.absolutepage=currentpage
  for currentrec=1 to rs_buy.pagesize
    if rs_buy.eof then
      exit for
    end if
  %>
  <tr onMouseOver="this.className='highlight'" onMouseOut="this.className=''" onDblClick="javascript:var win=window.open('print_tui.asp?bianhao=<%=rs_buy("bianhao")%>','详细信息','width=853,height=470,top=176,left=161,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=yes'); win.focus()">
    <td align="center"><img src="../images/folder_close.gif" style="cursor:hand" onClick="collapse(this, 'buy<%=currentrec%>')" /></td>
	<td align="center" height="25"><%=rs_buy("bianhao")%></td>
	<td align="center"><%=rs_buy("selldate")%></td>
	<td align="center">
	  <%
	  sql="select * from login where id="&rs_buy("id_login")
	  set rs_login=conn.execute(sql)
	  %>
	  <%if rs_login.eof then%><%=rs_buy("login")%><%else%><%=rs_login("username")%> (<%=rs_login("bianhao")%>)<%end if%>
	</td>
	<td align="center">
	<%
	  sql="select * from gys where id="&rs_buy("id_gys")
	  set rs_gys=conn.execute(sql)
	  %>
	  <%if rs_gys.eof then%><%=rs_buy("gys")%><%else%><%=rs_gys("company")%><%end if%>	
	</td>	
	<td align="center">
	  <%
	  sql="select sum(shulian) from sell where bianhao='"&rs_buy("bianhao")&"' and zu=false"
	  if nowku<>"" then
	    sql=sql&" and id_ku="&nowku
	  end if
	  if nowkeyword<>"" then
        sql=sql&" and (bianhao = '"&nowkeyword&"' or id_gys in (select id from gys where company like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or huohao like '%"&nowkeyword&"%')"
  	  end if
	  set rs_sum=conn.execute(sql)
	  %>
	  <%=formatnumber(rs_sum(0),2)%>	
	</td>
	<%if session("shiwei_id")="1" or fla87="1" then%>
	<td align="center">
	  <%
	  sql="select sum(price*shulian) from sell where bianhao='"&rs_buy("bianhao")&"' and zu=false"
	  if nowku<>"" then
	    sql=sql&" and id_ku="&nowku
	  end if
	  if nowkeyword<>"" then
        sql=sql&" and (bianhao = '"&nowkeyword&"' or id_gys in (select id from gys where company like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or huohao like '%"&nowkeyword&"%')"
  	  end if
	  set rs_sum=conn.execute(sql)
	  %>
	  <%=formatnumber(rs_sum(0),2)%>	
	</td>
	<%end if%>
	<td align="center"><%if rs_buy("isok") then%><%if fla7="1" or session("shiwei_id")="1" then%><a href="?bianhao=<%=rs_buy("bianhao")%>&isok=false&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&keyword=<%=nowkeyword%>&order1=<%=request("order1")%>&order2=<%=request("order2")%>&order3=<%=request("order3")%>&order4=<%=request("order4")%>&order5=<%=request("order5")%>&order6=<%=request("order6")%>&order7=<%=request("order7")%>&order8=<%=request("order8")%>&order9=<%=request("order9")%>&order10=<%=request("order10")%>&order11=<%=request("order11")%>&order12=<%=request("order12")%>&order13=<%=request("order13")%>&order14=<%=request("order14")%>&order15=<%=request("order15")%>"><img src="../images/check.gif" border="0" alt="点击设为没完成"></a><%else%><img src="../images/check.gif" border="0"><%end if%><%else%><%if fla7="1" or session("shiwei_id")="1" then%><a href="?bianhao=<%=rs_buy("bianhao")%>&isok=true&page=<%=currentpage%>&startdate=<%=nowstartdate%>&enddate=<%=nowenddate%>&ku=<%=nowku%>&keyword=<%=nowkeyword%>&order1=<%=request("order1")%>&order2=<%=request("order2")%>&order3=<%=request("order3")%>&order4=<%=request("order4")%>&order5=<%=request("order5")%>&order6=<%=request("order6")%>&order7=<%=request("order7")%>&order8=<%=request("order8")%>&order9=<%=request("order9")%>&order10=<%=request("order10")%>&order11=<%=request("order11")%>&order12=<%=request("order12")%>&order13=<%=request("order13")%>&order14=<%=request("order14")%>&order15=<%=request("order15")%>"><img src="../images/nomoney.gif" border="0" alt="点击设为已完成"></a><%else%><img src="../images/nomoney.gif" border="0"><%end if%><%end if%></td>
	<%if fla5="1" or session("shiwei_id")="1" then%>
	<td align="center"><img src="../images/res.gif" border="0" hspace="2" align="absmiddle" style="cursor:hand;" onClick="javascript:var win=window.open('tui_modi.asp?id=<%=rs_buy("id")%>','修改','width=853,height=470,top=176,left=161,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=yes'); win.focus()"></td>
	<%end if%>
	<%if fla8="1" or session("shiwei_id")="1" then%>
    <td align="center"><input type="checkbox" name="ID" value="<%=rs_buy("bianhao")%>" style="border:0"></td>
	<%end if%>
  </tr>
  <%
    sql="select * from sell where type=2 and zu=false and bianhao='"&rs_buy("bianhao")&"'"
	if nowku<>"" then
	  sql=sql&" and id_ku="&nowku
	end if
	if nowkeyword<>"" then
      sql=sql&" and (bianhao = '"&nowkeyword&"' or id_gys in (select id from gys where company like '%"&nowkeyword&"%') or id_login in (select id from login where username like '%"&nowkeyword&"%') or title like '%"&nowkeyword&"%' or huohao like '%"&nowkeyword&"%')"
  	end if
	set rs_buy2=conn.execute(sql)
  %>  
  <tr id="buy<%=currentrec%>" style="display:none;">
    <td colspan="16" class="category">
	  <table align="center" cellpadding="4" cellspacing="1" class="grid" border="1" width="100%">
		<tr align="center">
		  <%if showpic="yes" then%><td width="70">图片</td><%end if%>
		  <td height="30">货号</td>
		  <td>产品名称</td>
		  <td>出货仓库</td>
		  <td>数量</td>
		  <%if session("shiwei_id")="1" or fla87="1" then%>
		  <td>退货价</td>
		  <td>金额</td>
		  <%end if%>
		</tr>	  
	    <%
		do while rs_buy2.eof=false
		sql="select * from produit where id="&rs_buy2("id_produit")
		set rs_produit=conn.execute(sql)		
		%>
	    <tr>
		  <%if showpic="yes" then%><td align="center"><%if rs_produit.eof then%><%if rs_buy2("photo")<>"" then%><a href="../upload/<%=rs_buy2("photo")%>" target="_blank"><img src="../upload/<%=rs_buy2("photo")%>" border="0" width="60"></a><%else%>无图<%end if%><%else%><%if rs_produit("photo")<>"" then%><a href="../upload/<%=rs_produit("photo")%>" target="_blank"><img src="../upload/<%=rs_produit("photo")%>" border="0" width="60"></a><%else%>无图<%end if%><%end if%></td><%end if%>
		  <td align="center"><%if rs_produit.eof then%><%=rs_buy2("huohao")%><%else%><%=rs_produit("huohao")%><%end if%></td>
		  <td align="center"><%if rs_produit.eof then%><%=rs_buy2("title")%><%else%><%=rs_produit("title")%><%end if%></td>
		  <td align="center"><%=rs_buy2("ku")%></td>
		  <td align="center"><%=formatnumber(rs_buy2("shulian"),2)%></td>
		  <%if session("shiwei_id")="1" or fla87="1" then%>
		  <td align="center"><%=formatnumber(rs_buy2("price"),2)%></td>
		  <td align="center"><%=formatnumber(rs_buy2("shulian")*rs_buy2("price"),2)%></td>
		  <%end if%>		  
		</tr>
		<%
		rs_buy2.movenext
		loop
		%>
	  </table>
	  <%=replace(rs_buy("beizhu")&"",chr(13),"<br>")%>
	</td>
  </tr>
  <%	
    rs_buy.movenext
  next
  else
  %>
  <tr align="center" onMouseOver="this.className='highlight'" onMouseOut="this.className=''">
    <td colspan="16" height="25" align="center" style="color:red"><b>没有找到记录</b></td>
  </tr>
  <%
  end if
  %>
  
  
  
  <%
  if rs_buy.recordcount>0 then 
  %> 
  <tr>
    <td colspan="16" height="30" class="category">
	<table cellpadding=0 cellspacing=0 width="100%">
	<tr>
	<td width="20%" align="left" style="color:#FF0000;">&nbsp;双击查看打印单</td>  
	<td width="80%" align="right">
	&nbsp;&nbsp;
      <%=rs_buy.recordcount%>&nbsp;条信息&nbsp; 共&nbsp;<%=rs_buy.pagecount%>&nbsp;页&nbsp;
  <%
  nowstart=currentpage-3
  if nowstart<1 then
    nowstart=1
  end if
  nowend=currentpage+3
  if nowend>rs_buy.pagecount then
    nowend=rs_buy.pagecount
  end if
  response.write "&nbsp;<a href='?startdate="&nowstartdate&"&enddate="&nowenddate&"&ku="&nowku&"&keyword="&nowkeyword&"&page=1&order1="&request("order1")&"&order2="&request("order2")&"&order3="&request("order3")&"&order4="&request("order4")&"&order5="&request("order5")&"&order6="&request("order6")&"&order7="&request("order7")&"&order8="&request("order8")&"&order9="&request("order9")&"&order10="&request("order10")&"&order11="&request("order11")&"&order12="&request("order12")&"&order13="&request("order13")&"&order14="&request("order14")&"&order15="&request("order15")&"' class='page'>最前页</a>&nbsp;"
  for ipage=nowstart to nowend
    if cstr(ipage)=cstr(currentpage) then
      response.write "&nbsp;<span style='font-weight:bold;color:#5858E6'>" & ipage &"</span>&nbsp;"
    else
      response.write "&nbsp;[&nbsp;<a href='?startdate="&nowstartdate&"&enddate="&nowenddate&"&ku="&nowku&"&keyword="&nowkeyword&"&page="&ipage&"&order1="&request("order1")&"&order2="&request("order2")&"&order3="&request("order3")&"&order4="&request("order4")&"&order5="&request("order5")&"&order6="&request("order6")&"&order7="&request("order7")&"&order8="&request("order8")&"&order9="&request("order9")&"&order10="&request("order10")&"&order11="&request("order11")&"&order12="&request("order12")&"&order13="&request("order13")&"&order14="&request("order14")&"&order15="&request("order15")&"' class='page'>" & ipage &"</a>&nbsp;]&nbsp;"
    end if
  next
  response.write "&nbsp;<a href='?startdate="&nowstartdate&"&enddate="&nowenddate&"&ku="&nowku&"&keyword="&nowkeyword&"&page="&rs_buy.pagecount&"&order1="&request("order1")&"&order2="&request("order2")&"&order3="&request("order3")&"&order4="&request("order4")&"&order5="&request("order5")&"&order6="&request("order6")&"&order7="&request("order7")&"&order8="&request("order8")&"&order9="&request("order9")&"&order10="&request("order10")&"&order11="&request("order11")&"&order12="&request("order12")&"&order13="&request("order13")&"&order14="&request("order14")&"&order15="&request("order15")&"' class='page'>最后页</a>&nbsp;"
%>
    <select name="page" onChange="form1.action='?';form1.submit();">
<%
	for x=1 to rs_buy.pagecount
%>
	  <option value="<%=x%>"<%if currentpage=trim(cstr(x)) then%> selected="selected"<%end if%>><%=x%></option>
<%	
	next
%>
	</select>
    <%if fla8="1" or session("shiwei_id")="1" then%>
	<input name="chkall" type="checkbox" id="chkall" value="select" onClick="CheckAll(this.form)" style="border:0"> 全选
	<input type="submit" value="删 除" onClick="return confirm('此操作无法恢复!!!请慎重!!!\n\n确定要删除所选择的退货记录吗?')" class="button">
	<%end if%>
  </td>
  </tr></table></td></tr>
<%end if%> 
</form>   
</table>
<!--endprint-->
</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 + -