From dd78a469b3167d5c0251427dcaab82f81bb3f3a5 Mon Sep 17 00:00:00 2001
From: Junjie <540245094@qq.com>
Date: 星期一, 22 一月 2024 15:03:09 +0800
Subject: [PATCH] #检料再入库逻辑修改,定时器检测是否存在在库无资料数据
---
src/main/webapp/static/js/locDetl/locDetl.js | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/main/webapp/static/js/locDetl/locDetl.js b/src/main/webapp/static/js/locDetl/locDetl.js
index 9db9be7..9999628 100644
--- a/src/main/webapp/static/js/locDetl/locDetl.js
+++ b/src/main/webapp/static/js/locDetl/locDetl.js
@@ -192,6 +192,17 @@
layer.close(loadIndex);
layer.closeAll();
if (res.code === 200) {
+ res.data.forEach((item,index) => {
+ if (item[0] != null) {
+ item[0] = "'" + item[0];
+ }
+ if (item[1] != null) {
+ item[1] = "'" + item[1];
+ }
+ if (item[2] != null) {
+ item[2] = "'" + item[2];
+ }
+ })
table.exportFile(titles,res.data,'xls');
} else if (res.code === 403) {
top.location.href = baseUrl+"/";
--
Gitblit v1.9.1