|
|
|
@ -13,9 +13,11 @@ import com.logpm.business.dto.BusinessPreOrderDTO;
|
|
|
|
|
import com.logpm.business.dto.BusinessSanDTO; |
|
|
|
|
import com.logpm.business.entity.BusinessPreOrderEntity; |
|
|
|
|
import com.logpm.business.mapper.BusinessPreOrderMapper; |
|
|
|
|
import com.logpm.business.service.IBusinessAsyncService; |
|
|
|
|
import com.logpm.business.service.IBusinessPreOrderService; |
|
|
|
|
import com.logpm.business.vo.*; |
|
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionDeliveryListClient; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionParcelListClient; |
|
|
|
|
import com.logpm.trunkline.dto.InComingDTO; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineAdvanceDetailEntity; |
|
|
|
@ -32,6 +34,7 @@ import org.springblade.common.exception.CustomerException;
|
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.redis.cache.BladeRedis; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
@ -51,9 +54,8 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
private final IInComingClient inComingClient; |
|
|
|
|
private final ITrunklineAdvanceDetailClient trunklineAdvanceDetailClient; |
|
|
|
|
private final BladeRedis bladeRedis; |
|
|
|
|
private final IDistributionParcelListClient distributionParcelListClient; |
|
|
|
|
private final IWarehouseTrayTypeClient warehouseTrayTypeClient; |
|
|
|
|
|
|
|
|
|
private final IDistributionDeliveryListClient distributionDeliveryListClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -78,7 +80,6 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
List<BusinessPreOrderEntity> list = baseMapper.selectList(wrapper); |
|
|
|
|
|
|
|
|
|
List<BusinessPreOrderEntity> data = new ArrayList<>(); |
|
|
|
|
List<String> carNumberList = new ArrayList<>(); |
|
|
|
|
for (BusinessPreOrderEntity distributionBusinessPreOrderEntity : list) { |
|
|
|
|
|
|
|
|
|
if (distributionBusinessPreOrderEntity.getInWarehouse() == 1) { |
|
|
|
@ -320,7 +321,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.getTrayCode(); |
|
|
|
|
Object o = bladeRedis.get(key); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(o)) { |
|
|
|
@ -342,6 +343,10 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 推送业务系统
|
|
|
|
|
|
|
|
|
|
distributionDeliveryListClient.mallClientSignfor(selectD.getFromTenantId(), businessSanDTO.getDistrCarNumber(), selectD.getAcceptWarehouseId(), orderPackageCode, AuthUtil.getTenantId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("扫描成功", a + "件"); |
|
|
|
|
} |
|
|
|
@ -372,6 +377,10 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
t.setFromTenantId(distributionBusinessPreOrderEntity.getFromTenantId()); |
|
|
|
|
t.setOperationStatus(1); |
|
|
|
|
t.setInWarehouse(0); |
|
|
|
|
t.setAcceptWarehouseId(distributionBusinessPreOrderEntity.getAcceptWarehouseId()); |
|
|
|
|
t.setAcceptWarehouseName(distributionBusinessPreOrderEntity.getAcceptWarehouseName()); |
|
|
|
|
t.setSendWarehouseId(distributionBusinessPreOrderEntity.getSendWarehouseId()); |
|
|
|
|
t.setSendWarehouseName(distributionBusinessPreOrderEntity.getSendWarehouseName()); |
|
|
|
|
this.save(t); |
|
|
|
|
} |
|
|
|
|
R r = inOrderWarehourseByFeign(businessSanDTO); |
|
|
|
@ -383,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.getTrayCode(); |
|
|
|
|
Object o = bladeRedis.get(key); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(o)) { |
|
|
|
@ -404,7 +413,7 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
}else{ |
|
|
|
|
//记录当前车次的异常件数
|
|
|
|
|
Object o = bladeRedis.get(RedisKeyConstant.BUSINESS_INEXCE_CARNUMBER + businessSanDTO.getDistrCarNumber()); |
|
|
|
|
String key =RedisKeyConstant.BUSINESS_INEXCE_CARNUMBER + businessSanDTO.getDistrCarNumber()+businessSanDTO.getTrayCode(); |
|
|
|
|
String key =RedisKeyConstant.BUSINESS_INEXCE_CARNUMBER +businessSanDTO.getTrayCode(); |
|
|
|
|
if (Objects.isNull(o)) { |
|
|
|
|
|
|
|
|
|
// 查询当前车次的异常入库数量
|
|
|
|
@ -427,7 +436,9 @@ public class BusinessPreOrderServiceImpl extends BaseServiceImpl<BusinessPreOrde
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 推送业务系统
|
|
|
|
|
|
|
|
|
|
distributionDeliveryListClient.mallClientSignfor(t.getFromTenantId(), businessSanDTO.getDistrCarNumber(), t.getAcceptWarehouseId(), orderPackageCode, AuthUtil.getTenantId()); |
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("扫描成功", "异常" + a + "件"); |
|
|
|
|
} |
|
|
|
|