From f6513ffa7e2efe2a4dc81626c7aab9cf643f8f41 Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期四, 14 三月 2024 10:14:28 +0800 Subject: [PATCH] 1.增加牌号作为唯一物料条件 (当前牌号 批号 包号可以筛选出唯一物料) 2.增加移库接口 3.订单出库可替换物料 4.页面ui完善 --- src/main/webapp/static/js/pakStore/pakStore.js | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/static/js/pakStore/pakStore.js b/src/main/webapp/static/js/pakStore/pakStore.js index cdfcffd..863b89f 100644 --- a/src/main/webapp/static/js/pakStore/pakStore.js +++ b/src/main/webapp/static/js/pakStore/pakStore.js @@ -84,6 +84,7 @@ layer.msg("璇烽�夋嫨鍏ュ簱绔�", {icon: 2}); return; } + console.log(matCodeData) $.ajax({ url: baseUrl+"/full/store/put/start", headers: {'token': localStorage.getItem('token')}, @@ -148,6 +149,7 @@ // 鎻愬彇鐗╂枡 $(document).on('click','#mat-query', function () { + let loadIndex = layer.msg('璇锋眰涓�...', {icon: 16, shade: 0.01, time: false}); matCodeLayerIdx = admin.open({ type: 2, title: false, @@ -157,6 +159,7 @@ shadeClose: true, content: 'matQuery.html', success: function(layero, index){ + layer.close(loadIndex); } }); }) @@ -171,7 +174,7 @@ return } $.ajax({ - url: baseUrl + "/matCode/" + el.value + "/auth", + url: baseUrl + "/mat/" + el.value + "/auth", headers: {'token': localStorage.getItem('token')}, method: 'GET', success: function (res) { -- Gitblit v1.9.1