You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
4.1 KiB

8 months ago
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8. <meta name="description" content="">
  9. <meta name="author" content="">
  10. <link rel="icon" href="/favicon.ico">
  11. <title>${projectTitle!"MESPda"}</title>
  12. <!-- Bootstrap core CSS -->
  13. <link href="/pda/bootstrap/3.3.7/bootstrap.min.css" rel="stylesheet">
  14. <link href="/pda/bootstrap/3.3.7/bootstrap-theme.min.css" rel="stylesheet">
  15. <link rel="stylesheet" type="text/css"
  16. href="/pda/jeasyui/themes/default/easyui.css">
  17. <link rel="stylesheet" type="text/css" href="/pda/jeasyui/themes/icon.css">
  18. <!-- Custom styles for this template -->
  19. <link href="/pda/css/base.css" rel="stylesheet">
  20. <link rel="stylesheet" type="text/css" href="/css/button.css">
  21. <style type="text/css">
  22. /* reset ivu-btn*/
  23. .ivu-btn{
  24. padding: 6px 6px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="app">
  30. <input type="hidden" id="flag" value="${Session.flag!'N'}">
  31. <input type="hidden" id="supplierId" value="${Session.supplierId!'N'}">
  32. <div class="mint-tab-container screenHeight">
  33. <header class="mint-header is-fixed">
  34. <div class="mint-header-button is-left">
  35. <div class="header-title">
  36. <a onclick="goBack()" class="go-back"><i class="mintui mintui-back"></i></a>
  37. <span>融欣MES - 收货采购订单</span>
  38. </div>
  39. </div>
  40. <h1 class="mint-header-title"></h1>
  41. <div class="mint-header-button is-right"></div>
  42. </header>
  43. <form autocomplete="off" class="ivu-form ivu-form-label-right">
  44. <div class="ivu-form-item">
  45. <label class="ivu-form-item-label" style="width: 90px;">请扫描卷号</label>
  46. <div class="ivu-form-item-content" style="margin-left: 90px;">
  47. <div class="ivu-input-wrapper ivu-input-type">
  48. <textarea autocomplete="off" spellcheck="false" id="rollNo"
  49. placeholder="请扫描卷号..." rows="2" autofocus="autofocus"
  50. class="ivu-input"
  51. style="height: 52px; min-height: 52px; max-height: 52px;"></textarea>
  52. </div>
  53. <!---->
  54. </div>
  55. </div>
  56. <div class="ivu-form-item">
  57. <input type="hidden" id="cache_order_ref1" value="${Session.order_ref1!'' }" >
  58. <input type="hidden" id="cache_order_ref3" value="${Session.order_ref3!'' }" >
  59. <input type="hidden" id="cache_site" value="${Session.site!'' }" >
  60. <input type="hidden" id="cache_flag" value="${Session.cache_flag!'N' }" >
  61. <label class="ivu-form-item-label" style="width: 78px;">接收仓库</label>
  62. <input type="hidden" id="select_depot" value="${Session.depot!'' }" >
  63. <div class="ivu-form-item-content" style="margin-left: 90px;">
  64. <select class="webui-combobox" id="depot"
  65. data-options="editable:false" style="margin-left: 10px;width:80px;height: 30px;">
  66. <#list depots! as temp>
  67. <option value="${temp.mark! }">${temp.mark! }</option>
  68. </#list >
  69. </select>
  70. </div>
  71. </div>
  72. </form>
  73. <div class="ivu-row" id="rollCounts">
  74. <div class="r-left" style="margin:0px;">已扫描记录</div>
  75. </div>
  76. <div class="ivu-row" style="margin-top: 10px;">
  77. <div class="ivu-col ivu-col-span-13">
  78. <a href="/pda/receipt/getUnlistedRolls" class="ivu-btn ivu-btn-primary">
  79. <span>未入库卷号清单</span>
  80. </a>
  81. </div>
  82. <div class="ivu-col ivu-col-span-5">
  83. <button type="button" onclick="endScan()" class="ivu-btn ivu-btn-primary">
  84. <span>结束</span>
  85. </button>
  86. </div>
  87. <div class="ivu-col ivu-col-span-5">
  88. <button onclick="goBack()" class="ivu-btn ivu-btn-primary">
  89. <span>返回</span>
  90. </button>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. </body>
  96. <script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
  97. <script type="text/javascript" src="/pda/layer/layer.js"></script>
  98. <script type="text/javascript" src="/pda/js/receipt/receipt_order.js"></script>
  99. <script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
  100. </html>