📄 d0bb81a11c32001d139f992bfca89756
字号:
<%@ 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/notify_open.gif" 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">订单编号: </td>
<td nowrap class="TableData" colspan="3">
<html:text property="orderId" value="${order.orderId }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">创建者: </td>
<td nowrap class="TableData">
<html:text property="userId" value="${order.user.userName }" readonly="true" size="20" maxlength="100" />
</td>
<td nowrap class="TableData">创建日期: </td>
<td nowrap class="TableData">
<html:text property="createDate" value="${order.createDate }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">客户名称: </td>
<td nowrap class="TableData">
<html:text property="clientId" value="${order.client.clientName }" readonly="true" size="20" maxlength="100" />
</td>
<td nowrap class="TableData">付款日期: </td>
<td nowrap class="TableData">
<html:text property="payDate" value="${order.payDate }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">负责人: </td>
<td nowrap class="TableData" colspan="3">
<html:text property="employeeId" value="${order.employee.employeeName }" readonly="true" size="20" maxlength="100" />
</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">
<c:if test="${order.state == 0 }">
<html:text property="employeeId" value="未付款" readonly="true" size="20" maxlength="100" />
</c:if>
<c:if test="${order.state == 1 }">
<html:text property="employeeId" value="已付款" readonly="true" size="20" maxlength="100" />
</c:if>
</td>
</tr>
<tr>
<td nowrap class="TableData">备注: </td>
<td nowrap class="TableData" colspan="3">
<html:textarea property="remark" value="${order.remark }" readonly="true" cols="57" rows="3" styleClass="BigInput" />
</td>
</tr>
<c:if test="${! empty order.lists }">
<c:set var="i" value="0"></c:set>
<c:forEach items="${order.lists }" var="item">
<c:set var="i" value="${i+1 }"></c:set>
<tr>
<td nowrap class="TableHeader" colspan="4" align="left">
订单明细<c:out value="${i }"></c:out>:
</td>
</tr>
<tr>
<td nowrap class="TableData">产品名称: </td>
<td nowrap class="TableData">
<html:text property="orderId" value="${item.production.productionName }" readonly="true" size="20" maxlength="100" />
</td>
<td nowrap class="TableData">数量: </td>
<td nowrap class="TableData">
<html:text property="userId" value="${item.amount }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">单价: </td>
<td nowrap class="TableData">
<html:text property="orderId" value="${item.production.price }" readonly="true" size="20" maxlength="100" />
</td>
<td nowrap class="TableData">总金额: </td>
<td nowrap class="TableData">
<html:text property="userId" value="${item.sum }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
</c:forEach>
</c:if>
<tr>
<td nowrap class="TableControl" colspan="4" align="center">
<input type="button" value="返回" onClick="history.back(-1);" class="BigButton">
</td>
</tr>
</html:form>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -