|
|
|
@ -329,7 +329,7 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
|
|
|
|
|
String key =RedisKeyConstant.BUSINESS_IN_CARNUMBER + businessSanDTO.getDistrCarNumber()+businessSanDTO.getTrayCode(); |
|
|
|
|
String key =RedisKeyConstant.BUSINESS_IN_CARNUMBER + businessSanDTO.getDistrCarNumber()+":"+businessSanDTO.getTrayCode(); |
|
|
|
|
Object o = bladeRedis.get(key); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(o)) { |
|
|
|
@ -337,7 +337,8 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
TrayTypeDataVO trayTypeDataVO = warehouseTrayTypeClient.selectListByTrayCode(businessSanDTO.getTrayCode()); |
|
|
|
|
o = 1; |
|
|
|
|
if(!Objects.isNull(trayTypeDataVO)){ |
|
|
|
|
o=trayTypeDataVO.getOrderlNum(); |
|
|
|
|
o=trayTypeDataVO.getTrayNum(); |
|
|
|
|
a= (int) o; |
|
|
|
|
} |
|
|
|
|
bladeRedis.setEx(key, o, 60 * 60 * 24L); |
|
|
|
|
}else{ |
|
|
|
@ -391,7 +392,7 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
|
|
|
|
|
if(StringUtil.isNotBlank(businessSanDTO.getTrayCode())){ |
|
|
|
|
|
|
|
|
|
String key =RedisKeyConstant.BUSINESS_IN_CARNUMBER + businessSanDTO.getDistrCarNumber()+businessSanDTO.getTrayCode(); |
|
|
|
|
String key =RedisKeyConstant.BUSINESS_IN_CARNUMBER + businessSanDTO.getDistrCarNumber()+":"+businessSanDTO.getTrayCode(); |
|
|
|
|
Object o = bladeRedis.get(key); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(o)) { |
|
|
|
@ -399,9 +400,10 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
TrayTypeDataVO trayTypeDataVO = warehouseTrayTypeClient.selectListByTrayCode(businessSanDTO.getTrayCode()); |
|
|
|
|
o = 1; |
|
|
|
|
if(!Objects.isNull(trayTypeDataVO)){ |
|
|
|
|
o=trayTypeDataVO.getOrderlNum(); |
|
|
|
|
o=trayTypeDataVO.getTrayNum(); |
|
|
|
|
} |
|
|
|
|
bladeRedis.setEx(key, o, 60 * 60 * 24L); |
|
|
|
|
a= (int) o; |
|
|
|
|
bladeRedis.setEx(key, o, 60 * 60 * 24L); |
|
|
|
|
}else{ |
|
|
|
|
a = (int) o; |
|
|
|
|
a = a + 1; |
|
|
|
|