代码重构和性能改进

-移除BOM版本在ConsignmachiningIn的设置
- 添加版本号设置为ConsignmachiningInBodyDto
- 移除未使用的BdInvmandocEntity查询
- 重构getBomVersion方法以获取最新的BOM版本
- 新增查询基础档案方法用于获取存货基本信息
- 重构ProxyPurchaseReturn和ProxyPurchaseWarehousOrder中关于赠品的判断逻辑
- 修改PoOrderChildrenDto中blargess字段类型为Boolean
- 同步处理SaveOrUpdateBusinessLogUtil中的日志保存或更新操作
- 调整数据库连接池配置以提高性能- 更新application-letsprod.yml中的数据库连接超时设置
This commit is contained in:
liuy 2024-09-23 18:28:03 +08:00
parent 01b144d4f7
commit ea24166934
11 changed files with 108 additions and 30 deletions

View File

@ -424,8 +424,9 @@ public class ConsignmachiningIn extends PluginBaseEntity {
scorderBodyDto.setNordernum(stockinB.getReceivedQty());//数量 scorderBodyDto.setNordernum(stockinB.getReceivedQty());//数量
scorderBodyDto.setNoriginalnetprice(noriginalcurprice.stripTrailingZeros().toPlainString());//净单价 scorderBodyDto.setNoriginalnetprice(noriginalcurprice.stripTrailingZeros().toPlainString());//净单价
scorderBodyDto.setCwarehouseid(bdStordocEntity.getPkStordoc());//仓库 scorderBodyDto.setCwarehouseid(bdStordocEntity.getPkStordoc());//仓库
scorderBodyDto.setBomversion(bomVersion.get(0).getVersion());//BOM版本 // scorderBodyDto.setBomversion(bomVersion.get(0).getVersion());//BOM版本
scorderBodyDto.setDplanarrvdate(generateBusinessDate);//计划到货日期 scorderBodyDto.setDplanarrvdate(generateBusinessDate);//计划到货日期
scorderBodyDto.setVdef16(bomVersion.get(0).getVersion());//版本号
scorderBodyDtoArrayList.add(scorderBodyDto); scorderBodyDtoArrayList.add(scorderBodyDto);
} }

View File

@ -78,6 +78,9 @@ public class ConsignmachiningInReturn extends PluginBaseEntity {
@Autowired @Autowired
private IBdPurorgDao iBdPurorgDao; private IBdPurorgDao iBdPurorgDao;
@Autowired
private IBdInvbasdocDao iBdInvbasdocDao;
@Autowired @Autowired
private OnlyImplementProxyOrderUtil onlyImplementProxyOrder; private OnlyImplementProxyOrderUtil onlyImplementProxyOrder;
@ -99,6 +102,9 @@ public class ConsignmachiningInReturn extends PluginBaseEntity {
@Autowired @Autowired
private OffsetTimeTime offsetTimeTime; private OffsetTimeTime offsetTimeTime;
@Autowired
private IBdBomDao iBdBomDao;
private static final String PROD_FILED = "prod"; private static final String PROD_FILED = "prod";
@Override @Override
@ -386,8 +392,13 @@ public class ConsignmachiningInReturn extends PluginBaseEntity {
//通过O采退出库库单明细行联查OFS采退订单明细行 //通过O采退出库库单明细行联查OFS采退订单明细行
PurchaseReturnOrderDetails ofsPoOrderDetailRowTraget = findOfsPoOrderDetailRowTraget(detailsDto, purchaseReturnOrder); PurchaseReturnOrderDetails ofsPoOrderDetailRowTraget = findOfsPoOrderDetailRowTraget(detailsDto, purchaseReturnOrder);
//查询存货管理档案 //查询存货管理档案
// BdInvmandocEntity bdInvmandocEntity = queryInventoryMan(stockinB, bdCorpEntity.getPkCorp()); BdInvmandocEntity bdInvmandocEntity = queryInventoryMan(detailsDto, bdCorpEntity.getPkCorp());
BdInvmandocEntity bdInvmandocEntity = null; // BdInvmandocEntity bdInvmandocEntity = null;
//存货基础档案
BdInvbasdocEntity bdInvbasdocEntity = queryStockBasicArchives(bdInvmandocEntity.getPkInvmandoc(), bdCorpEntity.getPkCorp());
//BOM版本
//存货对应的BOM
List<BdBomEntity> bomVersion = getBomVersion(bdCalbodyEntity.getPkCalbody(), bdInvbasdocEntity.getPkInvbasdoc(), bdInvbasdocEntity.getInvcode());
//计算含税单价 //计算含税单价
BigDecimal noriginalcurprice = null; BigDecimal noriginalcurprice = null;
@ -409,6 +420,7 @@ public class ConsignmachiningInReturn extends PluginBaseEntity {
consignmachiningInBodyDto.setVsourcebillcode(scOrderEntity.getVordercode());//来源单据号 consignmachiningInBodyDto.setVsourcebillcode(scOrderEntity.getVordercode());//来源单据号
// consignmachiningInBodyDto.setWriteofftype("按备料发料核销");//核销方式和妮姐已经确认不用传递 // consignmachiningInBodyDto.setWriteofftype("按备料发料核销");//核销方式和妮姐已经确认不用传递
consignmachiningInBodyDto.setDbizdate(generateBusinessDate);// 入库日期 consignmachiningInBodyDto.setDbizdate(generateBusinessDate);// 入库日期
consignmachiningInBodyDto.setVdef16(bomVersion.get(0).getVersion());//BOM version
consignmachiningInBodyDtoArrayList.add(consignmachiningInBodyDto); consignmachiningInBodyDtoArrayList.add(consignmachiningInBodyDto);
} }
@ -1141,4 +1153,50 @@ public class ConsignmachiningInReturn extends PluginBaseEntity {
logger.error("记录splitDateAndPush方法抛出的异常", e); logger.error("记录splitDateAndPush方法抛出的异常", e);
} }
} }
/**
* 查询BOM版本版本最新的在返回的结果集的最前面
*
* @param gcbm 工厂主键
* @param wlbmid 物料编码id经过测试这是存货基本档案主键
*/
private List<BdBomEntity> getBomVersion(String gcbm, String wlbmid, String vbillCode) throws Exception {
Assert.notNull(gcbm, "gcbm工厂主键");
Assert.notNull(wlbmid, "wlbmid物料编码id不能为空");
BdBomEntity bdBomEntity = new BdBomEntity();
bdBomEntity.setDataSourceCode("lets_u8c");
bdBomEntity.setWlbmid(wlbmid);
bdBomEntity.setGcbm(gcbm);
List<BdBomEntity> bdBomEntityList = iBdBomDao.query(bdBomEntity);
//2024年9月2日 15:08:30 等待妮姐确认如果对应的存货没有BOM是否抛出异常
//2024年9月2日 15:14:18 已经和妮姐确认如果存货对应的BOM不存在则抛出异常
if (bdBomEntityList == null || bdBomEntityList.size() == 0) {
Assert.state(false, "存货:{}对应的BOM不存在(该存货需要维护BOM)!", vbillCode);
}
return bdBomEntityList;
}
/**
* 2024年8月7日 10:25:29
* 查询基础档案根据公司管理档案主键查询
*
* @author liuyang
*/
private BdInvbasdocEntity queryStockBasicArchives(String pkInvmandoc, String pkCorp) throws Exception {
Assert.notNull(pkInvmandoc, "存货管理档案不能为空");
Assert.notNull(pkCorp, "公司档案不能为空");
BdInvbasdocEntity bdInvbasdocEntity = new BdInvbasdocEntity();
bdInvbasdocEntity.setPk_invmandoc(pkInvmandoc);
bdInvbasdocEntity.setPk_corp(pkCorp);
List<BdInvbasdocEntity> bdInvbasdocEntity2 = iBdInvbasdocDao.queryBdInvbasdocByPkInvmandocV2(bdInvbasdocEntity);
if (bdInvbasdocEntity2.size() == 0) {
Assert.state(false, "根据存货管理档案主键{}和公司档案主键{}没有查询到U8C基础档案", pkInvmandoc, pkCorp);
} else if (bdInvbasdocEntity2.size() >= 2) {
Assert.state(false, "根据存货管理档案主键{}和公司档案主键{}没有查询到U8C基础档案", pkInvmandoc, pkCorp);
}
return bdInvbasdocEntity2.get(0);
}
} }

View File

@ -184,8 +184,8 @@ public class ProxyPurchaseReturn extends PluginBaseEntity {
//OFS采退出库 //OFS采退出库
List<HeaderDetailsDto> returnGoodHeaderDetailsDataDtoArrayList = new ArrayList<>(); List<HeaderDetailsDto> returnGoodHeaderDetailsDataDtoArrayList = new ArrayList<>();
QueryOfsSoSaleOutVo queryOfsSoSaleOutVo = new QueryOfsSoSaleOutVo(); QueryOfsSoSaleOutVo queryOfsSoSaleOutVo = new QueryOfsSoSaleOutVo();
queryOfsSoSaleOutVo.setClosedAt_start(startTime); queryOfsSoSaleOutVo.setAuditAt_start(startTime);
queryOfsSoSaleOutVo.setClosedAt_end(endTime); queryOfsSoSaleOutVo.setAuditAt_end(endTime);
queryOfsSoSaleOutVo.setClientCode("LETS"); queryOfsSoSaleOutVo.setClientCode("LETS");
queryOfsSoSaleOutVo.setPageNo(1L); queryOfsSoSaleOutVo.setPageNo(1L);
queryOfsSoSaleOutVo.setPageSize(50L); queryOfsSoSaleOutVo.setPageSize(50L);
@ -457,6 +457,12 @@ public class ProxyPurchaseReturn extends PluginBaseEntity {
Assert.state(false, "计算采退出库单原币含税单价失败 原因:{}", e.getMessage()); Assert.state(false, "计算采退出库单原币含税单价失败 原因:{}", e.getMessage());
} }
//是否赠品
Boolean isBlargess = false;
if ("0".equals(noriginalcurprice.stripTrailingZeros().toPlainString())) {
isBlargess = true;
}
PoOrderChildrenDto poOrderChildrenDto = new PoOrderChildrenDto(); PoOrderChildrenDto poOrderChildrenDto = new PoOrderChildrenDto();
poOrderChildrenDto.setCmangid(bdInvmandocEntity.getPkInvmandoc());//存货管理id poOrderChildrenDto.setCmangid(bdInvmandocEntity.getPkInvmandoc());//存货管理id
poOrderChildrenDto.setNordernum("-" + new BigDecimal(receivedQty).stripTrailingZeros().toPlainString());//订货数量 poOrderChildrenDto.setNordernum("-" + new BigDecimal(receivedQty).stripTrailingZeros().toPlainString());//订货数量
@ -468,6 +474,7 @@ public class ProxyPurchaseReturn extends PluginBaseEntity {
// poOrderChildrenDto.setIisreplenish(false);//补货标识 * // poOrderChildrenDto.setIisreplenish(false);//补货标识 *
poOrderChildrenDto.setCoperator(OverallConstant.getOverAllValue("u8cApiZdrPK"));//操作员id poOrderChildrenDto.setCoperator(OverallConstant.getOverAllValue("u8cApiZdrPK"));//操作员id
// poOrderChildrenDto.setBreceiveplan(false);//存在到货计划 // poOrderChildrenDto.setBreceiveplan(false);//存在到货计划
poOrderChildrenDto.setBlargess(isBlargess);
poOrderChildrenDtoList.add(poOrderChildrenDto); poOrderChildrenDtoList.add(poOrderChildrenDto);
//2024年8月20日 16:00:03 已经和佳妮总确认计划到货日期不用进行传递 //2024年8月20日 16:00:03 已经和佳妮总确认计划到货日期不用进行传递
@ -710,7 +717,7 @@ public class ProxyPurchaseReturn extends PluginBaseEntity {
private BdBusitypeEntity u8cOperationFlow() throws Exception { private BdBusitypeEntity u8cOperationFlow() throws Exception {
//查询业务流程 //查询业务流程
//2024年8月6日 11:33:07 具体的业务流程名称还需要实施提供 //2024年8月6日 11:33:07 具体的业务流程名称还需要实施提供
String processName = "代理品牌采购"; String processName = "采购退货";
BdBusitypeEntity bdBusitypeEntity = queryBdBusitypeUtil.queryBdBusitype(processName); BdBusitypeEntity bdBusitypeEntity = queryBdBusitypeUtil.queryBdBusitype(processName);
Assert.notNull(bdBusitypeEntity, "根据业务流程名称({})没有查询到业务流程", processName); Assert.notNull(bdBusitypeEntity, "根据业务流程名称({})没有查询到业务流程", processName);
return bdBusitypeEntity; return bdBusitypeEntity;

View File

@ -443,6 +443,12 @@ public class ProxyPurchaseWarehousOrder extends PluginBaseEntity {
String receivedQty = ofsPoOrderDetails.getRequestQty();//请求数量 String receivedQty = ofsPoOrderDetails.getRequestQty();//请求数量
String buyPrice = ofsPoOrderDetails.getDiscountPrice();//实际进价 String buyPrice = ofsPoOrderDetails.getDiscountPrice();//实际进价
//是否赠品
Boolean isBlargess = false;
if ("0".equals(new BigDecimal(buyPrice).stripTrailingZeros().toPlainString())) {
isBlargess = true;
}
PoOrderChildrenDto poOrderChildrenDto = new PoOrderChildrenDto(); PoOrderChildrenDto poOrderChildrenDto = new PoOrderChildrenDto();
poOrderChildrenDto.setCmangid(bdInvmandocEntity.getPkInvmandoc());//存货管理id poOrderChildrenDto.setCmangid(bdInvmandocEntity.getPkInvmandoc());//存货管理id
poOrderChildrenDto.setNordernum(receivedQty);//订货数量 poOrderChildrenDto.setNordernum(receivedQty);//订货数量
@ -455,6 +461,7 @@ public class ProxyPurchaseWarehousOrder extends PluginBaseEntity {
poOrderChildrenDto.setCoperator(OverallConstant.getOverAllValue("u8cApiZdrPK"));//操作员id poOrderChildrenDto.setCoperator(OverallConstant.getOverAllValue("u8cApiZdrPK"));//操作员id
// poOrderChildrenDto.setBreceiveplan(false);//存在到货计划 // poOrderChildrenDto.setBreceiveplan(false);//存在到货计划
poOrderChildrenDto.setVdef20(ofsPoOrderDetails.getId());//O采购订单明细行 poOrderChildrenDto.setVdef20(ofsPoOrderDetails.getId());//O采购订单明细行
poOrderChildrenDto.setBlargess(isBlargess);
poOrderChildrenDtoList.add(poOrderChildrenDto); poOrderChildrenDtoList.add(poOrderChildrenDto);
//2024年8月20日 16:00:03 已经和佳妮总确认计划到货日期不用进行传递 //2024年8月20日 16:00:03 已经和佳妮总确认计划到货日期不用进行传递
@ -594,7 +601,7 @@ public class ProxyPurchaseWarehousOrder extends PluginBaseEntity {
//客商基本档案(供应商类型) //客商基本档案(供应商类型)
//2024年8月20日 14:47:55 丽知商城OFS 供应商客商档案传递到U8C的客商 //2024年8月20日 14:47:55 丽知商城OFS 供应商客商档案传递到U8C的客商
//其中自定义项1作为原系统编码因此统一传到自定义项一已经和大家确认好了没有关系的放心大胆传吧宝贝 //其中自定义项1作为原系统编码因此统一传到自定义项一已经和大家确认好了没有关系的放心大胆传吧宝贝
String shipFromCode = header.getVendorName(); String shipFromCode = header.getVendorCode();
//测试 //测试
// shipFromCode = "dy-off"; // shipFromCode = "dy-off";
Assert.notNull(shipFromCode, "O供应商编码不能为空没有办法完成业务逻辑请配置供应商编码(采购)"); Assert.notNull(shipFromCode, "O供应商编码不能为空没有办法完成业务逻辑请配置供应商编码(采购)");

View File

@ -450,7 +450,7 @@ public class ProxyPurchaseWarehousWarehouse extends PluginBaseEntity {
} }
String bsourcelargess = "N"; String bsourcelargess = "N";
if (noriginalcurprice.longValue() == 0) { if ("0".equals(noriginalcurprice.stripTrailingZeros().toPlainString())) {
bsourcelargess = "Y"; bsourcelargess = "Y";
} }

View File

@ -20,4 +20,5 @@ public class ConsignmachiningInBodyDto {
private String vsourcebillcode; private String vsourcebillcode;
private String writeofftype;//核销方式 private String writeofftype;//核销方式
private String dbizdate; private String dbizdate;
private String vdef16;
} }

View File

@ -12,7 +12,7 @@ import lombok.Data;
*/ */
@Data @Data
public class PoOrderChildrenDto { public class PoOrderChildrenDto {
private String blargess; private Boolean blargess;
private String cassistunit; private String cassistunit;
private String cbaseid; private String cbaseid;
private String ccurrencytypeid; private String ccurrencytypeid;

View File

@ -31,19 +31,21 @@ public class SaveOrUpdateBusinessLogUtil {
private static final String failN = "N"; private static final String failN = "N";
private static final Object OBJECT_LOCK = new Object();
/** /**
* 保存或者更新 * 保存或者更新
* *
* @param integrationTaskLivingDetailsEntity 提交参数 * @param integrationTaskLivingDetailsEntity 提交参数
*/ */
public synchronized void saveOrUpdate(IntegrationTaskLivingDetailsEntity integrationTaskLivingDetailsEntity) { public void saveOrUpdate(IntegrationTaskLivingDetailsEntity integrationTaskLivingDetailsEntity) {
Assert.notNull(integrationTaskLivingDetailsEntity, "integrationTaskLivingDetailsEntity不能为空"); Assert.notNull(integrationTaskLivingDetailsEntity, "integrationTaskLivingDetailsEntity不能为空");
Assert.notNull(integrationTaskLivingDetailsEntity.getRootAppPk(), "源系统单号不能为空"); Assert.notNull(integrationTaskLivingDetailsEntity.getRootAppPk(), "源系统单号不能为空");
Assert.notNull(integrationTaskLivingDetailsEntity.getPluginId(), "场景id不能为空"); Assert.notNull(integrationTaskLivingDetailsEntity.getPluginId(), "场景id不能为空");
synchronized (OBJECT_LOCK) {
try { try {
IntegrationTaskLivingDetailsEntity integrationTaskLivingDetails = null; IntegrationTaskLivingDetailsEntity integrationTaskLivingDetails = null;
synchronized (queryDetailsLock) {
IntegrationTaskLivingDetailsEntity integrationTaskLivingDetailsEntity1 = new IntegrationTaskLivingDetailsEntity(); IntegrationTaskLivingDetailsEntity integrationTaskLivingDetailsEntity1 = new IntegrationTaskLivingDetailsEntity();
integrationTaskLivingDetailsEntity1.setNewState("N"); integrationTaskLivingDetailsEntity1.setNewState("N");
integrationTaskLivingDetailsEntity1.setRootAppPk(integrationTaskLivingDetailsEntity.getRootAppPk()); integrationTaskLivingDetailsEntity1.setRootAppPk(integrationTaskLivingDetailsEntity.getRootAppPk());
@ -52,13 +54,11 @@ public class SaveOrUpdateBusinessLogUtil {
if (integrationTaskLivingDetailsEntities != null && integrationTaskLivingDetailsEntities.size() > 0) { if (integrationTaskLivingDetailsEntities != null && integrationTaskLivingDetailsEntities.size() > 0) {
integrationTaskLivingDetails = integrationTaskLivingDetailsEntities.get(0); integrationTaskLivingDetails = integrationTaskLivingDetailsEntities.get(0);
} }
}
if (integrationTaskLivingDetails != null) { if (integrationTaskLivingDetails != null) {
//存在则更新可能是NY / NN //存在则更新可能是NY / NN
synchronized (insertOrUpdateLock) {
integrationTaskLivingDetailsEntity.setId(integrationTaskLivingDetails.getId()); integrationTaskLivingDetailsEntity.setId(integrationTaskLivingDetails.getId());
updateSuccessMessage(integrationTaskLivingDetailsEntity); updateSuccessMessage(integrationTaskLivingDetailsEntity);
}
} else { } else {
//不存在则新增可能是Y / N //不存在则新增可能是Y / N
Long uuid = UUIDLong.longUUID(); Long uuid = UUIDLong.longUUID();
@ -71,6 +71,7 @@ public class SaveOrUpdateBusinessLogUtil {
//2024年9月3日 10:26:45 如果这里往上抛出异常没有功能搭配处理 //2024年9月3日 10:26:45 如果这里往上抛出异常没有功能搭配处理
} }
} }
}
/** /**
* 更新日志 存在则更新可能是NY / NN * 更新日志 存在则更新可能是NY / NN

View File

@ -12,7 +12,7 @@ spring:
dynamic: dynamic:
datasource: datasource:
master: master:
url: jdbc:mysql://192.168.14.252:3306/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=3000000000&socketTimeout=3000000000&autoReconnectForPools=true url: jdbc:mysql://192.168.14.252:3306/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000000000&socketTimeout=30000000000&autoReconnectForPools=true
username: root username: root
password: 62e4295b615a30dbf3b8ee96f41c820b password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置 driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置

View File

@ -53,8 +53,8 @@ spring:
strict: true #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源 strict: true #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
druid: druid:
initial-size: 10 # 初始化时建立物理连接的个数。初始化发生在显示调用init方法或者第一次getConnection时 initial-size: 10 # 初始化时建立物理连接的个数。初始化发生在显示调用init方法或者第一次getConnection时
min-idle: 50 # 最小连接池数量 min-idle: 100 # 最小连接池数量
maxActive: 500 # 最大连接池数量 maxActive: 1000 # 最大连接池数量
maxWait: 600000000 # 获取连接时最大等待时间单位毫秒。配置了maxWait之后缺省启用公平锁并发效率会有所下降如果需要可以通过配置 maxWait: 600000000 # 获取连接时最大等待时间单位毫秒。配置了maxWait之后缺省启用公平锁并发效率会有所下降如果需要可以通过配置
timeBetweenEvictionRunsMillis: 600000 # 关闭空闲连接的检测时间间隔.Destroy线程会检测连接的间隔时间如果连接空闲时间大于等于minEvictableIdleTimeMillis则关闭物理连接。 timeBetweenEvictionRunsMillis: 600000 # 关闭空闲连接的检测时间间隔.Destroy线程会检测连接的间隔时间如果连接空闲时间大于等于minEvictableIdleTimeMillis则关闭物理连接。
minEvictableIdleTimeMillis: 3000000 # 连接的最小生存时间.连接保持空闲而不被驱逐的最小时间 minEvictableIdleTimeMillis: 3000000 # 连接的最小生存时间.连接保持空闲而不被驱逐的最小时间

View File

@ -25,10 +25,13 @@ public class ProxyPurchaseReturnTest {
@Test @Test
public void startImplement() { public void startImplement() {
try { try {
proxyPurchaseReturn.startImplement("LETS-SH2024082700000005"); // proxyPurchaseReturn.startImplement("LETS-SH2024082700000005");
// proxyPurchaseReturn.startImplement("2024-01-01 00:00:00", "2024-08-07 23:59:59"); // proxyPurchaseReturn.startImplement("2024-01-01 00:00:00", "2024-08-07 23:59:59");
// proxyPurchaseReturn.u8cOperationFlow();
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }