📄 a05e6650152e001d141adb233f2e4e02
字号:
<%@ 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"><span class="big3"> 采购单详情</span>
</td>
</tr>
</table>
<br>
<table class="tablestyle1">
<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="stockId" value="${stock.stockId }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">负责人: </td>
<td nowrap class="TableData">
<html:text property="employeeId" value="${stock.employee.employeeName }" readonly="true" size="20" maxlength="100" />
</td>
<td nowrap class="TableData">采购日期: </td>
<td nowrap class="TableData">
<html:text property="createDate" value="${stock.createDate }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">产品名称: </td>
<td nowrap class="TableData">
<html:text property="clientProductionId" value="${stock.clientProduction.clientProductionName }" readonly="true" size="20" maxlength="100" />
</td>
<td nowrap class="TableData">数量: </td>
<td nowrap class="TableData" >
<html:text property="amount" value="${stock.amount }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">生产方: </td>
<td nowrap class="TableData" >
<html:text property="productionTypeId" value="${stock.productionType.name }" readonly="true" size="20" maxlength="100" />
</td>
<td nowrap class="TableData">付款日期: </td>
<td nowrap class="TableData" >
<html:text property="payDate" value="${stock.payDate }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableData">状态: </td>
<td nowrap class="TableData" >
<html:select property="state">
<html:option value="---请选择---"></html:option>
<html:option value="0">未付款</html:option>
<html:option value="1">已付款</html:option>
</html:select>
<c:if test="${state == 0 }"
<html:text property="sum" value="未付款" readonly="true" size="20" maxlength="100" />
</c:if>
</td>
<td nowrap class="TableData">总价: </td>
<td nowrap class="TableData" >
<html:text property="sum" value="${stock.sum }" readonly="true" size="20" maxlength="100" />
</td>
</tr>
<tr>
<td nowrap class="TableControl" colspan="4" align="center">
<input type="button" onclick="history.back(-1)" class="BigButton"/>
</td>
</tr>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -