|
|
|
@ -47,6 +47,7 @@ import com.logpm.warehouse.service.*;
|
|
|
|
|
import com.logpm.warehouse.vo.*; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.log4j.Log4j2; |
|
|
|
|
import org.jetbrains.annotations.Nullable; |
|
|
|
|
import org.mapstruct.factory.Mappers; |
|
|
|
|
import org.springblade.common.constant.RedisKeyConstant; |
|
|
|
|
import org.springblade.common.constant.common.IsOrNoConstant; |
|
|
|
@ -192,74 +193,8 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
List<BasicdataTrayEntity> trayEntityList = basicdataTrayClient.getTrayEntityList(); |
|
|
|
|
parcelListInfo.forEach(i -> { |
|
|
|
|
|
|
|
|
|
QuestDetailEntity detailEntity = new QuestDetailEntity(); |
|
|
|
|
detailEntity.setId(getTaskID()); |
|
|
|
|
detailEntity.setCreateTime(new Date()); |
|
|
|
|
detailEntity.setTenantId(user.getTenantId()); |
|
|
|
|
detailEntity.setCreateUser(user.getUserId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long deptId = getDeptByMaxDept(user.getDeptId()); |
|
|
|
|
detailEntity.setCreateDept(deptId); |
|
|
|
|
detailEntity.setIsDeleted(0); |
|
|
|
|
detailEntity.setStatus(1); |
|
|
|
|
detailEntity.setQuestId(taskQuest); |
|
|
|
|
detailEntity.setOrderCode(i.getOrderCode()); |
|
|
|
|
detailEntity.setOrderId(i.getStockArticleId()); |
|
|
|
|
detailEntity.setSendWarehouseName(i.getSendWarehouseName()); |
|
|
|
|
detailEntity.setBrandName(i.getBrandName()); |
|
|
|
|
detailEntity.setHasData(1); |
|
|
|
|
// detailEntity.setQuestType();
|
|
|
|
|
//盘点对象;1.定制品 2零担 3 库存品
|
|
|
|
|
//查询托盘名称
|
|
|
|
|
if (ObjectUtils.isNotNull(i.getTrayId())) { |
|
|
|
|
// boolean b = trayEntityList.stream().anyMatch(a -> i.getTrayId().equals(String.valueOf(a.getId()) ));
|
|
|
|
|
// log.info("托盘是否有值>>>>>>>>>>{}",b);
|
|
|
|
|
Optional<BasicdataTrayEntity> first = trayEntityList.stream().filter(t -> i.getTrayId().equals(String.valueOf(t.getId()))).findFirst(); |
|
|
|
|
if (first.isPresent()) { |
|
|
|
|
BasicdataTrayEntity basicdataTrayEntity = first.get(); |
|
|
|
|
detailEntity.setTrayName(basicdataTrayEntity.getPalletName()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
Integer conditions = i.getConditions(); |
|
|
|
|
if (conditions.equals(1)) { |
|
|
|
|
detailEntity.setQuestTarget(1); |
|
|
|
|
} else if (conditions.equals(2)) { |
|
|
|
|
detailEntity.setQuestTarget(3); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (ObjectUtils.isNotNull(i.getConditions()) && i.getConditions().equals(1)) { |
|
|
|
|
detailEntity.setQuestTarget(i.getConditions()); |
|
|
|
|
} else if (ObjectUtils.isNotNull(i.getConditions()) && i.getConditions().equals(2)) { |
|
|
|
|
detailEntity.setQuestTarget(3); // 库存品
|
|
|
|
|
} else { |
|
|
|
|
log.info("包件信息!数据信息不存在!!"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// detailEntity.setQuestTarget(1);
|
|
|
|
|
detailEntity.setOrderPackageCode(i.getOrderPackageCode()); |
|
|
|
|
detailEntity.setWaybillNumber(i.getWaybillNumber()); |
|
|
|
|
detailEntity.setOrderPackageId(i.getId()); |
|
|
|
|
detailEntity.setCategoryName(i.getFirsts()); |
|
|
|
|
detailEntity.setThirdProduct(i.getThirdProduct()); |
|
|
|
|
detailEntity.setFirsts(i.getFirsts()); |
|
|
|
|
detailEntity.setSecond(i.getSecond()); |
|
|
|
|
detailEntity.setStockId(i.getStockId()); //库存品ID
|
|
|
|
|
detailEntity.setQuestStatus(0); |
|
|
|
|
detailEntity.setStockNum(ObjectUtils.isNotNull(i.getQuantity()) ? i.getQuantity() : 0); |
|
|
|
|
detailEntity.setWarehouseId(i.getWarehouseId()); |
|
|
|
|
detailEntity.setPositionCode(i.getPositionCode()); |
|
|
|
|
detailEntity.setTrayCode(i.getTrayCode()); |
|
|
|
|
// detailEntity.setGroundingAllocationId();
|
|
|
|
|
// detailEntity.setGroundingPositionCode();
|
|
|
|
|
detailEntity.setTrayId(i.getTrayId()); |
|
|
|
|
detailEntity.setAllocationId(i.getAllocationId()); |
|
|
|
|
detailEntity.setIsNew(0); |
|
|
|
|
|
|
|
|
|
detailEntity.setMaterialCode(i.getMaterialCode()); |
|
|
|
|
detailEntity.setMaterialName(i.getMaterialName()); |
|
|
|
|
detailEntity.setMarketName(i.getMallName()); |
|
|
|
|
detailEntity.setIncomingBatch(i.getOrderCode()); |
|
|
|
|
QuestDetailEntity detailEntity = buildQuestDetailEntity(taskQuest, i, user, trayEntityList); |
|
|
|
|
if (detailEntity == null) return; |
|
|
|
|
detailEntityList.add(detailEntity); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
@ -300,6 +235,79 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Nullable |
|
|
|
|
private QuestDetailEntity buildQuestDetailEntity(Long taskQuest, DistributionParcelListEntity i, BladeUser user, List<BasicdataTrayEntity> trayEntityList) { |
|
|
|
|
QuestDetailEntity detailEntity = new QuestDetailEntity(); |
|
|
|
|
detailEntity.setId(getTaskID()); |
|
|
|
|
detailEntity.setCreateTime(new Date()); |
|
|
|
|
detailEntity.setTenantId(i.getTenantId()); |
|
|
|
|
detailEntity.setCreateUser(user.getUserId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long deptId = getDeptByMaxDept(user.getDeptId()); |
|
|
|
|
detailEntity.setCreateDept(deptId); |
|
|
|
|
detailEntity.setIsDeleted(0); |
|
|
|
|
detailEntity.setStatus(1); |
|
|
|
|
detailEntity.setQuestId(taskQuest); |
|
|
|
|
detailEntity.setOrderCode(i.getOrderCode()); |
|
|
|
|
detailEntity.setOrderId(i.getStockArticleId()); |
|
|
|
|
detailEntity.setSendWarehouseName(i.getSendWarehouseName()); |
|
|
|
|
detailEntity.setBrandName(i.getBrandName()); |
|
|
|
|
detailEntity.setHasData(1); |
|
|
|
|
// detailEntity.setQuestType();
|
|
|
|
|
//盘点对象;1.定制品 2零担 3 库存品
|
|
|
|
|
//查询托盘名称
|
|
|
|
|
if (ObjectUtils.isNotNull(i.getTrayId())) { |
|
|
|
|
// boolean b = trayEntityList.stream().anyMatch(a -> i.getTrayId().equals(String.valueOf(a.getId()) ));
|
|
|
|
|
// log.info("托盘是否有值>>>>>>>>>>{}",b);
|
|
|
|
|
// Optional<BasicdataTrayEntity> first = trayEntityList.stream().filter(t -> i.getTrayId().equals(String.valueOf(t.getId()))).findFirst();
|
|
|
|
|
// if (first.isPresent()) {
|
|
|
|
|
// BasicdataTrayEntity basicdataTrayEntity = first.get();
|
|
|
|
|
// detailEntity.setTrayName(basicdataTrayEntity.getPalletName());
|
|
|
|
|
// }
|
|
|
|
|
} |
|
|
|
|
Integer conditions = i.getConditions(); |
|
|
|
|
if (conditions.equals(1)) { |
|
|
|
|
detailEntity.setQuestTarget(1); |
|
|
|
|
} else if (conditions.equals(2)) { |
|
|
|
|
detailEntity.setQuestTarget(3); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (ObjectUtils.isNotNull(i.getConditions()) && i.getConditions().equals(1)) { |
|
|
|
|
detailEntity.setQuestTarget(i.getConditions()); |
|
|
|
|
} else if (ObjectUtils.isNotNull(i.getConditions()) && i.getConditions().equals(2)) { |
|
|
|
|
detailEntity.setQuestTarget(3); // 库存品
|
|
|
|
|
} else { |
|
|
|
|
log.info("包件信息!数据信息不存在!!"); |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
// detailEntity.setQuestTarget(1);
|
|
|
|
|
detailEntity.setOrderPackageCode(i.getOrderPackageCode()); |
|
|
|
|
detailEntity.setWaybillNumber(i.getWaybillNumber()); |
|
|
|
|
detailEntity.setOrderPackageId(i.getId()); |
|
|
|
|
detailEntity.setCategoryName(i.getFirsts()); |
|
|
|
|
detailEntity.setThirdProduct(i.getThirdProduct()); |
|
|
|
|
detailEntity.setFirsts(i.getFirsts()); |
|
|
|
|
detailEntity.setSecond(i.getSecond()); |
|
|
|
|
detailEntity.setStockId(i.getStockId()); //库存品ID
|
|
|
|
|
detailEntity.setQuestStatus(0); |
|
|
|
|
detailEntity.setStockNum(ObjectUtils.isNotNull(i.getQuantity()) ? i.getQuantity() : 0); |
|
|
|
|
detailEntity.setWarehouseId(i.getWarehouseId()); |
|
|
|
|
detailEntity.setPositionCode(i.getPositionCode()); |
|
|
|
|
detailEntity.setTrayCode(i.getTrayCode()); |
|
|
|
|
// detailEntity.setGroundingAllocationId();
|
|
|
|
|
// detailEntity.setGroundingPositionCode();
|
|
|
|
|
detailEntity.setTrayId(i.getTrayId()); |
|
|
|
|
detailEntity.setAllocationId(i.getAllocationId()); |
|
|
|
|
detailEntity.setIsNew(0); |
|
|
|
|
|
|
|
|
|
detailEntity.setMaterialCode(i.getMaterialCode()); |
|
|
|
|
detailEntity.setMaterialName(i.getMaterialName()); |
|
|
|
|
detailEntity.setMarketName(i.getMallName()); |
|
|
|
|
detailEntity.setIncomingBatch(i.getOrderCode()); |
|
|
|
|
return detailEntity; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取用户部门最大的部门ID |
|
|
|
|
* |
|
|
|
@ -443,6 +451,14 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
|
|
|
|
|
for (DistributionStockListVO distributionStockListVO : stockListInfo) { |
|
|
|
|
|
|
|
|
|
// 订单转换的
|
|
|
|
|
if("1".equals(distributionStockListVO.getSourceType())){ |
|
|
|
|
|
|
|
|
|
}else { |
|
|
|
|
// 导入的‘
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Integer quantityStock = distributionStockListVO.getQuantityStock(); |
|
|
|
|
if (quantityStock == 0) { |
|
|
|
|
continue; |
|
|
|
@ -466,6 +482,7 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
detailEntity.setQuestId(taskQuest); |
|
|
|
|
detailEntity.setOrderCode(distributionStockListVO.getOrderCode()); |
|
|
|
|
detailEntity.setHasData(0); |
|
|
|
|
|
|
|
|
|
//盘点对象;1.定制品 2零担 3 库存品
|
|
|
|
|
detailEntity.setQuestTarget(3); |
|
|
|
|
detailEntity.setStockNum(num); |
|
|
|
@ -2697,7 +2714,7 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
} |
|
|
|
|
if (taskSearchDTO.getTypeState().equals(1)) { |
|
|
|
|
//有
|
|
|
|
|
if (questDetailEntity.getHasData().equals(0)) { |
|
|
|
|
if (ObjectUtils.isNull(questDetailEntity.getHasData())||questDetailEntity.getHasData().equals(0)) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
//查询包件信息
|
|
|
|
@ -2851,6 +2868,11 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
@Override |
|
|
|
|
public R selectPackageInfo(TaskSearchDTO taskSearchDTO) { |
|
|
|
|
log.warn("###########selectPackageInfo: 盘点扫码库位 "); |
|
|
|
|
|
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
|
|
|
|
|
//查询查询托盘名称
|
|
|
|
|
// List<BasicdataTrayEntity> trayEntityList = basicdataTrayClient.getTrayEntityList();
|
|
|
|
|
Long warehouseId = taskSearchDTO.getWarehouseId(); |
|
|
|
|
String code = taskSearchDTO.getCode(); |
|
|
|
|
Long questId = taskSearchDTO.getQuestId(); |
|
|
|
@ -2885,7 +2907,31 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
return extracted; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.fail(5000, "包件信息不存在!!"); |
|
|
|
|
// 需要去业务系统上进行查询信息
|
|
|
|
|
List<DistributionParcelListEntity> byPacketBarCode = distributionParcelListClient.findByPacketBarCode(questDetail.getOrderPackageCode()); |
|
|
|
|
|
|
|
|
|
if(ObjectUtils.isEmpty(byPacketBarCode)){ |
|
|
|
|
return R.fail(5000, "包件信息不存在!!"); |
|
|
|
|
}else{ |
|
|
|
|
for (DistributionParcelListEntity distributionParcelListEntity : byPacketBarCode) { |
|
|
|
|
if(distributionParcelListEntity.getWarehouseId().equals(warehouseId)){ |
|
|
|
|
QuestDetailEntity questDetailEntity1 = buildQuestDetailEntity(questId, distributionParcelListEntity, user, null); |
|
|
|
|
// 这里新增2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
questDetailEntity1.setIsNew(1); |
|
|
|
|
List<QuestDetailEntity> list = Arrays.asList(questDetailEntity1); |
|
|
|
|
baseMapper.insertQuestDetail(taskSearchDTO.getQuestNum(),list); |
|
|
|
|
return R.data(list); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
for (QuestDetailEntity i : questDetailEntityList) { |
|
|
|
|
if (i.getQuestStatus().equals(1)) { |
|
|
|
|