This commit is contained in:
zds
2022-12-19 14:04:13 +08:00
parent f6334cb215
commit 317f29afde
3 changed files with 20 additions and 2 deletions

View File

@@ -210,6 +210,7 @@
1 = 1
AND ProductProcessRoute.is_delete = '0'
AND ProductProcessRoute.productprocess_status = '20'
AND ProductProcessRouteDtl.workprocedure_code in ('GX001','GX002','GX003')
OPTION 输入.material_code <> ""
ProductProcessRoute.material_id = 输入.material_code
ENDOPTION

View File

@@ -113,7 +113,7 @@
FROM
PURCHASE_CONTRACT_VIEW
where
STATUSFLAG = '3'
STATUSFLAG = '1'
AND DEL_FLAG = '0'
OPTION 输入.ext_id <> ""
ITEM_ID = 输入.ext_id
@@ -151,7 +151,7 @@
FROM
PURCHASE_CONTRACT_VIEW PURCHASE
where
PURCHASE.STATUSFLAG = '3'
PURCHASE.STATUSFLAG = '1'
AND PURCHASE.DEL_FLAG = '0'
OPTION 输入.material_id <> ""
PURCHASE.ITEM_ID = 输入.material_id

View File

@@ -9,6 +9,23 @@ spring:
redis:
repositories:
enabled: false
redisson:
# redis key前缀
keyPrefix:
# 线程池数量
threads: 4
# Netty线程池数量
nettyThreads: 8
# 单节点配置
singleServerConfig:
# 最小空闲连接数
connectionMinimumIdleSize: 8
# 连接池大小
connectionPoolSize: 32
# 连接空闲超时,单位:毫秒
idleConnectionTimeout: 10000
# 命令等待超时,单位:毫秒
timeout: 3000
#配置 Jpa
jpa: