From e1749547c76a5d8bae94e47d38d4d75b481610c1 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@63.com> Date: 星期四, 09 九月 2021 10:51:15 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/ioWorks/stockOut.js | 44 ++++++++++++++++++++++---------------------- 1 files changed, 22 insertions(+), 22 deletions(-) diff --git a/src/main/webapp/static/js/ioWorks/stockOut.js b/src/main/webapp/static/js/ioWorks/stockOut.js index 5946e13..bbdc8d6 100644 --- a/src/main/webapp/static/js/ioWorks/stockOut.js +++ b/src/main/webapp/static/js/ioWorks/stockOut.js @@ -2,13 +2,13 @@ var locDetlData = []; function getCol() { var cols = [ - // {field: 'count', align: 'center',title: '鍑哄簱鏁伴噺', edit:'text', width: 130, style:'color: blue;font-weight: bold'} - {field: 'anfme', align: 'center',title: '鏁伴噺'} - ,{field: 'locNo$', align: 'center',title: '搴撲綅鍙�'} + {field: 'count', align: 'center',title: '鍑哄簱鏁伴噺', edit:'text', width: 130, style:'color: blue;font-weight: bold'} + ,{field: 'anfme', align: 'center',title: '鍘熸暟閲�'} + ,{field: 'locNo', align: 'center',title: '搴撲綅鍙�'} ]; arrRemove(detlCols, 'field', 'anfme'); cols.push.apply(cols, detlCols); - // cols.push({fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width:80}) + cols.push({fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width:80}) return cols; } @@ -28,7 +28,7 @@ cols: [getCol()], done: function(res, curr, count) { limit(); - getOutBound(); + // getOutBound(); } }); @@ -45,30 +45,24 @@ if (data.length === 0){ layer.msg('璇峰厛娣诲姞搴撲綅鐗╂枡'); } else { - var staNo = $("#staNoSelect").val(); - if (staNo === "" || staNo === null){ - layer.msg("璇烽�夋嫨鍑哄簱鍙�"); - return; - } var locDetls = []; data.forEach(function(elem) { - locDetls.push({locNo: elem.locNo, matnr: elem.matnr, count: elem.count}); + locDetls.push({nodeId: elem.nodeId, matnr: elem.matnr, count: elem.count}); }); - let param = { - outSite: staNo, - locDetls: locDetls - } $.ajax({ - url: baseUrl+"/plate/out/start", + url: baseUrl+"/work/pakout/init", headers: {'token': localStorage.getItem('token')}, - data: JSON.stringify(param), + data: JSON.stringify(locDetls), contentType:'application/json;charset=UTF-8', method: 'POST', success: function (res) { if (res.code === 200){ locDetlData = []; - tableIns.reload({data: locDetlData,done:function (res) {limit();getOutBound();}}); - layer.msg(res.msg); + tableIns.reload({data: locDetlData,done:function (res) { + limit(); + // getOutBound(); + }}); + layer.msg(res.msg, {icon: 1}); } else if (res.code === 403){ top.location.href = baseUrl+"/"; } else { @@ -91,7 +85,10 @@ locDetlData.splice(i, 1); } } - tableIns.reload({data: locDetlData,done:function (res) {limit();getOutBound();}}); + tableIns.reload({data: locDetlData,done:function (res) { + limit(); + // getOutBound(); + }}); break; } }); @@ -115,7 +112,10 @@ layer.msg("鏁伴噺蹇呴』澶т簬闆�"); } } - tableIns.reload({data: locDetlData,done:function (res) {limit(); getOutBound();}}); + tableIns.reload({data: locDetlData,done:function (res) { + limit(); + // getOutBound(); + }}); } // 鑾峰彇鍑哄簱鍙� @@ -162,7 +162,7 @@ for (var i=0;i<data.length;i++){ let pass = false; for (var j=0;j<locDetlData.length;j++){ - if (data[i].matnr === locDetlData[j].matnr && data[i].locNo$ === locDetlData[j].locNo$) { + if (data[i].matnr === locDetlData[j].matnr && data[i].locNo === locDetlData[j].locNo) { pass = true; break; } -- Gitblit v1.9.1