From 6bbaeff9658e297a6087c559352393fc732e8742 Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期一, 15 五月 2023 08:39:04 +0800 Subject: [PATCH] 库存明细-库存冻结 --- src/main/webapp/static/js/locDetl/locDetl.js | 61 ++++++++++++++++++++++++++---- 1 files changed, 53 insertions(+), 8 deletions(-) diff --git a/src/main/webapp/static/js/locDetl/locDetl.js b/src/main/webapp/static/js/locDetl/locDetl.js index fb3fe5b..4b7432f 100644 --- a/src/main/webapp/static/js/locDetl/locDetl.js +++ b/src/main/webapp/static/js/locDetl/locDetl.js @@ -1,26 +1,27 @@ var pageCurr; +var tableData; function getCol() { var cols = [ {field: 'locNo$', align: 'center',title: '搴撲綅鍙�'}, - {field: 'matnr', align: 'center',title: '鍟嗗搧缂栧彿', sort:true} - ,{field: 'maktx', align: 'center',title: '鍟嗗搧鍚嶇О', sort:true} + {field: 'matnr', align: 'center',title: '鐗╂枡鍙�', sort:true} + ,{field: 'maktx', align: 'center',title: '鐗╂枡鍙�', sort:true} ,{field: 'orderNo', align: 'center',title: '鍗曟嵁缂栧彿', hide: false} ,{field: 'batch', align: 'center',title: '搴忓垪鐮�', width: 300, sort:true} ,{field: 'anfme', align: 'center',title: '鏁伴噺'} ,{field: 'zpallet', align: 'center',title: '鎵樼洏鏉$爜'} - ,{field: 'specs', align: 'center',title: '閰嶇疆'} + ,{field: 'specs', align: 'center',title: '瑙勬牸'} ,{field: 'model', align: 'center',title: '浠g爜', hide: true} ,{field: 'color', align: 'center',title: '棰滆壊', hide: true} ,{field: 'brand', align: 'center',title: '鍝佺墝', hide: true} ,{field: 'unit', align: 'center',title: '鍗曚綅', hide: true} ,{field: 'price', align: 'center',title: '鍗曚环', hide: true} ,{field: 'sku', align: 'center',title: 'sku', hide: true} - ,{field: 'units', align: 'center',title: '鍗曚綅閲�', hide: true} + ,{field: 'units', align: 'center',title: '鍖呮暟', hide: true} ,{field: 'barcode', align: 'center',title: '鏉$爜', hide: true} - ,{field: 'origin', align: 'center',title: '浜у湴', hide: true} + ,{field: 'origin', align: 'center',title: '鐗╂枡鐘舵��', hide: true} ,{field: 'manu', align: 'center',title: '鍘傚', hide: true} - ,{field: 'manuDate', align: 'center',title: '鐢熶骇鏃ユ湡', hide: true} + ,{field: 'manuDate', align: 'center',title: '鍗曟嵁鏃堕棿', hide: true} ,{field: 'itemNum', align: 'center',title: '鍝侀」鏁�', hide: true} ,{field: 'safeQty', align: 'center',title: '瀹夊叏搴撳瓨閲�', hide: true} ,{field: 'weight', align: 'center',title: '鍗曠鍑�閲�', hide: true} @@ -41,6 +42,7 @@ // cols.push.apply(cols, detlCols); cols.push({field: 'modiUser$', align: 'center',title: '淇敼浜哄憳',hide: true} ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿'} + ,{field: 'stockFreeze', align: 'center',title: '搴撳瓨鍐荤粨', templet: '#stockFreezeTpl'} ) return cols; } @@ -59,6 +61,9 @@ url: baseUrl+'/locDetl/list/auth', page: true, limit: 20, + where:{ + unreason: false + }, limits: [20, 30, 50, 100, 200, 500], even: true, toolbar: '#toolbar', @@ -83,6 +88,7 @@ if (res.code === 403) { top.location.href = baseUrl+"/"; } + tableData = table.cache.locDetl; pageCurr=curr; limit(); form.on('checkbox(tableCheckbox)', function (data) { @@ -190,7 +196,7 @@ 'locDetl': exportData, 'fields': fields }; - var loadIndex = layer.load(2); + var loadIndex = layer.msg('姝e湪瀵煎嚭...', {icon: 16, shade: 0.01, time: false}); $.ajax({ url: baseUrl+"/locDetl/export/auth", headers: {'token': localStorage.getItem('token')}, @@ -447,11 +453,35 @@ tableReload(false); }); + // 鎼滅储鏍忛噸缃簨浠� form.on('submit(reset)', function (data) { pageCurr = 1; clearFormVal($('#search-box')); tableReload(false); + }); + + //鏌ョ湅寮傚父鏁版嵁 + form.on('submit(unreason)', function (data) { + pageCurr = 1; + + tableIns.reload({ + where: { + unreason: true + }, + page: { + curr: pageCurr + }, + done: function (res, curr, count) { + + if (res.code === 403) { + top.location.href = baseUrl+"/"; + } + pageCurr=curr; + + limit(child); + } + }); }); // 鏃堕棿閫夋嫨鍣� @@ -464,6 +494,19 @@ type: 'datetime' }); + form.on('switch(stockFreezeSwitch)', function (obj) { + let index = obj.othis.parents('tr').attr("data-index"); + let data = tableData[index]; + data[this.stockFreeze] = obj.elem.checked?1:0; + http.post(baseUrl + "/locDetl/updateStockFreeze/auth", { + locNo: data.locNo, + matnr: data.matnr, + stockFreeze: data[this.stockFreeze] + }, function (res) { + layer.msg(res.msg, {icon: 1}); + }); + }) + }); @@ -473,7 +516,9 @@ }); function tableReload(child) { - var searchData = {}; + var searchData = { + unreason: false + }; $.each($('#search-box [name]').serializeArray(), function() { searchData[this.name] = this.value; }); -- Gitblit v1.9.1