📄 addorder.jsp
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic"
prefix="logic"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles"
prefix="tiles"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template"
prefix="template"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested"
prefix="nested"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>中国胜利汽配-新建订单</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">
-->
<style type="text/css">
<!--
body {
background-image: url();
background-color: #F4F7FE;
}
.input {
background-color: #EFF3FF;
border: 1px solid #6386BD;
}
.STYLE1 {font-size: 18px}
.STYLE4 {font-size: 12px}
-->
</style>
<script type="text/javascript">
function check()
{
var customerNo=document.forms[0].elements('customerNo').value;
if(customerNo==0)
{
alert("请选择客户姓名!");
return false;
}
}
</script>
</head>
<body>
<table width="760" height="480" border="0" cellpadding="0"
cellspacing="0">
<tr bgcolor="#F4F7FE">
<td height="18">
<table width="760" height="17" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td>
<span class="STYLE4">当前位置:<A
href="/CarFitManageSystem/carIndex.jsp">首页</A> > <a
href="ordersManage.jsp">订单管理</a> > 新建订货单</span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="450">
<p align="center" class="STYLE1">
添加订单
<span class="STYLE4">(根据客户的需求,添加订单 )</span> </p>
<p class="STYLE1">
<a href="addCus.jsp" class="STYLE4">添加客户 </a> </p>
<html:form action="/addOrders.do" onsubmit="return check()">
<table width="760" height="289" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td width="51" height="30"> </td>
<td width="65"><span class="STYLE4">客户名称: </span> </td>
<td width="128"><span class="STYLE4">
<html:select property="customerNo">
<html:option value="0">---请选择---</html:option>
<logic:iterate id="customer" name="cus" scope="session">
<html:option value="${customer.cusPerson}">
<bean:write name="customer" property="cusPerson" />
</html:option>
</logic:iterate>
</html:select>
</span> </td>
<td width="186"><div class="STYLE4">
<html:submit styleClass="input">确 定</html:submit>
<html:reset styleClass="input">取 消</html:reset>
</div></td>
<td width="162"> </td>
</tr>
<tr>
<td height="15" colspan="7"> </td>
</tr>
<tr>
<td height="244" colspan="7"> </td>
</tr>
</table>
</html:form> </td>
</tr>
<tr>
<td height="12">
<p>
<STRONG><span class="STYLE4"><A
href="http://www.ccd.com.cn/friendship_link/index.asp">友情链接:
</A><A href="http://webunion.ccd.com.cn/" target="_blank">中国建筑装饰网站联盟</A>
</span> </STRONG> </p> </td>
</tr>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -