From 8e943b7104561c3b14cf223016698709c5ade4b5 Mon Sep 17 00:00:00 2001
From: lty <876263681@qq.com>
Date: 星期二, 03 二月 2026 15:37:26 +0800
Subject: [PATCH] #pda料箱组托和换码
---
src/main/webapp/static/js/report/reportStockUse.js | 65 ++++++++++++++++++++++++--------
1 files changed, 48 insertions(+), 17 deletions(-)
diff --git a/src/main/webapp/static/js/report/reportStockUse.js b/src/main/webapp/static/js/report/reportStockUse.js
index a1b7eb1..7cd8cd8 100644
--- a/src/main/webapp/static/js/report/reportStockUse.js
+++ b/src/main/webapp/static/js/report/reportStockUse.js
@@ -14,19 +14,13 @@
url: baseUrl+'/report/viewStockUseList.action',
page: true,
limit: 16,
+ limits: [16, 30, 50, 100, 200, 500],
toolbar: '#toolbar',
cellMinWidth: 50,
- cols: [[
- {type: 'checkbox', fixed: 'left'}
- ,{field: 'row1', title: '閽㈡灦鍙�', sort: true, align: 'center'}
- ,{field: 'total_qty', align: 'center',title: '搴撲綅鎬绘暟'}
- ,{field: 'full_qty', align: 'center',title: '鍦ㄥ簱鏁伴噺'}
- ,{field: 'null_qty', align: 'center',title: '绌哄簱浣嶆暟閲�'}
- ,{field: 'forbid_qty', align: 'center',title: '绂佺敤搴撲綅鏁伴噺'}
- ,{field: 'empty_qty', align: 'center',title: '绌哄鍣ㄦ暟閲�'}
- ,{field: 'full_rate', align: 'center',title: '鍦ㄥ簱鐜�(%)'}
- ,{field: 'occ_rate', align: 'center',title: '浣跨敤鐜�(%)'}
- ]],
+ cols: getCols(),
+ text: {
+ none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '鏆傛棤鐩稿叧鏁版嵁'
+ },
request: {
pageName: 'curr',
pageSize: 'limit'
@@ -44,10 +38,12 @@
},
done: function(res, curr, count) {
if (res.code === 403) {
- top.location.href = "/";
+ top.location.href = baseUrl+"/";
}
pageCurr=curr;
limit();
+ I18n.updatePage();
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
}
});
@@ -66,10 +62,44 @@
},
done: function (res, curr, count) {
if (res.code === 403) {
- top.location.href = "/";
+ top.location.href = baseUrl+"/";
}
pageCurr=curr;
limit();
+ I18n.updatePage();
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
+ }
+ });
+ });
+
+ function getCols() {
+ return [[
+ // {type: 'checkbox', fixed: 'left'}
+ {field: 'row1', title: I18n.t('rack_no'), sort: true, align: 'center'}
+ ,{field: 'total_qty', align: 'center',title: I18n.t('total_loc_qty')}
+ ,{field: 'full_qty', align: 'center',title: I18n.t('stock_qty')}
+ ,{field: 'null_qty', align: 'center',title: I18n.t('empty_loc_qty')}
+ ,{field: 'forbid_qty', align: 'center',title: I18n.t('disabled_loc_qty')}
+ ,{field: 'empty_qty', align: 'center',title: I18n.t('empty_container_qty')}
+ ,{field: 'full_rate', align: 'center',title: I18n.t('stock_rate')}
+ ,{field: 'occ_rate', align: 'center',title: I18n.t('usage_rate')}
+ ]];
+ }
+
+ $(document).on('i18n:languageChanged', function () {
+ I18n.updatePage();
+ tableIns.reload({
+ cols: getCols(),
+ text: {
+ none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '鏆傛棤鐩稿叧鏁版嵁'
+ },
+ done: function (res, curr, count) {
+ if (res.code === 403) {
+ top.location.href = baseUrl+"/";
+ }
+ pageCurr=curr;
+ limit();
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
}
});
});
@@ -79,7 +109,7 @@
var checkStatus = table.checkStatus(obj.config.id);
switch(obj.event) {
case 'exportData':
- layer.confirm('纭畾瀵煎嚭Excel鍚�', function(){
+ layer.confirm('纭畾瀵煎嚭Excel鍚�', {shadeClose: true}, function(){
var titles=[];
var fields=[];
obj.config.cols[0].map(function (col) {
@@ -103,9 +133,9 @@
if (res.code === 200) {
table.exportFile(titles,res.data,'xls');
} else if (res.code === 403) {
- top.location.href = "/";
+ top.location.href = baseUrl+"/";
} else {
- layer.msg(res.msg)
+ layer.msg(typeof I18n !== 'undefined' ? I18n.t(res.msg) : res.msg, {icon: 2})
}
}
});
@@ -133,7 +163,7 @@
},
done: function (res, curr, count) {
if (res.code === 403) {
- top.location.href = "/";
+ top.location.href = baseUrl+"/";
}
pageCurr=curr;
if (res.data.length === 0 && count !== 0) {
@@ -146,6 +176,7 @@
pageCurr -= 1;
}
limit(child);
+ setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
}
});
}
--
Gitblit v1.9.1