From b08041b513f1b3e712d30c4cf093157b8264c7c3 Mon Sep 17 00:00:00 2001 From: LSH Date: 星期三, 24 五月 2023 08:11:32 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/order/order.js | 15 ++++++++++++--- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/static/js/order/order.js b/src/main/webapp/static/js/order/order.js index 27e4712..ed11081 100644 --- a/src/main/webapp/static/js/order/order.js +++ b/src/main/webapp/static/js/order/order.js @@ -335,14 +335,23 @@ let item = selectList[i]; // 鏌ヨ鐗╂枡璇︽儏 $.ajax({ - url: baseUrl+"/mat/covert/"+item.value+"/auth", + url: baseUrl+"/mat/covert/"+btoa(item.value)+"/auth", headers: {'token': localStorage.getItem('token')}, method: 'GET', async: false, success: function (res) { if (res.code === 200){ - xxDataList.push(res.data); - insTbSSXM.reload({data: xxDataList, page: {curr: 1}}); + var bige=true; + for (var j = 0; j < xxDataList.length; j++) { + if (xxDataList[j].matnr === res.data.matnr && xxDataList[j].batch === res.data.batch) { + bige=false; + break; + } + } + if (bige){ + xxDataList.push(res.data); + insTbSSXM.reload({data: xxDataList, page: {curr: 1}}); + } } else if (res.code === 403){ top.location.href = baseUrl+"/"; }else { -- Gitblit v1.9.1