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/pakStore/stockOut.js | 130 +++++++++++++++++++++++++++----------------
1 files changed, 82 insertions(+), 48 deletions(-)
diff --git a/src/main/webapp/static/js/pakStore/stockOut.js b/src/main/webapp/static/js/pakStore/stockOut.js
index e129b84..b4b7255 100644
--- a/src/main/webapp/static/js/pakStore/stockOut.js
+++ b/src/main/webapp/static/js/pakStore/stockOut.js
@@ -1,25 +1,31 @@
-var admin;
+var locDetlLayerIdx;
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: I18n.t('outbound_quantity'), edit:'text', width: 130, style:'color: blue;font-weight: bold'}
+ ,{field: 'anfme', align: 'center',title: I18n.t('inventory_quantity')}
+ ,{field: 'locNo$', align: 'center',title: I18n.t('location_no')}
];
- arrRemove(detlCols, 'field', 'anfme');
- cols.push.apply(cols, detlCols);
- cols.push({fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width: 80})
+ var dCols = [];
+ if (typeof getDetlCols === 'function') {
+ dCols = getDetlCols();
+ } else {
+ dCols = detlCols.slice();
+ }
+ arrRemove(dCols, 'field', 'anfme');
+ cols.push.apply(cols, dCols);
+ cols.push({fixed: 'right', title: I18n.t('operation'), align: 'center', toolbar: '#operate', width: 80})
return cols;
}
layui.config({
base: baseUrl + "/static/layui/lay/modules/"
-}).use(['admin', 'table','laydate', 'form'], function() {
+}).use(['table','laydate', 'form', 'admin'], function() {
var table = layui.table;
var $ = layui.jquery;
var layer = layui.layer;
var form = layui.form;
- admin = layui.admin;
+ var admin = layui.admin;
tableIns = table.render({
elem: '#chooseData',
@@ -28,11 +34,24 @@
even: true,
toolbar: '#toolbar',
cellMinWidth: 50,
+ limit: 500,
cols: [getCol()],
+ text: {
+ none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '鏆傛棤鐩稿叧鏁版嵁'
+ },
done: function(res, curr, count) {
limit();
getOutBound();
+ if (typeof I18n !== 'undefined') {
+ I18n.updatePage($('.layui-table-view'));
+ }
}
+ });
+
+ $(document).on('i18n:languageChanged', function() {
+ tableIns.reload({
+ cols: [getCol()]
+ });
});
// 椤甸潰淇敼
@@ -43,15 +62,15 @@
if (obj.field === 'count'){
let vle = Number(obj.value);
if (isNaN(vle)) {
- layer.msg("璇疯緭鍏ユ暟瀛�", {icon: 2});
+ layer.msg(I18n.t('please_enter_number'), {icon: 2});
modify = false;
} else {
if (vle <= 0) {
- layer.msg("鏁伴噺蹇呴』澶т簬闆�", {icon: 2});
+ layer.msg(I18n.t('quantity_must_be_greater_than_zero'), {icon: 2});
modify = false;
}
if (vle > Number(data.anfme)) {
- layer.msg("鍑哄簱鏁伴噺涓嶅緱澶т簬搴撳瓨鏁伴噺", {icon: 2});
+ layer.msg(I18n.t('outbound_qty_cannot_exceed_inventory_qty'), {icon: 2});
modify = false;
}
}
@@ -64,24 +83,19 @@
// 鐩戝惉澶村伐鍏锋爮浜嬩欢
table.on('toolbar(chooseData)', function (obj) {
- var data = locDetlData;
switch (obj.event) {
case 'outbound':
- if (data.length === 0){
- layer.msg('璇峰厛娣诲姞搴撲綅鐗╂枡');
+ if (locDetlData.length === 0){
+ layer.msg(I18n.t('please_extract_inventory_item_first'), {icon: 2});
} else {
var staNo = $("#staNoSelect").val();
if (staNo === "" || staNo === null){
- layer.msg("璇烽�夋嫨鍑哄簱鍙�");
+ layer.msg(I18n.t('please_select_outbound_station'), {icon: 2});
return;
}
- var locDetls = [];
- data.forEach(function(elem) {
- locDetls.push({locNo: elem.locNo, matnr: elem.matnr, count: elem.count});
- });
let param = {
outSite: staNo,
- locDetls: locDetls
+ locDetls: locDetlData
}
$.ajax({
url: baseUrl+"/plate/out/start",
@@ -92,12 +106,18 @@
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();
+ if (typeof I18n !== 'undefined') {
+ I18n.updatePage($('.layui-table-view'));
+ }
+ }});
+ layer.msg(typeof I18n !== 'undefined' ? I18n.t(res.msg) : res.msg, {icon: 1});
} else if (res.code === 403){
top.location.href = baseUrl+"/";
} else {
- layer.msg(res.msg)
+ layer.msg(res.msg, {icon: 2})
}
}
});
@@ -127,42 +147,57 @@
success: function (res) {
if (res.code === 200){
var tpl = $("#takeSiteSelectTemplate").html();
- var template = Handlebars.compile(tpl);
- var html = template(res);
- $('#staNoSelect').append(html);
+ var list = res.data;
+ if (typeof I18n !== 'undefined') {
+ $.each(list, function(index, item) {
+ var desc = item.desc;
+ var start = desc.indexOf('锛�');
+ var end = desc.indexOf('锛�');
+ if (start !== -1 && end !== -1) {
+ var key = desc.substring(start + 1, end);
+ var translated = I18n.t(key);
+ if (translated !== key) {
+ item.desc = desc.substring(0, start + 1) + translated + desc.substring(end);
+ }
+ }
+ });
+ }
+ $("#staNoSelect").html(Handlebars.compile(tpl)({data: list}));
form.render('select');
} else if (res.code === 403){
top.location.href = baseUrl+"/";
- }else {
- layer.msg(res.msg)
+ } else {
+ layer.msg(typeof I18n !== 'undefined' ? I18n.t(res.msg) : res.msg, {icon: 2})
}
}
- })
+ });
}
-})
-// 鎻愬彇鐗╂枡
-var locDetlLayerIdx;
-function getLocDetl() {
- locDetlLayerIdx = layer.open({
- type: 2,
- title: false,
- closeBtn: false,
- maxmin: false,
- area: ['90%', '85%'],
- shadeClose: true,
- content: 'locDetlQuery.html',
- success: function(layero, index){
- }
- });
-}
+
+ $(document).on('click','#mat-query', function () {
+ let loadIndex = layer.msg(I18n.t('requesting'), {icon: 16, shade: 0.01, time: false});
+ locDetlLayerIdx = layer.open({
+ type: 2,
+ title: false,
+ closeBtn: false,
+ maxmin: false,
+ area: ['90%', '85%'],
+ shadeClose: true,
+ content: 'locDetlQuery.html',
+ success: function(layero, index){
+ layer.close(loadIndex);
+ }
+ });
+ })
+
+})
// 娣诲姞琛ㄦ牸鏁版嵁
function addTableData(data) {
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].batch === locDetlData[j].batch && data[i].locNo$ === locDetlData[j].locNo$) {
pass = true;
break;
}
@@ -172,7 +207,6 @@
} else {
data[i]["count"] = data[i]["anfme"];
}
-
}
locDetlData.push.apply(locDetlData, data);
tableIns.reload({data: locDetlData});
--
Gitblit v1.9.1