From cd280ead41b98ee60154038e36d9b83cc25e7d16 Mon Sep 17 00:00:00 2001 From: lsh <1> Date: 星期三, 20 十二月 2023 12:55:25 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/order/out.js | 56 ++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 46 insertions(+), 10 deletions(-) diff --git a/src/main/webapp/static/js/order/out.js b/src/main/webapp/static/js/order/out.js index fbe0b40..aa84663 100644 --- a/src/main/webapp/static/js/order/out.js +++ b/src/main/webapp/static/js/order/out.js @@ -4,7 +4,7 @@ base: baseUrl + "/static/layui/lay/modules/" }).extend({ notice: 'notice/notice', -}).use(['table','laydate', 'form', 'util', 'admin', 'notice', 'treeTable', 'xmSelect', 'tableMerge'], function(){ +}).use(['table','laydate', 'form', 'util', 'admin', 'notice', 'treeTable', 'xmSelect', 'tableMerge', 'tableX'], function(){ var table = layui.table; var $ = layui.jquery; var layer = layui.layer; @@ -16,6 +16,7 @@ var treeTable = layui.treeTable; var xmSelect = layui.xmSelect; var tableMerge = layui.tableMerge; + var tableX = layui.tableX; insTb2 = table.render({ elem: '#orderDetlTable', @@ -26,6 +27,7 @@ limits: [15, 30, 50, 100, 200, 500], toolbar: '#orderDetToolbar', height: 'full-120', + where: {order_id: 9999999999}, cols: [[ {type: 'checkbox'} ,{type: 'numbers', title: '#'} @@ -40,7 +42,7 @@ // ,{field: 'name', align: 'center',title: '鍚嶇О'} // ,{field: 'model', align: 'center',title: '鍨嬪彿'} ,{field: 'unit', align: 'center',title: '鍗曚綅', hide: true} - ,{field: 'barcode', align: 'center',title: '鍟嗗搧鏉$爜', hide: true} + ,{field: 'barcode', align: 'center',title: 'pack鐮�', hide: true} // ,{field: 'supplier', align: 'center',title: '渚涘簲鍟�'} // ,{field: 'unitPrice', align: 'center',title: '鍗曚环'} // ,{field: 'itemNum', align: 'center',title: '鍝侀」鏁�'} @@ -77,6 +79,7 @@ limit(); } }); + /* 琛ㄦ牸2鎼滅储 */ form.on('submit(sensorTbSearch)', function (data) { insTb2.reload({where: data.field, page: {curr: 1}}); @@ -85,6 +88,7 @@ /* 琛ㄦ牸2澶村伐鍏锋爮鐐瑰嚮浜嬩欢 */ table.on('toolbar(orderDetlTable)', function (obj) { + var checkStatus = table.checkStatus(obj.config.id).data; if (obj.event === 'pakoutPreview') { // 娣诲姞 if (checkStatus.length === 0) { @@ -109,6 +113,7 @@ /* 琛ㄦ牸2宸ュ叿鏉$偣鍑讳簨浠� */ table.on('tool(orderDetlTable)', function (obj) { + console.log(obj); var data = obj.data; switch (obj.event) { // 鍑哄簱 @@ -192,15 +197,22 @@ // 鍑哄簱绔欏彇浜ら泦 let staBatchSelectVal = []; for(let i = 0; i<stoPreTabData.length; i++) { - if (i === 0) { - staBatchSelectVal = stoPreTabData[i].staNos; - } else { - let staNos = stoPreTabData[i].staNos; - staBatchSelectVal = staBatchSelectVal.filter( val => { - return new Set(staNos).has(val) - } - ) + let staNos = stoPreTabData[i].staNos; + if (staNos !== null) { + if (staBatchSelectVal.length === 0) { + staBatchSelectVal = staNos; + } else { + staBatchSelectVal = staBatchSelectVal.filter(val => + { + return new Set(staNos).has(val) + } + ) + } } + } + if (staBatchSelectVal.length === 0) { + layer.msg("鍑哄簱绔欐病鏈変氦闆嗭紝鏃犳硶鎵归噺淇敼", {icon: 2}); + return; } admin.open({ type: 1, @@ -331,6 +343,8 @@ }) }) + window.pakoutPreview = pakoutPreview; + }); function tableReload(child) { @@ -346,3 +360,25 @@ }); } +/** + * 涓�閿嚭搴� + */ +function autoOut(orderId) { + let loadIndex = layer.msg('璇锋眰涓�...', {icon: 16, shade: 0.01, time: false}); + $.ajax({ + url: baseUrl + "/out/pakout/orderDetlIds/auth", + headers: {'token': localStorage.getItem('token')}, + data: { orderId : orderId }, + method: 'POST', + success: function (res) { + layer.close(loadIndex); + if (res.code === 200){ + pakoutPreview(res.data); + } else if (res.code === 403){ + top.location.href = baseUrl+"/"; + } else { + layer.msg(res.msg, {icon: 2}); + } + } + }) +} -- Gitblit v1.9.1