丽知:新增等待时间,防止并发

This commit is contained in:
zhengyf 2024-10-26 15:16:54 +08:00
parent fb2e87ac07
commit f5a880243b
1 changed files with 2 additions and 1 deletions

View File

@ -165,7 +165,6 @@ public class GoodsAutoAllotPluginInitializer extends PluginBaseEntity {
public void start(String invcode) { public void start(String invcode) {
String[] split = invcode.split("_"); String[] split = invcode.split("_");
try { try {
Thread.sleep(500);
BdInvbasdocEntity bdInvbasdocEntity = new BdInvbasdocEntity(); BdInvbasdocEntity bdInvbasdocEntity = new BdInvbasdocEntity();
bdInvbasdocEntity.setInvcode(split[0]); bdInvbasdocEntity.setInvcode(split[0]);
bdInvbasdocEntity.setDataSourceCode(ProfilesActiveConstant.LETS_DATE_SOURCE); bdInvbasdocEntity.setDataSourceCode(ProfilesActiveConstant.LETS_DATE_SOURCE);
@ -261,6 +260,8 @@ public class GoodsAutoAllotPluginInitializer extends PluginBaseEntity {
String response = ""; String response = "";
try { try {
Thread.sleep(500);
GoodsAutoAllotVO goodsAutoAllotVO = new GoodsAutoAllotVO(); GoodsAutoAllotVO goodsAutoAllotVO = new GoodsAutoAllotVO();
//存货基本档案主键 //存货基本档案主键
goodsAutoAllotVO.setPk_invbasdoc(pkInvbasdoc); goodsAutoAllotVO.setPk_invbasdoc(pkInvbasdoc);