sysGoodsApplicationGet.jsp 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <%--
  2. time:2017-06-05 16:33:55
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>物品申请明细</title>
  9. <%@include file="/commons/include/get.jsp"%>
  10. </head>
  11. <body>
  12. <div class="panel">
  13. <div class="panel-top">
  14. <div class="tbar-title">
  15. <span class="tbar-label">物品申请详细信息</span>
  16. </div>
  17. <div class="panel-toolbar">
  18. <div class="toolBar">
  19. <div class="group">
  20. <a class="link back" href="list.ht?flag=${sysGoodsApplication.flag}"><span></span>返回</a>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  26. <tr>
  27. <th width="20%">申请科室:</th>
  28. <td>${sysGoodsApplication.department}</td>
  29. </tr>
  30. <tr>
  31. <th width="20%">人员:</th>
  32. <td>${sysGoodsApplication.personnel}</td>
  33. </tr>
  34. <tr>
  35. <th width="20%">申请时间:</th>
  36. <td>
  37. <fmt:formatDate value="${sysGoodsApplication.applicationdate}" pattern="yyyy-MM-dd HH:mm:dd"/>
  38. </td>
  39. </tr>
  40. <tr>
  41. <th width="20%">申请原因: </th>
  42. <td>${sysGoodsApplication.reason}</td>
  43. </tr>
  44. </table>
  45. <table class="table-grid table-list" cellpadding="1" cellspacing="1">
  46. <tr>
  47. <td colspan="7" style="text-align: center">申请物品</td>
  48. </tr>
  49. <tr>
  50. <th>物品编号</th>
  51. <th>物品名称</th>
  52. <th>品牌</th>
  53. <th>规格</th>
  54. <th>价格</th>
  55. <th>数量</th>
  56. <th>总价</th>
  57. </tr>
  58. <c:forEach items="${sysGoodsApplicationRelaList}" var="sysGoodsApplicationRelaItem" varStatus="status">
  59. <tr>
  60. <input type="hidden" id="id" name="id" value="${sysGoodsApplicationRelaItem.id}" class="inputText"/>
  61. <td style="text-align: center">${sysGoodsApplicationRelaItem.productcode}</td>
  62. <td style="text-align: center">${sysGoodsApplicationRelaItem.productname}</td>
  63. <td style="text-align: center">${sysGoodsApplicationRelaItem.brand}</td>
  64. <td style="text-align: center">${sysGoodsApplicationRelaItem.specification}</td>
  65. <td style="text-align: center;">${sysGoodsApplicationRelaItem.price}</td>
  66. <td style="text-align: center">${sysGoodsApplicationRelaItem.quantity}</td>
  67. <td style="text-align: center;">${sysGoodsApplicationRelaItem.totalprice}</td>
  68. </tr>
  69. </c:forEach>
  70. </table>
  71. </div>
  72. </div>
  73. </body>
  74. </html>