|
|
|
@ -57,7 +57,9 @@ import com.logpm.oldproject.feign.IWarehouseClient;
|
|
|
|
|
import com.logpm.trunkline.dto.WaybillLogDTO; |
|
|
|
|
import com.logpm.trunkline.feign.ITrunklinePackageTrackLogClient; |
|
|
|
|
import com.logpm.trunkline.feign.ITrunklineWaybillTrackClient; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseConfigEntity; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseRetentionScanEntity; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseConfigClient; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseRetentionScanClient; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseUpdownStockUpAreaClient; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseUpdownTypeClient; |
|
|
|
@ -171,6 +173,9 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
private IDistributionAsyncService distributionAsyncService; |
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataWarehouseClient basicdataWarehouseClient; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private IWarehouseConfigClient warehouseConfigClient; |
|
|
|
|
@Autowired |
|
|
|
|
private DistributionReservationMapper distributionReservationMapper; |
|
|
|
|
@Autowired |
|
|
|
@ -681,6 +686,20 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
log.error("参数缺失,signforId:{}", distributionSignforDTO.getId()); |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
WarehouseConfigEntity warehouseConfig = warehouseConfigClient.getWarehouseConfig(myCurrentWarehouse.getId()); |
|
|
|
|
Integer isAutoRelease = warehouseConfig.getIsAutoRelease(); |
|
|
|
|
if (Integer.parseInt(IsOrNoConstant.no.getValue()) == isAutoRelease){ |
|
|
|
|
//进行异常判断拦截
|
|
|
|
|
//查询是否存在异常
|
|
|
|
|
List<DistributionLoadscanAbnormalEntity> loadscanAbnormalEntityList = distributionLoadscanAbnormalService.list(Wrappers.<DistributionLoadscanAbnormalEntity>query().lambda() |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getReservationId, distributionSignforDTO.getReservationId()) |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getWarehouseId, myCurrentWarehouse.getId()) |
|
|
|
|
.ne(DistributionLoadscanAbnormalEntity::getComplete, Integer.parseInt(IsOrNoConstant.yes.getValue())) |
|
|
|
|
); |
|
|
|
|
if (!loadscanAbnormalEntityList.isEmpty()) { |
|
|
|
|
return R.fail("当前客户存在异常未完成"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); |
|
|
|
|
DistributionSignforEntity distributionSignfor = this.getById(distributionSignforDTO.getId()); |
|
|
|
|
Integer loadingNum = distributionSignfor.getLoadedNumber() + distributionSignfor.getLoadedinNumber(); |
|
|
|
@ -695,8 +714,6 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
log.error("文员复核查询配送计划失败,deliveryId:{}", distributionSignfor.getDeliveryId()); |
|
|
|
|
return R.fail("操作失败,请核对计划信息!!!"); |
|
|
|
|
} |
|
|
|
|
// this.updatePicture(distributionSignforDTO);
|
|
|
|
|
// this.updateById(distributionSignfor);
|
|
|
|
|
//修改预约单的签收状态和装车状态
|
|
|
|
|
//查询签收信息
|
|
|
|
|
DistributionReservationEntity reservationEntity = distributionReservationService.getById(distributionSignfor.getReservationId()); |
|
|
|
@ -712,7 +729,9 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
//还需要对未装车未签收的包件进行状态的回退
|
|
|
|
|
boolean flag = this.judgmentSignIsHavePackage(distributionSignfor.getReservationId()); |
|
|
|
|
if (!flag) { |
|
|
|
|
distributionAsyncService.releaseSource(distributionSignfor.getReservationId(), myCurrentWarehouse, AuthUtil.getUser(), deliveryListEntity.getTrainNumber()); |
|
|
|
|
if (Integer.parseInt(IsOrNoConstant.yes.getValue()) == isAutoRelease){ |
|
|
|
|
distributionAsyncService.releaseSource(distributionSignfor.getReservationId(), myCurrentWarehouse, AuthUtil.getUser(), deliveryListEntity.getTrainNumber()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//查看是否需要进行安装
|
|
|
|
|
if (reservationEntity.getIsInstall() == 2) { |
|
|
|
@ -832,11 +851,12 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
log.error(method + "查询签收失败,signingId:{}", signingId); |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
Integer isHaveAbnormalPackage = signforEntity.getIsHaveAbnormalPackage(); |
|
|
|
|
//判断该签收是否存在待审核的异常包件
|
|
|
|
|
if (isHaveAbnormalPackage == 2) { |
|
|
|
|
return R.data(200, "存在异常包件", "存在异常包件"); |
|
|
|
|
} |
|
|
|
|
// Integer isHaveAbnormalPackage = signforEntity.getIsHaveAbnormalPackage();
|
|
|
|
|
// //判断该签收是否存在待审核的异常包件
|
|
|
|
|
// if (isHaveAbnormalPackage == 2) {
|
|
|
|
|
// return R.data(200, "存在异常包件", "存在异常包件");
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//判断该客户是否具备进行复核
|
|
|
|
|
//需要满足条件,存在包件或者以备货库存品未装车和签收
|
|
|
|
@ -845,11 +865,28 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
//该客户的包件和库存品都进行装车、签收
|
|
|
|
|
return R.data(200, "直接进行复核操作", "直接进行复核操作"); |
|
|
|
|
} else { |
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if (Func.isEmpty(myCurrentWarehouse)) { |
|
|
|
|
return R.fail(403, "未授权!!!"); |
|
|
|
|
} |
|
|
|
|
WarehouseConfigEntity warehouseConfig = warehouseConfigClient.getWarehouseConfig(myCurrentWarehouse.getId()); |
|
|
|
|
Integer isAutoRelease = warehouseConfig.getIsAutoRelease(); |
|
|
|
|
if (Integer.parseInt(IsOrNoConstant.no.getValue()) == isAutoRelease){ |
|
|
|
|
//进行异常判断拦截
|
|
|
|
|
//查询是否存在异常
|
|
|
|
|
List<DistributionLoadscanAbnormalEntity> loadscanAbnormalEntityList = distributionLoadscanAbnormalService.list(Wrappers.<DistributionLoadscanAbnormalEntity>query().lambda() |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getReservationId, signforEntity.getReservationId()) |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getWarehouseId, myCurrentWarehouse.getId()) |
|
|
|
|
.ne(DistributionLoadscanAbnormalEntity::getComplete, Integer.parseInt(IsOrNoConstant.yes.getValue())) |
|
|
|
|
); |
|
|
|
|
if (!loadscanAbnormalEntityList.isEmpty()) { |
|
|
|
|
return R.fail("当前客户存在异常未完成"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//存在满足进行资源释放的包件,返回前端进行提示确认后
|
|
|
|
|
return R.data(200, "此任务存在未完成包件,请确认", "此任务存在未完成包件,请确认"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -7680,20 +7717,23 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
//判断客户
|
|
|
|
|
boolean flag = judgmentClient(reservationEntity, parcelListEntity.getStockArticleId()); |
|
|
|
|
if (flag) { |
|
|
|
|
if (OrderPackageReservationStatusConstant.yiyueyue.getValue().equals(parcelListEntity.getOrderPackageReservationStatus())){ |
|
|
|
|
return Resp.scanFail("当前包件存在配送计划", "当前包件存在配送计划"); |
|
|
|
|
} |
|
|
|
|
return R.fail(3006, null); |
|
|
|
|
} else { |
|
|
|
|
//查询出未审核如果存在多个则不行
|
|
|
|
|
DistributionLoadscanAbnormalEntity abnormalEntity = distributionLoadscanAbnormalService.getOne(Wrappers.<DistributionLoadscanAbnormalEntity>query().lambda() |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getDeliveryListId, deliveryId) |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getReservationId, reservationId) |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getPackageCode, distrilbutionloadingscanDTO.getBarcode()) |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getAuditingStatus, LoadingAbnormalAuditingStatusConstant.daishenhe.getValue()) |
|
|
|
|
.eq(DistributionLoadscanAbnormalEntity::getAbnormalType, LoadingAbnormalTypeConstant.jihuayichang.getValue()) |
|
|
|
|
); |
|
|
|
|
if (!Objects.isNull(abnormalEntity)){ |
|
|
|
|
return Resp.scanFail("此包件存在需回库操作", "此包件存在需回库操作"); |
|
|
|
|
return Resp.scanFail("异常装车未处理","异常装车未处理"); |
|
|
|
|
} |
|
|
|
|
if (OrderPackageReservationStatusConstant.yiyueyue.getValue().equals(parcelListEntity.getOrderPackageReservationStatus())){ |
|
|
|
|
return Resp.scanFail("当前包件存在配送计划", "当前包件存在配送计划"); |
|
|
|
|
} |
|
|
|
|
return R.fail(3006, null); |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
return Resp.scanFail("不属于当前签收客户", "不属于当前签收客户"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|