viewLogistEntry.jsp 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html;charset=GBK">
  7. <title>查看那物流指令</title>
  8. <link href="${pageContext.request.contextPath }/main.css" rel="stylesheet" type="text/css" />
  9. <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  10. <script src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
  11. <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/core/base.js" type="text/javascript"></script>
  12. <script type="text/javascript" src="/shares/js/constant.js"></script>
  13. <script type="text/javascript" src="/shares/js/common.js"></script>
  14. <script type="text/javascript" src="/shares/js/file.js"></script>
  15. <script type="text/javascript" src="/shares/datePicker/WdatePicker.js"></script>
  16. <!-- 选择窗口需要加载的js文件 start-->
  17. <script src="${pageContext.request.contextPath}/liger/lib/json2.js" type="text/javascript"></script>
  18. <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/plugins/ligerDialog.js" type="text/javascript"></script>
  19. <script type="text/javascript" src="/shares/js/yw/erp/endproduct/epLogistDetail.js"></script>
  20. <!--选择窗口需要加载的js文件 end -->
  21. <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/plugins/ligerDateEditor.js" type="text/javascript"></script>
  22. <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/plugins/ligerTextBox.js" type="text/javascript"></script>
  23. <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/plugins/ligerCheckBox.js" type="text/javascript"></script>
  24. <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/plugins/ligerComboBox.js" type="text/javascript"></script>
  25. <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/plugins/ligerSpinner.js" type="text/javascript"></script>
  26. <script type="text/javascript" src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/ligerui.all.js"></script>
  27. <script type="text/javascript">
  28. var epViewLogistDetail = [];
  29. var epViewLogistWeigh = [];
  30. var epViewLogistShipment = [];
  31. var epViewLogistGoOut = [];
  32. var epViewLogistReceive = [];
  33. $(function (){
  34. if('${requestScope.epViewLogistDetail}'!="" && typeof('${requestScope.epViewLogistDetail}')!="undefined"){
  35. epViewLogistDetail = eval('${requestScope.epViewLogistDetail}');
  36. f_viewLogDetailGrid();
  37. }
  38. if('${requestScope.epViewLogistWeigh}'!="" && typeof('${requestScope.epViewLogistWeigh}')!="undefined"){
  39. epViewLogistWeigh = eval('${requestScope.epViewLogistWeigh}');
  40. f_viewLogWeighGrid();
  41. }
  42. if('${requestScope.epViewLogistShipment}'!="" && typeof('${requestScope.epViewLogistShipment}')!="undefined"){
  43. epViewLogistShipment = eval('${requestScope.epViewLogistShipment}');
  44. f_viewLogShipGrid();
  45. }
  46. if('${requestScope.epViewLogistGoOut}'!="" && typeof('${requestScope.epViewLogistGoOut}')!="undefined"){
  47. epViewLogistGoOut = eval('${requestScope.epViewLogistGoOut}');
  48. f_viewLogGoOutGrid();
  49. }
  50. if('${requestScope.epViewLogistReceive}'!="" && typeof('${requestScope.epViewLogistReceive}')!="undefined"){
  51. epViewLogistReceive = eval('${requestScope.epViewLogistReceive}');
  52. f_viewLogRecGrid();
  53. }
  54. });
  55. //清空表单
  56. function cleanRefresh(){
  57. refreshWindow(getCurrentTabId());
  58. }
  59. </script>
  60. <style type="text/css">
  61. .demo{
  62. width:100%px;
  63. background:#f0f0f0;
  64. height:15px;
  65. overflow:hidden;
  66. line-height:32px;
  67. position:relative;
  68. }
  69. .demo ul li{
  70. list-style:none;
  71. float:left;
  72. width:157px;
  73. text-align:center;
  74. position:relative;
  75. z-index:2;
  76. font-weight:bold;
  77. font-size:14px;
  78. margin-top:-15px;
  79. }
  80. .demo ul li em{
  81. position:absolute;
  82. right:-24px;
  83. top:-8px;
  84. width:0;
  85. height:15px;
  86. line-height:15px;
  87. border-width:24px 0 24px 24px;
  88. border-color:transparent transparent transparent #fff;
  89. border-style:dashed dashed dashed solid;
  90. }
  91. .demo ul li i{
  92. position:absolute;
  93. right:-16px;
  94. top:0;
  95. width:0;
  96. height:15px;
  97. line-height:15px;
  98. border-width:16px 0 16px 16px;
  99. border-color:transparent transparent transparent #f0f0f0;
  100. border-style:dashed dashed dashed solid;
  101. }
  102. .demo ul li.current{
  103. background:#f60;
  104. color:#fff;
  105. z-index:1;
  106. }
  107. .demo ul li.current i{
  108. border-color:transparent transparent transparent #f60;
  109. }
  110. </style>
  111. </head>
  112. <body>
  113. <form id="logistForm" action="erpLogistAction.do" method="post">
  114. <div id="title" class="form-button">
  115. <input type="button" class="l-button" value="刷新" onclick="cleanRefresh()"/>
  116. <input type="button" value="关闭" class="l-button" onclick="closeWindow();"/>
  117. </div>
  118. <div class="container-layout">
  119. <div class="demo" style="margin-top: 8px;padding-top: 20px;">
  120. <ul>
  121. <li <c:if test="${requestScope.logist.tache==0}">class="current"</c:if>>物流指令<em></em><i></i></li>
  122. <li <c:if test="${requestScope.logist.tache==1}">class="current"</c:if>>首次过磅<em></em><i></i></li>
  123. <li <c:if test="${requestScope.logist.tache==2}">class="current"</c:if>>装货<em></em><i></i></li>
  124. <li <c:if test="${requestScope.logist.tache==3}">class="current"</c:if>>二次过磅<em></em><i></i></li>
  125. <li <c:if test="${requestScope.logist.tache==4}">class="current"</c:if>>出门<em></em><i></i></li>
  126. <li <c:if test="${requestScope.logist.tache==5}">class="current"</c:if>>收货<em></em><i></i></li>
  127. <li <c:if test="${requestScope.logist.tache==9}">class="current"</c:if>>完成<em></em><i></i></li>
  128. </ul>
  129. </div>
  130. <div class="forum-container">
  131. <center>
  132. <table class="l-table-edit line">
  133. <tr>
  134. <th colspan="4">物流指令信息</th>
  135. </tr>
  136. <tr>
  137. <td class="l-table-edit-text">调拨单号<FONT COLOR="red"></FONT>:</td>
  138. <td class="l-table-edit-td">
  139. ${requestScope.logist.tran_num}
  140. </td>
  141. <td class="l-table-edit-text">承运方<FONT COLOR="red"></FONT>:</td>
  142. <td class="l-table-edit-td">
  143. ${requestScope.logist.carrier_name}
  144. </td>
  145. </tr>
  146. <tr>
  147. <td class="l-table-edit-text">司机姓名<FONT COLOR="red"></FONT>:</td>
  148. <td class="l-table-edit-td">
  149. ${requestScope.logist.driver_name}
  150. </td>
  151. <td class="l-table-edit-text">送达目的地<FONT COLOR="red"></FONT>:</td>
  152. <td class="l-table-edit-td">
  153. ${requestScope.logist.destination}
  154. </td>
  155. </tr>
  156. <tr>
  157. <td class="l-table-edit-text">司机身份证<FONT COLOR="red"></FONT>:</td>
  158. <td class="l-table-edit-td">
  159. ${requestScope.logist.driver_identity_card}
  160. </td>
  161. <td class="l-table-edit-text">司机手机号<FONT COLOR="red"></FONT>:</td>
  162. <td class="l-table-edit-td">
  163. ${requestScope.logist.driver_mobile}
  164. </td>
  165. </tr>
  166. <tr>
  167. <td class="l-table-edit-text">车牌号<FONT COLOR="red"></FONT>:</td>
  168. <td class="l-table-edit-td">
  169. ${requestScope.logist.car_number}
  170. </td>
  171. <td class="l-table-edit-text">车辆型号<FONT COLOR="red"></FONT>:</td>
  172. <td class="l-table-edit-td" >
  173. ${requestScope.logist.car_type}
  174. </td>
  175. </tr>
  176. <tr>
  177. <td class="l-table-edit-text">行驶证号<FONT COLOR="red"></FONT>:</td>
  178. <td class="l-table-edit-td">
  179. ${requestScope.logist.car_driver_num}
  180. </td>
  181. <td class="l-table-edit-text">核载重量<FONT COLOR="red"></FONT>:</td>
  182. <td class="l-table-edit-td" >
  183. ${requestScope.logist.car_weigh}
  184. </td>
  185. </tr>
  186. <tr>
  187. <th colspan="4">物流指令明细</th>
  188. </tr>
  189. <tr>
  190. <td colspan="4" height="300">
  191. <!-- 明细 start -->
  192. <div class="l-clear"></div>
  193. <div id="maingrid" style="margin-top:10px;"></div> <br />
  194. <div style="display:none;"></div>
  195. <!-- 明细 end -->
  196. </td>
  197. </tr>
  198. <c:if test="${!empty requestScope.epViewLogistWeigh}">
  199. <tr>
  200. <th colspan="4">过磅记录</th>
  201. </tr>
  202. <tr>
  203. <td colspan="4" height="300">
  204. <!-- 明细 start -->
  205. <div class="l-clear"></div>
  206. <div id="maingrid1" style="margin-top:10px;"></div> <br />
  207. <div style="display:none;"></div>
  208. <!-- 明细 end -->
  209. </td>
  210. </tr>
  211. </c:if>
  212. <c:if test="${!empty requestScope.epViewLogistShipment}">
  213. <tr>
  214. <th colspan="4">装车记录</th>
  215. </tr>
  216. <tr>
  217. <td colspan="4" height="300">
  218. <!-- 明细 start -->
  219. <div class="l-clear"></div>
  220. <div id="maingrid2" style="margin-top:10px;"></div> <br />
  221. <div style="display:none;"></div>
  222. <!-- 明细 end -->
  223. </td>
  224. </tr>
  225. </c:if>
  226. <c:if test="${!empty requestScope.epViewLogistGoOut}">
  227. <tr>
  228. <th colspan="4">出门记录</th>
  229. </tr>
  230. <tr>
  231. <td colspan="4" height="300">
  232. <!-- 明细 start -->
  233. <div class="l-clear"></div>
  234. <div id="maingrid3" style="margin-top:10px;"></div> <br />
  235. <div style="display:none;"></div>
  236. <!-- 明细 end -->
  237. </td>
  238. </tr>
  239. </c:if>
  240. <c:if test="${!empty requestScope.epViewLogistReceive}">
  241. <tr>
  242. <th colspan="4">收货记录</th>
  243. </tr>
  244. <tr>
  245. <td colspan="4" height="300">
  246. <!-- 明细 start -->
  247. <div class="l-clear"></div>
  248. <div id="maingrid4" style="margin-top:10px;"></div> <br />
  249. <div style="display:none;"></div>
  250. <!-- 明细 end -->
  251. </td>
  252. </tr>
  253. </c:if>
  254. </table>
  255. <input type="hidden" id="logist.universalid" name="logist.universalid" value="${requestScope.logist.universalid}">
  256. <input type="hidden" id="transfer.au_state" name="transfer.au_state" value="${requestScope.transfer.au_state}">
  257. <input type="hidden" id="tabid" name="tabid" value="${param.tabid}">
  258. <input type="hidden" id="task" name="task" value="view">
  259. <input type="hidden" id="jsonDetailData" name="jsonDetailData" value="">
  260. </center>
  261. </div>
  262. </div>
  263. </form>
  264. <%@ include file="/include/message.jsp"%>
  265. </body>
  266. </html>