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.

338 lines
12 KiB

1 year ago
  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. var ID = $.request("ID");
  14. var Warehouse = $.request("Warehouse");
  15. var WarehouseName = decodeURI($.request("WarehouseName"));
  16. //var WarehouseName = decodeURI($.getUrlParam("WarehouseName"));
  17. var LocationCode = $.request("LocationCode");
  18. var LocationName = decodeURI($.request("LocationName"));
  19. //var expArrivalDate = $
  20. $(function () {
  21. debugger;
  22. InitControl();
  23. InitControl2();
  24. if (ID != "") {
  25. //$("#sel_Warehouse").children('option:selected').val(WarehouseName)
  26. $("#sel_Warehouse").val([WarehouseName]).trigger("change");
  27. $("#WarehouseName").val(WarehouseName);
  28. var s = LocationName;
  29. var str = LocationCode.split('-');
  30. for (var i = 1; i <= str.length; i++) {
  31. if (i == 1)
  32. $("#Qu").val(str[1]);
  33. if (i == 2)
  34. $("#Pai").val(str[2]);
  35. if (i == 3)
  36. $("#Jia").val(str[3]);
  37. if (i == 4)
  38. $("#Ceng").val(str[4]);
  39. if (i == 5)
  40. $("#Ge").val(str[5]);
  41. }
  42. }
  43. //$("#sel_Warehouse").change(function () {
  44. // debugger;
  45. // var Was = $("#sel_Warehouse").children('option:selected').val();
  46. // $("#WarehouseName").val(Was);
  47. // //var VenCode = $("#sel_VenCode").children('option:selected').val();
  48. //});
  49. });
  50. $.getUrlParam = function (name) {
  51. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  52. var r = window.location.search.substr(1).match(reg);
  53. if (r != null) return unescape(r[2]); return null;
  54. }
  55. ;
  56. function InitControl() {
  57. debugger;
  58. var $VenCode = $("#sel_Warehouse");
  59. $VenCode.select2({
  60. allowClear: true,
  61. escapeMarkup: function (m) {
  62. return m;
  63. }
  64. });
  65. $.ajax({
  66. url: "/WMS/BasicSettings/GetWarehouse" + "?" + Math.random(),
  67. dataType: "json",
  68. async: false,
  69. success: function (data) {
  70. $.each(data, function (index, item) {
  71. $VenCode.append("<option value='" + item.WarehouseName + "'>" + item.WarehouseCode + "</option>");
  72. });
  73. }
  74. });
  75. }
  76. function InitControl2() {
  77. debugger;
  78. var $VenCode = $("#WarehouseName");
  79. $VenCode.select2({
  80. allowClear: true,
  81. escapeMarkup: function (m) {
  82. return m;
  83. }
  84. });
  85. $.ajax({
  86. url: "/WMS/BasicSettings/GetWarehouse" + "?" + Math.random(),
  87. dataType: "json",
  88. async: false,
  89. success: function (data) {
  90. $.each(data, function (index, item) {
  91. $VenCode.append("<option value='" + item.WarehouseCode + "'>" + item.WarehouseName + "</option>");
  92. });
  93. }
  94. });
  95. }
  96. //新增条码
  97. function btnCreate() {
  98. var STNO = $("#STNO").text();
  99. Vendor = $("#sel_VenCode").find("option:selected").val();
  100. if (STNO == "") {
  101. $.modalAlertNew("WMS00059");
  102. return;
  103. }
  104. var expArrivalDate = $("#ExpArivalDate").val();
  105. if (expArrivalDate == '' || expArrivalDate == null) {
  106. $.modalAlertNew("WMS00060");
  107. return;
  108. }
  109. $.modalOpen2({
  110. id: "Form",
  111. title: "条码信息",
  112. url: "/SRM/ASNSelect/Index?STNO=" + STNO + "&Vendor=" + Vendor + "&" + Math.random(),
  113. width: "800px",
  114. height: "500px",
  115. callBack: function (iframeId) {
  116. top.frames[iframeId].submitForm();
  117. }
  118. });
  119. }
  120. //新增箱号
  121. function btnAddCartonNo() {
  122. var STNO = $("#STNO").text();
  123. Vendor = $("#sel_VenCode").find("option:selected").val();
  124. if (STNO == "") {
  125. $.modalAlertNew("WMS00059");
  126. return;
  127. }
  128. var expArrivalDate = $("#ExpArivalDate").val();
  129. if (expArrivalDate == '' || expArrivalDate == null) {
  130. $.modalAlertNew("WMS00060");
  131. return;
  132. }
  133. $.modalOpen2({
  134. id: "Form",
  135. title: "箱号信息",
  136. url: "/SRM/ASNCartonSelect/Index?STNO=" + STNO + "&Vendor=" + Vendor + "&" + Math.random(),
  137. width: "800px",
  138. height: "500px",
  139. callBack: function (iframeId) {
  140. top.frames[iframeId].submitForm();
  141. }
  142. });
  143. }
  144. //刷新
  145. function reloadData() {
  146. STNO = $("#STNO").text();
  147. var queryJson = {
  148. STNO: STNO,
  149. }
  150. $("#gridList").jqGrid('setGridParam', {
  151. postData: { queryJson: JSON.stringify(queryJson) },
  152. }).trigger('reloadGrid');
  153. }
  154. //删除条码
  155. function btn_delete() {
  156. var objArr = "";
  157. var objList = $("#gridList").jqGrid('getGridParam', 'selarrrow');
  158. if (objList.length == 0) {
  159. $.modalAlertNew("WMS00061");
  160. return;
  161. }
  162. for (var i = 0; i < objList.length; i++) {
  163. var rowId = objList[i];
  164. var rowData = $("#gridList").jqGrid('getRowData', rowId);
  165. objArr += "'" + rowData.ASNDETAILID + "',";
  166. }
  167. $.deleteForm({
  168. url: "/SRM/ASNAdd/DeleteInfo" + "?" + Math.random(),
  169. param: { keyValue: JSON.stringify(objArr) },
  170. success: function () {
  171. reloadData();
  172. }
  173. })
  174. }
  175. //新增库位
  176. function submitForm() {
  177. debugger;
  178. var StackCode = "";
  179. var StackName = "";
  180. var Warehouse = "";
  181. var WarehouseName = "";
  182. var Qu = $("#Qu").val();
  183. var Pai = $("#Pai").val();
  184. var Jia = $("#Jia").val();
  185. var Ceng = $("#Ceng").val();
  186. var Ge = $("#Ge").val();
  187. if (Qu == "" && Pai == "" && Jia == "" && Ceng == "" && Ge == "") {
  188. $.modalAlertNew("WMS00062");
  189. return;
  190. }
  191. StackCode = $("#sel_Warehouse").find("option:selected").text();
  192. StackName = $("#sel_Warehouse").find("option:selected").text() + "仓库";
  193. if (Qu!="") {
  194. StackCode += "-" + Qu;
  195. StackName += Qu + "区";
  196. }
  197. if (Pai!="") {
  198. StackCode += "-" + Pai;
  199. StackName += Pai + "排";
  200. }
  201. if (Jia!="") {
  202. StackCode += "-" + Jia;
  203. StackName += Jia + "货架";
  204. }
  205. if (Ceng!="") {
  206. StackCode += "-" + Ceng;
  207. StackName += Ceng + "层";
  208. }
  209. if (Ge!="") {
  210. StackCode += "-" + Ge;
  211. StackName += Ge + "格";
  212. }
  213. var objArr = {
  214. ID:ID,
  215. StackCode:StackCode,
  216. StackName: StackName,
  217. Qu : $("#Qu").val(),
  218. Pai : $("#Pai").val(),
  219. Jia : $("#Jia").val(),
  220. Ceng : $("#Ceng").val(),
  221. Ge : $("#Ge").val(),
  222. Warehouse:$("#sel_Warehouse").find("option:selected").text(),
  223. WarehouseName:$("#WarehouseName").val()
  224. }
  225. if (ID != "") {
  226. $.submitForm({
  227. url: "/WMS/BasicSettings/UpdateStack" + "?" + Math.random(),
  228. param: { keyValue: JSON.stringify(objArr) },
  229. success: function () {
  230. $.currentWindow().$("#gridList").trigger("reloadGrid");
  231. }
  232. })
  233. } else {
  234. $.submitForm({
  235. url: "/WMS/BasicSettings/InsertStack" + "?" + Math.random(),
  236. param: { keyValue: JSON.stringify(objArr) },
  237. success: function () {
  238. $.currentWindow().$("#gridList").trigger("reloadGrid");
  239. }
  240. })
  241. }
  242. }
  243. function SelChangeA() {
  244. debugger;
  245. var Warehouse = $("#sel_Warehouse").find("option:selected").text();
  246. $("#WarehouseName").val([Warehouse]).select2()
  247. }
  248. function SelChangeB() {
  249. debugger;
  250. var WarehouseName = $("#WarehouseName").find("option:selected").text();
  251. $("#sel_Warehouse").val([WarehouseName]).select2()
  252. }
  253. </script>
  254. <form id="form1">
  255. <div style="padding-top: 20px; margin-right: 20px;">
  256. <table class="form">
  257. <tr>
  258. <th class="formTitle">库房编号:</th>
  259. <td style="width:100px">
  260. <select id="sel_Warehouse" name="sel_Warehouse" class="form-control select2" style="width: 500px" placeholder="库房编号" onchange="SelChangeA()"></select>
  261. <input type="hidden" id="hidetext" />
  262. </td>
  263. </tr>
  264. <tr>
  265. <th class="formTitle">库房名称:</th>
  266. <td style="width:100px">
  267. <select id="WarehouseName" name="WarehouseName" class="form-control select2" style="width: 500px" placeholder="库房名称" onchange="SelChangeB()"></select>
  268. <input type="hidden" id="hidetext" />
  269. </td>
  270. </tr>
  271. @*<tr>
  272. <th class="formTitle">库房名称:</th>
  273. <td class="formValue">
  274. <input id="WarehouseName" name="WarehouseName" type="text" class="form-control required" style="width: 300px;" maxlength="10" onclick="WdatePicker({ dateFmt: 'yyyy-MM-dd' })" placeholder="库房名称" />
  275. </td>
  276. </tr>*@
  277. <tr>
  278. <th class="formTitle">库位编号:</th>
  279. <td class="formValue">
  280. <input id="Qu" name="Qu" type="text" class="form-control required" style="width:80px;" maxlength="10" placeholder="区" />
  281. </td>
  282. @*<td id="ISO">-</td>*@
  283. <td class="formValue">
  284. <input id="Pai" name="Pai" type="text" class="form-control required" style="width: 80px;" maxlength="10" placeholder="排" />
  285. </td>
  286. @*<td style="width:30px">-</td>*@
  287. <td class="formValue">
  288. <input id="Jia" name="Jia" type="text" class="form-control required" style="width: 80px;" maxlength="10" placeholder="货架" />
  289. </td>
  290. @*<td style="width:30px">-</td>*@
  291. <td class="formValue">
  292. <input id="Ceng" name="Ceng" type="text" class="form-control required" style="width: 80px;" maxlength="10" placeholder="层" />
  293. </td>
  294. @*<td style="width:30px">-</td>*@
  295. <td class="formValue">
  296. <input id="Ge" name="Ge" type="text" class="form-control required" style="width: 80px;" maxlength="10" placeholder="格" />
  297. </td>
  298. </tr>
  299. <tr>
  300. <th class="formTitle">格式:</th>
  301. <td class="formValue">
  302. <span>&nbsp;区</span>
  303. </td>
  304. <td class="formValue">
  305. <span>&nbsp;排</span>
  306. </td>
  307. <td class="formValue">
  308. <span>&nbsp;货架</span>
  309. </td>
  310. <td class="formValue">
  311. <span>&nbsp;层</span>
  312. </td>
  313. <td class="formValue">
  314. <span>&nbsp;格</span>
  315. </td>
  316. </tr>
  317. </table>
  318. </div>
  319. </form>