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.

336 lines
9.8 KiB

  1. 
  2. @{
  3. ViewBag.Title = "Index";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <style>
  7. .formTitle {
  8. text-align: right;
  9. width: 10%;
  10. }
  11. .formActions {
  12. text-align: left;
  13. width: 15%;
  14. }
  15. .project-list table tr td {
  16. padding: 5px;
  17. }
  18. .th_classAdd {
  19. text-align: center !important;
  20. }
  21. .th_classMar {
  22. padding: 10px;
  23. vertical-align: inherit;
  24. }
  25. .ui-jqgrid .ui-jqgrid-view {
  26. height: 500px;
  27. }
  28. .ui-jqgrid .ui-jqgrid-bdiv {
  29. height: 500px !important;
  30. }
  31. .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  32. width: 100%;
  33. }
  34. .lr-layout-center {
  35. padding: 0 5px;
  36. }
  37. .th_classMar {
  38. padding: 0;
  39. }
  40. .lr-layout-tool {
  41. height: 50px;
  42. }
  43. .lr-layout-center .lr-layout-wrap.lr-layout-wrap-notitle {
  44. padding-top: 50px;
  45. }
  46. .wrapper .nav-tabs {
  47. padding: 0;
  48. }
  49. .webuploader-pick {
  50. padding: 7px 15px;
  51. }
  52. .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  53. padding: 3px;
  54. }
  55. .form .formTitle {
  56. padding-right: 8px;
  57. }
  58. .form-control, .single-line {
  59. padding: 3px;
  60. }
  61. .ibox-title {
  62. height: 20px;
  63. line-height: 20px;
  64. padding: 0;
  65. padding-left: 15px;
  66. }
  67. .table {
  68. margin-bottom: 0;
  69. }
  70. .bootstrap-select > .dropdown-toggle {
  71. height: 22px;
  72. padding: 2px 6px;
  73. }
  74. .bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  75. height: 22px;
  76. padding: 2px 6px;
  77. }
  78. .form-control, .single-line {
  79. padding: 3px;
  80. height: 22px;
  81. padding: 0 3px;
  82. }
  83. </style>
  84. <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
  85. <script src="~/Content/js/select2/select2.min.js"></script>
  86. <script src="~/Content/js/layer/layer.js"></script>
  87. <script>
  88. var BID = $.request("ID");
  89. var BRGCode = $.request("BRGCode");
  90. var BRGDesc = decodeURI($.request("BRGDesc"));
  91. $(function () {
  92. if (BID != "") {
  93. $("#BRGCode").val(BRGCode);
  94. $("#BRGDesc").val(BRGDesc);
  95. gridListColorFastness2();
  96. } else {
  97. gridListColorFastness();
  98. }
  99. });
  100. function gridListColorFastness() {
  101. var $gridList = $("#gridListColorFastness");
  102. $gridList.dataGrid({
  103. url: "/WMS/BasicSettings/GetICSBadReason?" + Math.random(),
  104. height: $(window).height() -50,
  105. width: $(window).width() - 400,
  106. cellEdit: true,
  107. cellsubmit: "clientArray",
  108. colModel: [
  109. { label: "主键", name: "ID", hidden: true, key: true },
  110. { label: '不良原因编码', name: 'BadReasonCode', width: 400, align: 'left', editable: true, },
  111. { label: '不良原因描述', name: 'BadReasonDesc', width: 400, align: 'left', editable: true, },
  112. ],
  113. afterSaveCell: function (rowid, cellname, value) {
  114. if (cellname === 'ProjectCN') {
  115. $gridList.jqGrid("setCell", rowid, 'ProjectID', value);
  116. }
  117. },
  118. width: "100%",
  119. autowidth: true,
  120. rownumbers: true,
  121. viewrecords: true,
  122. });
  123. }
  124. function gridListColorFastness2() {
  125. var $gridList = $("#gridListColorFastness");
  126. $gridList.dataGrid({
  127. url: "/WMS/BasicSettings/GetICSBadReason2?BID=" + BID + "&" + Math.random(),
  128. height: $(window).height() - 50,
  129. width: $(window).width() - 400,
  130. cellEdit: true,
  131. cellsubmit: "clientArray",
  132. colModel: [
  133. { label: "主键", name: "ID", hidden: true, key: true },
  134. { label: 'ID', name: 'ID', hidden: true },
  135. { label: '不良原因编码', name: 'BadReasonCode', width: 400, align: 'left', editable: true, },
  136. { label: '不良原因描述', name: 'BadReasonDesc', width: 400, align: 'left', editable: true, },
  137. ],
  138. afterSaveCell: function (rowid, cellname, value) {
  139. if (cellname === 'ProjectCN') {
  140. $gridList.jqGrid("setCell", rowid, 'ProjectID', value);
  141. }
  142. },
  143. width: "100%",
  144. autowidth: true,
  145. rownumbers: true,
  146. viewrecords: true,
  147. });
  148. }
  149. function guid() {
  150. return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
  151. var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
  152. return v.toString(16);
  153. });
  154. }
  155. function AddRows_ColorFastness() {
  156. var obj = {
  157. ID: guid(),
  158. BadReasonCode: "",
  159. BadReasonDesc: ""
  160. };
  161. $("#gridListColorFastness").jqGrid('addRowData', obj.ID, obj, 'last');
  162. $(".unwritten").hide();
  163. }
  164. function DelRows_ColorFastness() {
  165. var rowid = $("#gridListColorFastness").jqGridRowValue().ID
  166. $.ajax({
  167. url: "/WMS/BasicSettings/DeleteItem?" + Math.random(),
  168. data: { ID: rowid },
  169. dataType: "json",
  170. async: false,
  171. success: function (data) {
  172. $("#gridListColorFastness").delRowData(rowid);
  173. }
  174. });
  175. }
  176. function submitForm() {
  177. $("#gridListColorFastness").find($("td[aria-describedby='gridListColorFastness_rn']")).click();//提交取消编辑状态
  178. var BRGCodes = $("#BRGCode").val();
  179. var BRGDescs = $("#BRGDesc").val();
  180. if (BRGCodes == '') {
  181. $.modalAlertNew("WMS00010");
  182. return;
  183. }
  184. if (BRGDescs == '') {
  185. $.modalAlertNew("WMS00011");
  186. return;
  187. }
  188. var obj_Item1 = $("#gridListColorFastness");
  189. var rowIds_Item1 = obj_Item1.getDataIDs();
  190. var arrayData_Item1 = new Array();
  191. if (rowIds_Item1.length > 0) {
  192. for (var i = 0; i < rowIds_Item1.length; i++) {
  193. var RowData_Item1 = obj_Item1.getRowData(rowIds_Item1[i]);
  194. if (RowData_Item1.BadReasonCode == '') {
  195. $.modalAlertNew("WMS00012");
  196. return;
  197. }
  198. if (RowData_Item1.BadReasonDesc == '') {
  199. $.modalAlertNew("WMS00012");
  200. return;
  201. }
  202. var obj = {
  203. ID: RowData_Item1.ID,
  204. BadReasonCode: RowData_Item1.BadReasonCode,
  205. BadReasonDesc: RowData_Item1.BadReasonDesc,
  206. };
  207. arrayData_Item1.push(obj);
  208. }
  209. }
  210. var arrayItem1 = JSON.stringify(arrayData_Item1);
  211. if (BID != "") {
  212. $.ajax({
  213. url: "/WMS/BasicSettings/UpdateICSBadReasonGroup?BID=" + BID + "&BRGCode=" + BRGCodes + "&BRGDesc=" + BRGDescs + "&" + Math.random(),
  214. data: {
  215. arrayShellFabricItem: arrayItem1,
  216. },
  217. type: "post",
  218. dataType: "json",
  219. success: function (data) {
  220. layer.msg(data.message);
  221. window.setTimeout(function () {
  222. $.modalClose();
  223. }, 2500);
  224. $.currentWindow().$("#gridList").trigger("reloadGrid");
  225. },
  226. });
  227. } else {
  228. $.ajax({
  229. url: "/WMS/BasicSettings/SubICSBadReasonGroupAdd?BRGCode=" + BRGCodes + "&BRGDesc=" + BRGDescs + "&" + Math.random(),
  230. data: {
  231. arrayShellFabricItem: arrayItem1,
  232. },
  233. type: "post",
  234. dataType: "json",
  235. success: function (data) {
  236. layer.msg(data.message);
  237. window.setTimeout(function () {
  238. $.modalClose();
  239. }, 2500);
  240. $.currentWindow().$("#gridList").trigger("reloadGrid");
  241. },
  242. });
  243. }
  244. }
  245. </script>
  246. <form id="form1">
  247. <div style="padding-top: 20px; margin-right: 20px;">
  248. <div class="ibox-title">
  249. 主表
  250. </div>
  251. <table class="form">
  252. <tr>
  253. <th class="formTitle">不良原因组编码:</th>
  254. <td class="formValue">
  255. <input id="BRGCode" type="text" class="form-control" placeholder="不良原因组编码" style="width: 300px;">
  256. </td>
  257. <th class="formTitle">不良原因组描述:</th>
  258. <td class="formValue">
  259. <input id="BRGDesc" type="text" class="form-control" placeholder="不良原因组描述" style="width: 300px;">
  260. </td>
  261. </tr>
  262. </table>
  263. </div>
  264. </form>
  265. <!--色牢度-->
  266. <div class="gridPanel" style="width: 100% ">
  267. <div class="ibox-title">
  268. 子表
  269. </div>
  270. <div class="gridPanel">
  271. <div id="gridPagerColorFastness">
  272. <label class="radio-inline">
  273. <a style="margin-left:3px;" class="btn btn-next" onclick="AddRows_ColorFastness()"><i class="fa fa-plus" style="margin-right:5px"></i>新增</a>
  274. </label>
  275. <label class="radio-inline">
  276. <a style="margin-left:3px;" class="btn btn-next" onclick="DelRows_ColorFastness()"><i class="fa fa-minus" style="margin-right:5px"></i>删除</a>
  277. </label>
  278. </div>
  279. <table id="gridListColorFastness"></table>
  280. </div>
  281. </div>
  282. n