📄 orderform.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<script language="javascript" src="js/calendar.js"></script>
<html:html>
<head>
<title>${CompanyName }${ProjectName }</title>
<%@ include file="/commons/meta.jsp" %>
</head>
<body class="bodycolor" topmargin="5" onload="document.form1.PROVIDER_NAME.focus();">
<table class="title1">
<tr>
<td class="Big"><img src="${ctx }/images/edit.gif" WIDTH="16" HEIGHT="16" align="absmiddle"><span class="big3"> 订单编辑</span>
</td>
</tr>
</table>
<br>
<table class="tablestyle1">
<html:form action="order.do" method="post">
<html:hidden property="p" value="save"/>
<html:hidden property="id" value="${orderForm.id }"/>
<tr>
<td nowrap class="TableHeader" colspan="4" align="left">
订单基本信息:
</td>
</tr>
<tr>
<td nowrap class="TableData" width="25%">订单编号: </td>
<td nowrap class="TableData" colspan="3">
<html:text property="orderId" size="20" maxlength="100" />
<font color="red"><html:errors property="orderId"/></font>
</td>
</tr>
<tr>
<td nowrap class="TableData" width="25%">创建者: </td>
<td nowrap class="TableData" width="25%">
<html:select property="userId">
<html:option value="">---请选择---</html:option>
<html:options collection="users" property="id" labelProperty="userName"/>
</html:select>
<font color="red"><html:errors property="userId"/></font>
</td>
<td nowrap class="TableData" width="25%">创建日期: </td>
<td nowrap class="TableData" width="25%">
<html:text property="createDate" readonly="true" size="20" maxlength="100" />
<img src="images/calendar.gif" ondblclick="setday(createDate)"/>
<font color="red"><html:errors property="createDate"/></font>
</td>
</tr>
<tr>
<td nowrap class="TableData">客户名称: </td>
<td nowrap class="TableData">
<html:select property="clientId">
<html:option value="">---请选择---</html:option>
<html:options collection="clients" property="id" labelProperty="clientName"/>
</html:select>
<font color="red"><html:errors property="clientId"/></font>
</td>
<td nowrap class="TableData">付款日期: </td>
<td nowrap class="TableData">
<html:text property="payDate" readonly="true" size="20" maxlength="100" />
<img src="images/calendar.gif" ondblclick="setday(payDate)"/>
<font color="red"><html:errors property="payDate"/></font>
</td>
</tr>
<tr>
<td nowrap class="TableData">负责人: </td>
<td nowrap class="TableData" colspan="3">
<html:select property="employeeId">
<html:option value="">---请选择---</html:option>
<html:options collection="employees" property="id" labelProperty="employeeName"/>
</html:select>
<font color="red"><html:errors property="employeeId"/></font>
</td>
</tr>
<tr>
<td nowrap class="TableHeader" colspan="4" align="left">
订单备注信息:
</td>
</tr>
<tr>
<td nowrap class="TableData">状态: </td>
<td nowrap class="TableData" colspan="3">
<html:select property="state" >
<html:option value="">---请选择---</html:option>
<html:option value="0" >未付款</html:option>
<html:option value="1" >已付款</html:option>
</html:select>
<font color="red"><html:errors property="state"/></font>
</td>
</tr>
<tr>
<td nowrap class="TableData">备注: </td>
<td nowrap class="TableData" colspan="3">
<html:textarea property="remark" cols="57" rows="3" />
</td>
</tr>
<tr>
<td nowrap class="TableControl" colspan="4" align="center">
<html:submit styleClass="BigButton" title="添加订单信息">确定</html:submit>
<html:reset styleClass="BigButton" title="重填">重填</html:reset>
</td>
</tr>
</html:form>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -