Index.cshtml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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">
  56. <div class="lr-layout-wrap lr-layout-wrap-notitle" style=" overflow-y:scroll">
  57. <section class='FlexContainer'>
  58. <div>
  59. <section class='ColFlexContainer'>
  60. <div style="height:20px;">
  61. <div class="">
  62. <label class="">
  63. 修改任务状态
  64. </label>
  65. </div>
  66. </div>
  67. <div>
  68. <input id="UpTaskNo" type="text" style="width:280px;" class="form-control" placeholder="请输入任务号" />
  69. <div id="TaskStatus" style="width:280px;height:30px;margin-left:0px;"></div>
  70. </div>
  71. <div style="margin-top:15px;">
  72. <div class=" btn-group btn-group-sm">
  73. <a id="lr_taskstatus" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;修改</a>
  74. </div>
  75. </div>
  76. </section>
  77. </div>
  78. <div>
  79. <section class='ColFlexContainer'>
  80. <div style="margin-top:10px;">
  81. <label class="">
  82. 强制取消任务
  83. </label>
  84. <input id="TaskNo" type="text" style="width:280px;" class="form-control" placeholder="请输入任务号" />
  85. </div>
  86. <div>
  87. <div class="btn-group btn-group-sm">
  88. <a id="lr_cancel" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;取消</a>
  89. @* <a id="lr_done" class="btn btn-default"><i class="fa fa-pencil-square-o"></i>&nbsp;完成</a>*@
  90. </div>
  91. </div>
  92. </section>
  93. </div>
  94. <div>
  95. <section class='ColFlexContainer'>
  96. <div style="margin-top:10px;">
  97. <label class="">
  98. 删除组盘信息
  99. </label>
  100. <input id="BarCode" type="text" class="form-control" placeholder="请输入工字轮条码" />
  101. </div>
  102. <div>
  103. <div class=" btn-group btn-group-sm">
  104. <a id="stock_delete" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  105. </div>
  106. </div>
  107. </section>
  108. </div>
  109. <div>
  110. <section class='ColFlexContainer'>
  111. <div style="height:20px;">
  112. <div class="">
  113. <label class="">
  114. 修改库存状态信息
  115. </label>
  116. </div>
  117. </div>
  118. <div>
  119. <input id="Code" type="text" class="form-control" placeholder="请输入工字轮条码" />
  120. <div id="InvStateCode" class="form-control" style="width:280px;height:30px;margin-bottom:25px;margin-left:0px;"></div>
  121. </div>
  122. <div style="margin-top:15px;">
  123. <div class=" btn-group btn-group-sm">
  124. <a id="Update_StockState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  125. </div>
  126. </div>
  127. </section>
  128. </div>
  129. <div>
  130. <section class='ColFlexContainer'>
  131. <div style="height:20px;">
  132. <div class="">
  133. <label class="">
  134. 修改货位状态
  135. </label>
  136. </div>
  137. </div>
  138. <div>
  139. <input id="CellCode" type="text" class="form-control" placeholder="请输入货位编号" />
  140. <div id="Status" class="form-control" style="width:280px;height:30px;margin-bottom:25px;margin-left:0px;"></div>
  141. </div>
  142. <div style="margin-top:15px;">
  143. <div class=" btn-group btn-group-sm">
  144. <a id="Update_CellState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  145. </div>
  146. </div>
  147. </section>
  148. </div>
  149. <div>
  150. <section class='ColFlexContainer'>
  151. <div style="height:20px;">
  152. <div class="lr-form-wrap">
  153. <label class="">
  154. 货位数据互换
  155. </label>
  156. </div>
  157. </div>
  158. <div>
  159. <input id="CellFrom" style="margin-bottom:5px;" type="text" class="form-control" placeholder="请输入起始货位" />
  160. <input id="CellTo" type="text" class="form-control" placeholder="请输入目标货位" />
  161. </div>
  162. <div style="margin-top:15px;">
  163. <div class=" btn-group btn-group-sm">
  164. <a id="CellDataSwap" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  165. </div>
  166. </div>
  167. </section>
  168. </div>
  169. <div>
  170. <section class='ColFlexContainer'>
  171. <div style="margin-top:10px;">
  172. <label class="">
  173. 手动完成WMS任务
  174. </label>
  175. <input id="wmstasknum" style="margin-bottom:5px;" type="text" class="form-control" placeholder="请输入任务号" />
  176. </div>
  177. <div>
  178. <div class="btn-group btn-group-sm">
  179. <a id="btnwmstask" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  180. </div>
  181. </div>
  182. </section>
  183. </div>
  184. <div>
  185. <section class='ColFlexContainer'>
  186. <div style="height:20px;">
  187. <div class="lr-form-wrap">
  188. <label class="">
  189. 修改任务目标地址
  190. </label>
  191. </div>
  192. </div>
  193. <div>
  194. <input id="upaddrtasknum" style="margin-bottom:5px;" type="text" class="form-control" placeholder="请输入任务号" />
  195. <input id="upaddrto" type="text" class="form-control" placeholder="请输入目标地址" />
  196. </div>
  197. <div style="margin-top:15px;">
  198. <div class=" btn-group btn-group-sm">
  199. <a id="btnupaddrto" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  200. </div>
  201. </div>
  202. </section>
  203. </div>
  204. <div></div>
  205. </section>
  206. <div class="lr-layout-body" id="gridtable"></div>
  207. </div>
  208. </div>
  209. </div>
  210. <script>
  211. var weburl = '@ViewBag.CPWMSWebAPIUrl';
  212. </script>
  213. @Html.AppendJsFile("/Areas/CPManager/Views/ErrorDispose/Index.js")