12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <%--
- time:2017-06-05 16:33:55
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>物品申请明细</title>
- <%@include file="/commons/include/get.jsp"%>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">物品申请详细信息</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group">
- <a class="link back" href="list.ht?flag=${sysGoodsApplication.flag}"><span></span>返回</a>
- </div>
- </div>
- </div>
- </div>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <th width="20%">申请科室:</th>
- <td>${sysGoodsApplication.department}</td>
- </tr>
- <tr>
- <th width="20%">人员:</th>
- <td>${sysGoodsApplication.personnel}</td>
- </tr>
- <tr>
- <th width="20%">申请时间:</th>
- <td>
- <fmt:formatDate value="${sysGoodsApplication.applicationdate}" pattern="yyyy-MM-dd HH:mm:dd"/>
- </td>
- </tr>
- <tr>
- <th width="20%">申请原因: </th>
- <td>${sysGoodsApplication.reason}</td>
- </tr>
- </table>
- <table class="table-grid table-list" cellpadding="1" cellspacing="1">
- <tr>
- <td colspan="7" style="text-align: center">申请物品</td>
- </tr>
- <tr>
- <th>物品编号</th>
- <th>物品名称</th>
- <th>品牌</th>
- <th>规格</th>
- <th>价格</th>
- <th>数量</th>
- <th>总价</th>
- </tr>
- <c:forEach items="${sysGoodsApplicationRelaList}" var="sysGoodsApplicationRelaItem" varStatus="status">
- <tr>
- <input type="hidden" id="id" name="id" value="${sysGoodsApplicationRelaItem.id}" class="inputText"/>
- <td style="text-align: center">${sysGoodsApplicationRelaItem.productcode}</td>
- <td style="text-align: center">${sysGoodsApplicationRelaItem.productname}</td>
- <td style="text-align: center">${sysGoodsApplicationRelaItem.brand}</td>
- <td style="text-align: center">${sysGoodsApplicationRelaItem.specification}</td>
- <td style="text-align: center;">${sysGoodsApplicationRelaItem.price}</td>
- <td style="text-align: center">${sysGoodsApplicationRelaItem.quantity}</td>
- <td style="text-align: center;">${sysGoodsApplicationRelaItem.totalprice}</td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </div>
- </body>
- </html>
|