Index.cshtml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. @using WMS.BZWeb;
  2. @{
  3. ViewBag.Title = "异常处理页面";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <style>
  7. .lr-scroll-horizontal {
  8. height: 12px;
  9. display: block;
  10. z-index: 100;
  11. }
  12. .lr-scroll-vertical {
  13. width: 12px;
  14. display: block;
  15. z-index: 100;
  16. }
  17. .FlexContainer {
  18. display: flex;
  19. flex-wrap: wrap;
  20. justify-content: flex-start;
  21. align-items: flex-start;
  22. align-content: flex-start;
  23. width: 100%;
  24. height: 100%;
  25. overflow: hidden;
  26. flex-direction: row;
  27. }
  28. .FlexContainer div {
  29. width: 300px;
  30. height: 200px;
  31. margin: 4px;
  32. --background-color: lightblue;
  33. }
  34. .ColFlexContainer {
  35. display: flex;
  36. flex-wrap: wrap;
  37. justify-content: flex-start;
  38. align-items: flex-start;
  39. align-content: flex-start;
  40. width: 95%;
  41. height: 80vh;
  42. overflow: hidden;
  43. flex-direction: column;
  44. }
  45. .ColFlexContainer div {
  46. width: 300px;
  47. height: 50px;
  48. margin: 4px;
  49. }
  50. .ColFlexContainer input {
  51. width: 280px;
  52. }
  53. </style>
  54. <div class="lr-layout">
  55. <div class="lr-layout-center" style="overflow-y:auto;height:1400px">
  56. <div class="lr-layout-wrap lr-layout-wrap-notitle">
  57. <section class='FlexContainer'>
  58. <div>
  59. <section class='ColFlexContainer'>
  60. <div style="margin-top:10px;">
  61. <label class="">
  62. 强制取消任务
  63. </label>
  64. <input id="TaskNo" type="text" class="form-control" placeholder="请输入任务号" style="width:200px" />
  65. </div>
  66. <div class=" btn-group btn-group-sm">
  67. <a id="lr_cancel" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;取消</a>
  68. @* <a id="lr_done" class="btn btn-default"><i class="fa fa-pencil-square-o"></i>&nbsp;完成</a>*@
  69. </div>
  70. </section>
  71. </div>
  72. <div>
  73. <section class='ColFlexContainer'>
  74. <div style="margin-top:10px;">
  75. <label class="">
  76. 删除组盘信息
  77. </label>
  78. <input id="BarCode" type="text" class="form-control" placeholder="请输入工字轮条码" style="width:200px" />
  79. </div>
  80. <div class=" btn-group btn-group-sm">
  81. <a id="stock_delete" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  82. </div>
  83. </section>
  84. </div>
  85. <div>
  86. <section class='ColFlexContainer'>
  87. <div style="height:20px;">
  88. <div class="">
  89. <label class="">
  90. 修改库存状态信息
  91. </label>
  92. </div>
  93. </div>
  94. <div>
  95. <input id="Code" type="text" class="form-control" placeholder="请输入工字轮条码" />
  96. <div id="InvStateCode" class="form-control" style="width:280px;height:30px;margin-bottom:25px;margin-left:0px;"></div>
  97. </div>
  98. <div style="margin-top:15px;">
  99. <div class=" btn-group btn-group-sm">
  100. <a id="Update_StockState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  101. </div>
  102. </div>
  103. </section>
  104. </div>
  105. <div>
  106. <section class='ColFlexContainer'>
  107. <div style="height:20px;">
  108. <div class="">
  109. <label class="">
  110. 修改货位状态
  111. </label>
  112. </div>
  113. </div>
  114. <div>
  115. <input id="CellCode" type="text" class="form-control" placeholder="请输入货位编号" />
  116. <div id="Status" class="form-control" style="width:280px;height:30px;margin-bottom:25px;margin-left:0px;"></div>
  117. </div>
  118. <div style="margin-top:15px;">
  119. <div class=" btn-group btn-group-sm">
  120. <a id="Update_CellState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  121. </div>
  122. </div>
  123. </section>
  124. </div>
  125. <div>
  126. <section class='ColFlexContainer'>
  127. <div style="height:20px;">
  128. <div class="lr-form-wrap">
  129. <label class="">
  130. 货位数据互换
  131. </label>
  132. </div>
  133. </div>
  134. <div>
  135. <input id="CellFrom" style="margin-bottom:5px;" type="text" class="form-control" placeholder="请输入起始货位" />
  136. <input id="CellTo" type="text" class="form-control" placeholder="请输入目标货位" />
  137. </div>
  138. <div style="margin-top:15px;">
  139. <div class=" btn-group btn-group-sm">
  140. <a id="CellDataSwap" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  141. </div>
  142. </div>
  143. </section>
  144. </div>
  145. <div>
  146. <section class='ColFlexContainer'>
  147. <div style="height:20px;">
  148. <div class="lr-form-wrap">
  149. <label class="">
  150. 补空轮库存
  151. </label>
  152. </div>
  153. </div>
  154. <div>
  155. <input id="txtConBarcode" style="margin-bottom:5px;" type="text" class="form-control" placeholder="请输入工字轮号" style="width:200px" />
  156. <input id="txtCellCode" type="text" class="form-control" placeholder="请输入货位号" style="width:200px" />
  157. </div>
  158. <div style="margin-top:15px;">
  159. <div class=" btn-group btn-group-sm">
  160. <a id="btnSaveEmptyStock" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  161. </div>
  162. </div>
  163. </section>
  164. </div>
  165. <div>
  166. <section class='ColFlexContainer'>
  167. <div style="height:20px;">
  168. <div class="lr-form-wrap">
  169. <label class="">
  170. 库存转移(起始货位库存数据转到目标货位)
  171. </label>
  172. </div>
  173. </div>
  174. <div>
  175. <input id="txtStartCell" style="margin-bottom:5px;" type="text" class="form-control" placeholder="请输入起始货位号" style="width:200px" />
  176. <input id="txtEndCell" type="text" class="form-control" placeholder="请输入目标货位号" style="width:200px" />
  177. </div>
  178. <div style="margin-top:15px;">
  179. <div class=" btn-group btn-group-sm">
  180. <a id="btnSaveStockTrans" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  181. </div>
  182. </div>
  183. </section>
  184. </div>
  185. <div>
  186. <div>
  187. <section class='ColFlexContainer'>
  188. <div style="margin-top:10px;">
  189. <label class="">
  190. 手动完成WMS任务
  191. </label>
  192. <input id="wmstasknum" style="margin-bottom:5px;" type="text" class="form-control" placeholder="请输入任务号" />
  193. </div>
  194. <div>
  195. <div class="btn-group btn-group-sm">
  196. <a id="btnwmstask" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  197. </div>
  198. </div>
  199. </section>
  200. </div>
  201. </div>
  202. <div></div>
  203. </section>
  204. <div class="lr-layout-body" id="gridtable"></div>
  205. </div>
  206. </div>
  207. </div>
  208. <script>
  209. var weburl = '@ViewBag.HJWMSWebAPIUrl';
  210. </script>
  211. @Html.AppendJsFile("/Areas/HJManager/Views/ErrorDispose/Index.js")