minRecord) {
+ //minRecord.put("parentId", recordP.getId().toString()); // 当前子订单主订单
+ //minRecord.put("state", "1"); // 当前子订单状态 1待处理2处理
+ //minRecord.put("manager", minRecordManage.toString());
+ //String minRecordKey = "minRecord:" + applicationOutRecordMin.getId();
+ String minRecordKeyStr = minRecordKey.split(":")[1];
+ String manager = String.valueOf(minRecord.get("manager"));
+ String state = String.valueOf(minRecord.get("state"));
+ String parentId = String.valueOf(minRecord.get("parentId"));
+ redisfifteenMinRecord.setMinRecord(minRecordKeyStr);
+ redisfifteenMinRecord.setManager(manager);
+ redisfifteenMinRecord.setState(state);
+ redisfifteenMinRecord.setParentId(parentId);
+ int i = redisfifteenMinRecordService.addRedisfifteenMinRecord(redisfifteenMinRecord);
+ return i;
+ }
+
+ public int addRedis15Record(String record, String minRecord) {
+ redisfifteenRecord.setRecord(record);
+ redisfifteenRecord.setMinRecord(minRecord);
+ int count = redisfifteenRecordService.addRedisfifteenRecord(redisfifteenRecord);
+ return count;
+ }
+}
diff --git a/src/main/resources/application-test.yml b/src/main/resources/application-test.yml
index 9f3cbe2d..d018145c 100644
--- a/src/main/resources/application-test.yml
+++ b/src/main/resources/application-test.yml
@@ -39,7 +39,7 @@ spring:
maxActive: 20 #最大活跃连接数
maxWait: 60000 #获取连接的最大等待时间(毫秒)
timeBetweenEvictionRunsMillis: 60000 #配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
- minEvictableIdleTimeMillis: 300000 #配置一个连接在池中最小生存的时间,单位是毫秒
+ minEvictableIdleTimeMillis: 3000000 #配置一个连接在池中最小生存的时间,单位是毫秒
useGlobalDataSourceStat: true
testWhileIdle: true
testOnReturn: false
diff --git a/src/main/resources/templates/pages/application/form-step-look_back.html b/src/main/resources/templates/pages/application/form-step-look_back.html
index 757b4529..5510ee41 100644
--- a/src/main/resources/templates/pages/application/form-step-look_back.html
+++ b/src/main/resources/templates/pages/application/form-step-look_back.html
@@ -234,7 +234,8 @@
},
success: function (res) {
record = res.data;
-
+ //liwenxuan test
+ console.log(record);
// 用于创造时间线节点
let timeLineStartItem = `
@@ -351,6 +352,7 @@
approvalNodeForCompleteOutUserName+='出库中';
approvalCompleteOutNode = timeLineStartItem + approvalNodeForCompleteOutUserName + approvalNodeForCompleteOutUserIconPhoto + timeLineEndItem;
}
+ console.log(approvalCompleteOutNode)
if (flagForBalancerNode === 2) {
if (depositoryManagerPass !== "4") {
diff --git a/src/main/resources/templates/pages/warehouse/depository-out.html b/src/main/resources/templates/pages/warehouse/depository-out.html
index 9b46101e..86c5c874 100644
--- a/src/main/resources/templates/pages/warehouse/depository-out.html
+++ b/src/main/resources/templates/pages/warehouse/depository-out.html
@@ -150,7 +150,7 @@
{field: 'cname', width: 200, title: '所处公司'},
{field: 'adminorgName', width: 150, title: '所属部门'},
{field: 'address', width: 120, title: '仓库地址'},
- {field: 'introduce', width: 200, title: '仓库介绍'},
+ {field: 'introduce', width: 200, title: '仓库介绍11111'},
{field: 'maxNumber', width: 200, title: '最大存储量', sort: true},
{field: 'minNumber', width: 200, title: '最小存储量', sort: true},
{field: 'state', title: '状态', minWidth: 80, templet: '#switchTpl'},