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

📄 addorder.jsp

📁 这是一个物流管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
    <html:base />
    
    <title>addOrder.jsp</title>

	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  <script language="javascript">
     function selectGoodType(){
     
     }
  </script>
  <body>
        <strong><font size="5" color="#00a0be">xSofa物流系统<div align="right"><html:link href="../goodbye.jsp">登出</html:link></div></font></strong><hr>
	    <div style="background-color: rgb(0, 160, 190);" ><font color="#ffffff">您的位置--&gt;添加配货通知单--&gt;选择商品</font></div>
	    <p align="right"><font color="#ff0000" size="5">购物车</font><img border="0" src="../images/2.jpg" width="30" height="30"></p>
        <p align="center">
        <html:form  action="/addGood.do" method="post" >
             <html:select property="goodstype" onchange="submit()">
               <html:option value="体育用品">体育用品</html:option>
               <html:option value="生活用品">生活用品</html:option>
               <html:option value="日常用品">日常用品</html:option>
               <html:option value="医疗用品">医疗用品</html:option>
               <html:option value="家用电器">家用电器</html:option>
             </html:select><br>
             <table border="1">
               <tr><td colspan="5" align="center" bgcolor="00a0be"><font color="#ffffff">选购商品</font></td></tr>
               <tr>
                   <TD>商品名称</TD><TD>库存量(件)</TD><TD>单位</TD><TD>所需数量(件)</TD><TD>是否选购</TD>
               </tr>
                   <logic:iterate id="sps" type="bean.Stockpile" name="list" scope="session" indexId="index">
                        <tr>
                            <td><bean:define id="g_id" name="sps" property="goodsid"></bean:define>
                                <html:hidden property="goodid" value="${g_id}"/>
                                <bean:write name="sps" property="goodsname" /></td>
                            <td><bean:write name="sps" property="goodsamount"/></td>
                            <td><bean:write name="sps" property="units.unitname"/></td>
                            <td><input name="buy_num${g_id}"/></td>
                            <td><input type="checkbox" name="is_buy${g_id}" /></td>
                        </tr>
                   </logic:iterate>
               
             </table>
        
        <br>
          <html:submit value="放入购物车"  >
          </html:submit>
          <html:button value="返回" property="return" onclick="history.back()"/>
        </html:form>
         
  </body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -