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.

172 lines
5.3 KiB

  1. @{
  2. ViewBag.Title = "Index";
  3. Layout = "~/Views/Shared/_Index.cshtml";
  4. }
  5. <style>
  6. #ISO {
  7. width: 10px;
  8. }
  9. </style>
  10. <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
  11. <script src="~/Content/js/select2/select2.min.js"></script>
  12. <script>
  13. debugger;
  14. $(function () {
  15. debugger;
  16. InitControl();
  17. InitControl2();
  18. InitControl3();
  19. });
  20. //物料
  21. function InitControl() {
  22. debugger;
  23. var $InvCode = $("#sel_InvCode");
  24. $InvCode.select2({
  25. allowClear: true,
  26. escapeMarkup: function (m) {
  27. return m;
  28. }
  29. });
  30. $.ajax({
  31. url: "/WMS/BasicSettings/GetInvCode" + "?" + Math.random(),
  32. dataType: "json",
  33. async: false,
  34. success: function (data) {
  35. $.each(data, function (index, item) {
  36. //$InvCode.append("<option value='" + item.InvCode + "'>" + item.InvName + "</option>");
  37. $InvCode.append("<option value='" + item.InvCode + "'>" + item.InvCode + "</option>");
  38. });
  39. }
  40. });
  41. }
  42. //不良代码
  43. function InitControl2() {
  44. debugger;
  45. var $BCGroupID = $("#sel_BCGroupID");
  46. $BCGroupID.select2({
  47. allowClear: true,
  48. escapeMarkup: function (m) {
  49. return m;
  50. }
  51. });
  52. $.ajax({
  53. url: "/WMS/BasicSettings/GetBCGroup" + "?" + Math.random(),
  54. dataType: "json",
  55. async: false,
  56. success: function (data) {
  57. $.each(data, function (index, item) {
  58. $BCGroupID.append("<option value='" + item.ID + "'>" + item.BCGDesc + "</option>");
  59. });
  60. }
  61. });
  62. }
  63. //不良原因
  64. function InitControl3() {
  65. debugger;
  66. var $BRGroupID = $("#sel_BRGroupID");
  67. $BRGroupID.select2({
  68. allowClear: true,
  69. escapeMarkup: function (m) {
  70. return m;
  71. }
  72. });
  73. $.ajax({
  74. url: "/WMS/BasicSettings/BRGroupID" + "?" + Math.random(),
  75. dataType: "json",
  76. async: false,
  77. success: function (data) {
  78. $.each(data, function (index, item) {
  79. $BRGroupID.append("<option value='" + item.ID + "'>" + item.BRGDesc + "</option>");
  80. });
  81. }
  82. });
  83. }
  84. function submitForm() {
  85. debugger;
  86. var InvCode = $("#sel_InvCode").val();
  87. var BCGroupID = $("#sel_BCGroupID").val();
  88. var BRGroupID = $("#sel_BRGroupID").val();
  89. var Enable = $('input[name="State"]:checked').val();
  90. if (InvCode == "") {
  91. $.modalAlertNew("WMS00034");
  92. }
  93. if (BCGroupID == "") {
  94. $.modalAlertNew("WMS00035");
  95. }
  96. if (BRGroupID == "") {
  97. $.modalAlertNew("WMS00036");
  98. }
  99. var objArr = {
  100. InvCode: InvCode,
  101. BCGroupID: BCGroupID,
  102. BRGroupID:BRGroupID,
  103. Enable: Enable
  104. }
  105. $.submitForm({
  106. url: "/WMS/BasicSettings/InsertInventoryBadGroup" + "?" + Math.random(),
  107. param: { keyValue: JSON.stringify(objArr) },
  108. success: function () {
  109. $.currentWindow().$("#gridList").trigger("reloadGrid");
  110. }
  111. })
  112. }
  113. </script>
  114. <form id="form1">
  115. <div style="padding-top: 55px; margin-right: 130px;">
  116. <table class="form">
  117. <tr>
  118. <th class="formTitle">料品编码:</th>
  119. <td style="width:100px">
  120. <select id="sel_InvCode" name="sel_InvCode" class="form-control select2" style="width: 500px" placeholder="料品编码"></select>
  121. <input type="hidden" id="hidetext" />
  122. </td>
  123. </tr>
  124. <tr style="height:20px"></tr>
  125. <tr>
  126. <th class="formTitle">不良代码:</th>
  127. <td style="width:100px">
  128. <select id="sel_BCGroupID" name="sel_BCGroupID" class="form-control select2" style="width: 500px" placeholder="料品编码"></select>
  129. <input type="hidden" id="hidetext" />
  130. </td>
  131. </tr>
  132. <tr style="height:20px"></tr>
  133. <tr>
  134. <th class="formTitle">不良原因:</th>
  135. <td style="width:100px">
  136. <select id="sel_BRGroupID" name="sel_BRGroupID" class="form-control select2" style="width: 500px" placeholder="料品编码"></select>
  137. <input type="hidden" id="hidetext" />
  138. </td>
  139. </tr>
  140. <tr style="height:20px"></tr>
  141. <tr>
  142. <th class="formTitle">是否启用:</th>
  143. <td>
  144. <div class="input-group" id="changechaeckbox">
  145. <input type="radio" name="State" value="1" id="cb-StatusYes" style="width:30px" /><label for="cb-NoQuotedPrice">是</label>
  146. <input type="radio" name="State" value="0" id="cb-StatusNo" style="width:30px" /><label for="cb-QuotedPrice">否</label>
  147. </div>
  148. </td>
  149. </tr>
  150. </table>
  151. </div>
  152. </form>