|
|
|
@ -6,6 +6,7 @@ import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import cn.hutool.json.JSONObject; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.logpm.basicdata.dto.BasicdataTripartiteMallFeignDTO; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataStorageServicesEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
@ -193,13 +194,13 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
String sendWarehouse = null; |
|
|
|
|
String endWarehouse = null; |
|
|
|
|
List<DistributionParcelListEntity> byPacketBarCode = parcelListClient.findByPacketBarCode(packageCode); |
|
|
|
|
if(CollUtil.isNotEmpty(byPacketBarCode)){ |
|
|
|
|
if (CollUtil.isNotEmpty(byPacketBarCode)) { |
|
|
|
|
DistributionParcelListEntity parcelListEntity = byPacketBarCode.get(0); |
|
|
|
|
if(ObjectUtil.isNotEmpty(parcelListEntity)){ |
|
|
|
|
if(StrUtil.isNotEmpty(parcelListEntity.getSendWarehouseName())){ |
|
|
|
|
if (ObjectUtil.isNotEmpty(parcelListEntity)) { |
|
|
|
|
if (StrUtil.isNotEmpty(parcelListEntity.getSendWarehouseName())) { |
|
|
|
|
sendWarehouse = parcelListEntity.getSendWarehouseName(); |
|
|
|
|
} |
|
|
|
|
if(StrUtil.isNotEmpty(parcelListEntity.getAcceptWarehouseName())){ |
|
|
|
|
if (StrUtil.isNotEmpty(parcelListEntity.getAcceptWarehouseName())) { |
|
|
|
|
endWarehouse = parcelListEntity.getAcceptWarehouseName(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -241,7 +242,7 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
Long warehouseId = inComingDTO.getWarehouseId();//仓库id
|
|
|
|
|
String warehouseName = inComingDTO.getWarehouseName(); |
|
|
|
|
Integer incomingType = inComingDTO.getIncomingType();//入库类型 1码板打托 2扫码入库 3直接入库 4 按车次号入库 5按订单入库 6扫描入库 7 批量卸车入库 8卸车托盘 9卸分一体 10补录数据入库
|
|
|
|
|
try{ |
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
if (StringUtil.isBlank(warehouseName)) { |
|
|
|
|
BasicdataWarehouseEntity warehouseEntity = warehouseClient.getEntityWarehouseId(warehouseId); |
|
|
|
@ -406,7 +407,7 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
|
|
|
|
|
Tenant tenant = result.getData(); |
|
|
|
|
|
|
|
|
|
if (tenant!=null && tenant.getTenantType() == 1) { |
|
|
|
|
if (tenant != null && tenant.getTenantType() == 1) { |
|
|
|
|
// 发送入库消息
|
|
|
|
|
OrderStatusDTO orderStatusDTO = new OrderStatusDTO(); |
|
|
|
|
// 通过包件id 查询包件
|
|
|
|
@ -421,13 +422,13 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
String sendWarehouse = null; |
|
|
|
|
String endWarehouse = null; |
|
|
|
|
List<DistributionParcelListEntity> byPacketBarCode = parcelListClient.findByPacketBarCode(advanceDetailEntity.getOrderPackageCode()); |
|
|
|
|
if(CollUtil.isNotEmpty(byPacketBarCode)){ |
|
|
|
|
if (CollUtil.isNotEmpty(byPacketBarCode)) { |
|
|
|
|
DistributionParcelListEntity parcelListEntity = byPacketBarCode.get(0); |
|
|
|
|
if(ObjectUtil.isNotEmpty(parcelListEntity)){ |
|
|
|
|
if(StrUtil.isNotEmpty(parcelListEntity.getSendWarehouseName())){ |
|
|
|
|
if (ObjectUtil.isNotEmpty(parcelListEntity)) { |
|
|
|
|
if (StrUtil.isNotEmpty(parcelListEntity.getSendWarehouseName())) { |
|
|
|
|
sendWarehouse = parcelListEntity.getSendWarehouseName(); |
|
|
|
|
} |
|
|
|
|
if(StrUtil.isNotEmpty(parcelListEntity.getAcceptWarehouseName())){ |
|
|
|
|
if (StrUtil.isNotEmpty(parcelListEntity.getAcceptWarehouseName())) { |
|
|
|
|
endWarehouse = parcelListEntity.getAcceptWarehouseName(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -451,7 +452,7 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
.build())) |
|
|
|
|
.build(); |
|
|
|
|
factoryDataMessageSender.sendNodeDataByBrand(nodePushMsg); |
|
|
|
|
} else if (tenant!=null && tenant.getTenantType() == 2) { |
|
|
|
|
} else if (tenant != null && tenant.getTenantType() == 2) { |
|
|
|
|
// 完结预入库数据状态
|
|
|
|
|
// JSONObject jsonObject = new JSONObject();
|
|
|
|
|
// jsonObject.put("orderPackageCode", advanceDetailEntity.getOrderPackageCode());
|
|
|
|
@ -559,7 +560,11 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
return Resp.scanSuccess("商家为" + dealerName, "商家为" + dealerName); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
BasicdataTripartiteMallEntity tripartiteMallEntity = tripartiteMallClient.findEntityByDealerNameAndDealerCodeAndBrand(dealerName, dealerCode, brand); |
|
|
|
|
BasicdataTripartiteMallFeignDTO basicdataTripartiteMallFeignDTO = new BasicdataTripartiteMallFeignDTO(); |
|
|
|
|
basicdataTripartiteMallFeignDTO.setDealerName(dealerName); |
|
|
|
|
basicdataTripartiteMallFeignDTO.setDealerCode(dealerCode); |
|
|
|
|
basicdataTripartiteMallFeignDTO.setBrand(brand); |
|
|
|
|
BasicdataTripartiteMallEntity tripartiteMallEntity = tripartiteMallClient.findEntityByDealerNameAndDealerCodeAndBrand(basicdataTripartiteMallFeignDTO); |
|
|
|
|
if (!Objects.isNull(tripartiteMallEntity)) { |
|
|
|
|
Long clientId = tripartiteMallEntity.getClientId(); |
|
|
|
|
BasicdataStorageServicesEntity storageServicesEntity = storageServicesClient.findEntityBySendWarehouseIdAndClientId(warehouseId, clientId); |
|
|
|
@ -578,8 +583,8 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
throw e; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(sendAdvanceDetailEntityList)){ |
|
|
|
|
advanceDetailService.sendReportIncomingData(AuthUtil.getUserId(),AuthUtil.getNickName(),sendAdvanceDetailEntityList,warehouseId,warehouseName,incomingType); |
|
|
|
|
if (CollUtil.isNotEmpty(sendAdvanceDetailEntityList)) { |
|
|
|
|
advanceDetailService.sendReportIncomingData(AuthUtil.getUserId(), AuthUtil.getNickName(), sendAdvanceDetailEntityList, warehouseId, warehouseName, incomingType); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String a = audio.get(); |
|
|
|
@ -833,7 +838,7 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
//查询所有包件
|
|
|
|
|
List<TrunklineAdvanceDetailEntity> detailList = advanceDetailService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
List<String> orderPackageCodes = advanceService.incomingPackageBatch(advanceId, warehouseId, detailList, userId, deptId, tenantId, waybillEntity,incomingType); |
|
|
|
|
List<String> orderPackageCodes = advanceService.incomingPackageBatch(advanceId, warehouseId, detailList, userId, deptId, tenantId, waybillEntity, incomingType); |
|
|
|
|
|
|
|
|
|
advanceDetailService.updateBatchById(detailList); |
|
|
|
|
|
|
|
|
@ -869,21 +874,21 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(sendAdvanceDetailEntityList)){ |
|
|
|
|
if (CollUtil.isNotEmpty(sendAdvanceDetailEntityList)) { |
|
|
|
|
try { |
|
|
|
|
if (CollUtil.isNotEmpty(sendAdvanceDetailEntityList)) { |
|
|
|
|
for (TrunklineAdvanceDetailEntity advanceDetailEntity : sendAdvanceDetailEntityList) { |
|
|
|
|
String waybillNo = advanceDetailEntity.getWaybillNo(); |
|
|
|
|
String sendWarehouse = null; |
|
|
|
|
String endWarehouse = null; |
|
|
|
|
if(StrUtil.isNotEmpty(waybillNo)){ |
|
|
|
|
if(waybillEntityMap.containsKey(waybillNo)){ |
|
|
|
|
if (StrUtil.isNotEmpty(waybillNo)) { |
|
|
|
|
if (waybillEntityMap.containsKey(waybillNo)) { |
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = waybillEntityMap.get(waybillNo); |
|
|
|
|
if(ObjectUtil.isNotEmpty(warehouseWaybillEntity)){ |
|
|
|
|
if(StrUtil.isNotEmpty(warehouseWaybillEntity.getDepartureWarehouseName())){ |
|
|
|
|
if (ObjectUtil.isNotEmpty(warehouseWaybillEntity)) { |
|
|
|
|
if (StrUtil.isNotEmpty(warehouseWaybillEntity.getDepartureWarehouseName())) { |
|
|
|
|
sendWarehouse = warehouseWaybillEntity.getDepartureWarehouseName(); |
|
|
|
|
} |
|
|
|
|
if(StrUtil.isNotEmpty(warehouseWaybillEntity.getDestinationWarehouseName())){ |
|
|
|
|
if (StrUtil.isNotEmpty(warehouseWaybillEntity.getDestinationWarehouseName())) { |
|
|
|
|
endWarehouse = warehouseWaybillEntity.getDestinationWarehouseName(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -911,10 +916,10 @@ public class InComingServiceImpl implements IInComingService {
|
|
|
|
|
factoryDataMessageSender.sendNodeDataByBrand(nodePushMsg); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error("始发仓入库推送工厂消息异常",e); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("始发仓入库推送工厂消息异常", e); |
|
|
|
|
} |
|
|
|
|
advanceDetailService.sendReportIncomingData(AuthUtil.getUserId(),AuthUtil.getNickName(),sendAdvanceDetailEntityList,warehouseId,warehouseName,incomingType); |
|
|
|
|
advanceDetailService.sendReportIncomingData(AuthUtil.getUserId(), AuthUtil.getNickName(), sendAdvanceDetailEntityList, warehouseId, warehouseName, incomingType); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// DynamicDataSourceContextHolder.clear();
|
|
|
|
|