sysGoodsOutboundGet.jsp 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <%--
  2. time:2017-06-08 13:34:08
  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. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">物品出库详细信息</span>
  19. </div>
  20. <div class="panel-toolbar">
  21. <div class="toolBar">
  22. <div class="group">
  23. <a class="link back" href="list.ht"><span></span>返回</a>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  29. <tr>
  30. <th width="20%">出库部门:</th>
  31. <td>${sysGoodsOutbound.department}</td>
  32. </tr>
  33. <tr>
  34. <th width="20%">出库人员:</th>
  35. <td>${sysGoodsOutbound.personnel}</td>
  36. </tr>
  37. <tr>
  38. <th width="20%">出库时间:</th>
  39. <td>
  40. <fmt:formatDate value="${sysGoodsOutbound.outboundtime}" pattern="yyyy-MM-dd HH:mm:ss"/>
  41. </td>
  42. </tr>
  43. </table>
  44. <table class="table-grid table-list" cellpadding="1" cellspacing="1">
  45. <tr>
  46. <td colspan="7" style="text-align: center">出库物品</td>
  47. </tr>
  48. <tr>
  49. <th>物品编号</th>
  50. <th>物品名称</th>
  51. <th>品牌</th>
  52. <th>规格</th>
  53. <th>价格</th>
  54. <th>数量</th>
  55. <th>总价</th>
  56. </tr>
  57. <c:forEach items="${sysGoodsOutboundRelaList}" var="sysGoodsOutboundRelaItem" varStatus="status">
  58. <tr>
  59. <input type="hidden" id="id" name="id" value="${sysGoodsOutboundRelaItem.id}" class="inputText"/>
  60. <td style="text-align: center">${sysGoodsOutboundRelaItem.productcode}</td>
  61. <td style="text-align: center">${sysGoodsOutboundRelaItem.productname}</td>
  62. <td style="text-align: center">${sysGoodsOutboundRelaItem.brand}</td>
  63. <td style="text-align: center">${sysGoodsOutboundRelaItem.specification}</td>
  64. <td style="text-align: center">${sysGoodsOutboundRelaItem.price}</td>
  65. <td style="text-align: center">${sysGoodsOutboundRelaItem.quantity}</td>
  66. <td style="text-align: center">${sysGoodsOutboundRelaItem.totalprice}</td>
  67. </tr>
  68. </c:forEach>
  69. </table>
  70. </div>
  71. </div>
  72. </body>
  73. </html>