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.

241 lines
9.6 KiB

  1. 
  2. @{
  3. ViewBag.Title = "Index";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <style>
  7. #ISO {
  8. width: 10px;
  9. }
  10. </style>
  11. <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
  12. <script src="~/Content/js/select2/select2.min.js"></script>
  13. <script>
  14. var ID = $.request("ID");
  15. var ContainerID = $.request("ContainerID");
  16. var ContainerCODE = $.request("ContainerCODE");
  17. var ContainerType = decodeURI($.request("ContainerType"));
  18. var ContainerName = decodeURI($.request("ContainerName"));
  19. var Memo = decodeURI($.request("Memo"));
  20. var InventoryMixed = decodeURI($.request("InventoryMixed"));
  21. var ProjectMixed = decodeURI($.request("ProjectMixed"));
  22. var BatchMixed = decodeURI($.request("BatchMixed"));
  23. var Multiplex = decodeURI($.request("Multiplex"));
  24. $(function () {
  25. InitControl();
  26. InitContro2();
  27. if (ID != "") {
  28. debugger;
  29. $("#sel_ContainerID").val([ContainerID]).trigger("change");
  30. $("#sel_ContainerType").val([ContainerType]).trigger("change");
  31. $("#ContainerCODE").val(ContainerCODE);
  32. $("#ContainerName").val(ContainerName);
  33. $("#Memo").val(Memo);
  34. //允许料品混装
  35. if (InventoryMixed == '是') {
  36. $("#InvMixedYes").prop("checked", true);
  37. } else {
  38. $("#InvMixedNo").prop("checked", true);
  39. }
  40. //允许项目号混装
  41. if (ProjectMixed == '是') {
  42. $("#ProjectMixedYes").prop("checked", true);
  43. } else {
  44. $("#ProjectMixedNo").prop("checked", true);
  45. }
  46. //允许批次混装
  47. if (BatchMixed == '是') {
  48. $("#BatchMixedYes").prop("checked", true);
  49. } else {
  50. $("#BatchMixedNo").prop("checked", true);
  51. }
  52. //允许复用
  53. if (Multiplex == '是') {
  54. $("#MultiplexYes").prop("checked", true);
  55. } else {
  56. $("#MultiplexNo").prop("checked", true);
  57. }
  58. }
  59. });
  60. function InitControl() {
  61. var $VenCode = $("#sel_ContainerID");
  62. $VenCode.select2({
  63. allowClear: true,
  64. escapeMarkup: function (m) {
  65. return m;
  66. }
  67. });
  68. $.ajax({
  69. url: "/WMS/BasicSettings/GetContainerID" + "?" + Math.random(),
  70. dataType: "json",
  71. async: false,
  72. success: function (data) {
  73. $.each(data, function (index, item) {
  74. $VenCode.append("<option value='" + item.ID + "'>&nbsp;" + item.ContainerName + "</option>");
  75. });
  76. }
  77. });
  78. }
  79. function InitContro2() {
  80. var $VenCode = $("#sel_ContainerType");
  81. $VenCode.select2({
  82. allowClear: true,
  83. escapeMarkup: function (m) {
  84. return m;
  85. }
  86. });
  87. $.ajax({
  88. url: "/WMS/BasicSettings/GetContainerType" + "?" + Math.random(),
  89. dataType: "json",
  90. async: false,
  91. success: function (data) {
  92. $.each(data, function (index, item) {
  93. $VenCode.append("<option value='" + item.F_ItemName + "'>&nbsp;" + item.F_ItemName + "</option>");
  94. });
  95. }
  96. });
  97. }
  98. function submitForm() {
  99. debugger;
  100. var ContainerID = $("#sel_ContainerID").val();
  101. var ContainerCODE = $("#ContainerCODE").val();
  102. var ContainerName = $("#ContainerName").val();
  103. var ContainerType = $("#sel_ContainerType").val();
  104. var Memo = $("#Memo").val();
  105. var InventoryMixed = $('input[name="InvMixed"]:checked').val();//允许料品混装
  106. var ProjectMixed = $('input[name="ProjectMixed"]:checked').val();//允许项目号混装
  107. var BatchMixed = $('input[name="BatchMixed"]:checked').val();//允许批次混装
  108. var Multiplex = $('input[name="Multiplex"]:checked').val();//允许复用
  109. //var Enable = $('input[name="State"]:checked').val();
  110. if (ContainerCODE == "" || ContainerCODE == undefined) {
  111. $.modalAlertNew("WMS00018");
  112. return;
  113. }
  114. if (ContainerName == "" || ContainerName == undefined) {
  115. $.modalAlertNew("WMS00019");
  116. return;
  117. }
  118. var objArr = {
  119. ID:ID,
  120. ContainerID: ContainerID,
  121. ContainerCODE: ContainerCODE,
  122. ContainerName: ContainerName,
  123. ContainerType:ContainerType,
  124. Memo: Memo,
  125. InventoryMixed:InventoryMixed,
  126. ProjectMixed:ProjectMixed,
  127. BatchMixed:BatchMixed,
  128. Multiplex: Multiplex
  129. }
  130. debugger;
  131. if (ID!="") {
  132. $.submitForm({
  133. url: "/WMS/BasicSettings/UpdateICSContainer" + "?" + Math.random(),
  134. param: { keyValue: JSON.stringify(objArr) },
  135. success: function () {
  136. $.currentWindow().$("#gridList").trigger("reloadGrid");
  137. }
  138. })
  139. } else {
  140. $.submitForm({
  141. url: "/WMS/BasicSettings/InsertICSContainer" + "?" + Math.random(),
  142. param: { keyValue: JSON.stringify(objArr) },
  143. success: function () {
  144. $.currentWindow().$("#gridList").trigger("reloadGrid");
  145. }
  146. })
  147. }
  148. }
  149. </script>
  150. <form id="form1">
  151. <div style="padding-top: 20px; margin-right: 20px;">
  152. <table class="form">
  153. <tr>
  154. <th class="formTitle">父容器:</th>
  155. <td class="formValue">
  156. <select id="sel_ContainerID" name="sel_ContainerID" class="form-control select2" style="width: 150px" placeholder="请选择父容器..."></select>
  157. <input type="hidden" id="hidetext" />
  158. </td>
  159. </tr>
  160. <tr>
  161. <th class="formTitle">容器代码:</th>
  162. <td class="formValue">
  163. <input id="ContainerCODE" name="ContainerCODE" type="text" class="form-control required" style="width: 359px;" maxlength="50" onclick="WdatePicker({ dateFmt: 'yyyy-MM-dd' })" placeholder="容器代码" />
  164. </td>
  165. </tr>
  166. <tr>
  167. <th class="formTitle">容器名称:</th>
  168. <td class="formValue">
  169. <input id="ContainerName" name="ContainerName" type="text" class="form-control required" style="width: 359px;" maxlength="50" onclick="WdatePicker({ dateFmt: 'yyyy-MM-dd' })" placeholder="容器名称" />
  170. </td>
  171. </tr>
  172. <tr>
  173. <th class="formTitle">容器类型:</th>
  174. <td class="formValue">
  175. <select id="sel_ContainerType" name="sel_ContainerType" class="form-control select2" style="width: 500px" placeholder="容器类型"></select>
  176. <input type="hidden" id="hidetext" />
  177. </td>
  178. </tr>
  179. <tr>
  180. <th class="formTitle">备注:</th>
  181. <td class="formValue">
  182. <input id="Memo" name="Memo" type="text" class="form-control required" style="width: 359px;" maxlength="50" onclick="WdatePicker({ dateFmt: 'yyyy-MM-dd' })" placeholder="备注" />
  183. </td>
  184. </tr>
  185. <tr>
  186. <th class="formTitle">允许料品混装:</th>
  187. <td class="formValue">
  188. <div class="input-group" id="InvMixedchaeckbox">
  189. <input type="radio" name="InvMixed" value="1" id="InvMixedYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  190. <input type="radio" name="InvMixed" value="0" id="InvMixedNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  191. </div>
  192. </td>
  193. </tr>
  194. <tr>
  195. <th class="formTitle">允许项目号混装:</th>
  196. <td class="formValue">
  197. <div class="input-group" id="ProjectMixedchaeckbox">
  198. <input type="radio" name="ProjectMixed" value="1" id="ProjectMixedYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  199. <input type="radio" name="ProjectMixed" value="0" id="ProjectMixedNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  200. </div>
  201. </td>
  202. </tr>
  203. <tr>
  204. <th class="formTitle">允许批次混装:</th>
  205. <td class="formValue">
  206. <div class="input-group" id="BatchMixedchaeckbox">
  207. <input type="radio" name="BatchMixed" value="1" id="BatchMixedYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  208. <input type="radio" name="BatchMixed" value="0" id="BatchMixedNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  209. </div>
  210. </td>
  211. </tr>
  212. <tr>
  213. <th class="formTitle">允许复用:</th>
  214. <td class="formValue">
  215. <div class="input-group" id="Multiplexchaeckbox">
  216. <input type="radio" name="Multiplex" value="1" id="MultiplexYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  217. <input type="radio" name="Multiplex" value="0" id="MultiplexNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  218. </div>
  219. </td>
  220. </tr>
  221. </table>
  222. </div>
  223. </form>