|
|
|
@ -39,10 +39,7 @@ import com.logpm.warehouse.excel.TaskQuestExcel;
|
|
|
|
|
import com.logpm.warehouse.mapper.TaskQuestMapper; |
|
|
|
|
import com.logpm.warehouse.mapper.WarehouseTrayGoodsMapper; |
|
|
|
|
import com.logpm.warehouse.mapper.WarehouseUpdownGoodsMapper; |
|
|
|
|
import com.logpm.warehouse.service.IQuestDetailChildService; |
|
|
|
|
import com.logpm.warehouse.service.IQuestDetailService; |
|
|
|
|
import com.logpm.warehouse.service.ITaskQuestChildService; |
|
|
|
|
import com.logpm.warehouse.service.ITaskQuestService; |
|
|
|
|
import com.logpm.warehouse.service.*; |
|
|
|
|
import com.logpm.warehouse.vo.*; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.log4j.Log4j2; |
|
|
|
@ -50,6 +47,7 @@ import org.springblade.common.exception.CustomerException;
|
|
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
@ -91,6 +89,8 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
private final IBasicdataGoodsAllocationClient basicdataGoodsAllocationClient; |
|
|
|
|
private final IBasicdataGoodsShelfClient basicdataGoodsShelfClient; |
|
|
|
|
private final IBasicdataGoodsAreaClient basicdataGoodsAreaClient; |
|
|
|
|
private final IWarehouseTrayTypeService trayTypeService; |
|
|
|
|
private final IWarehouseTaryAllocationService taryAllocationService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -812,6 +812,136 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
questDetailService.updateBatchById(ls); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void saveNewQuestDetail(TaskSearchDTO taskSearchDTO) { |
|
|
|
|
Long warehouseId = taskSearchDTO.getWarehouseId(); |
|
|
|
|
Long questId = taskSearchDTO.getQuestId(); |
|
|
|
|
String trayCode = taskSearchDTO.getTrayCode(); |
|
|
|
|
|
|
|
|
|
Long allocationId = taskSearchDTO.getAllocationId(); |
|
|
|
|
|
|
|
|
|
//先判定盘点任务是否已结束
|
|
|
|
|
verifyTask(questId,warehouseId); |
|
|
|
|
|
|
|
|
|
Integer questType = taskSearchDTO.getQuestType(); |
|
|
|
|
Integer questTarget = taskSearchDTO.getQuestTarget(); |
|
|
|
|
|
|
|
|
|
String positionCode = null; |
|
|
|
|
Long trayId = null; |
|
|
|
|
if(questType == 2){//库位盘点
|
|
|
|
|
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId); |
|
|
|
|
if(Objects.isNull(goodsAllocationEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 库位信息不存在 allocationId={}",allocationId); |
|
|
|
|
throw new CustomerException(403,"库位信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long wid = goodsAllocationEntity.getWarehouseId(); |
|
|
|
|
if(!wid.equals(warehouseId)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 库位不在当前仓 allocationId={}",allocationId); |
|
|
|
|
throw new CustomerException(403,"库位不在当前仓"); |
|
|
|
|
} |
|
|
|
|
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId(); |
|
|
|
|
BasicdataGoodsShelfEntity basicdataGoodsShelfEntity = basicdataGoodsShelfClient.getEntityByGoodsShelfId(goodsShelfId); |
|
|
|
|
if(Objects.isNull(basicdataGoodsShelfEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 货架信息不存在 goodsShelfId={}",goodsShelfId); |
|
|
|
|
throw new CustomerException(403,"货架信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long goodsAreaId = basicdataGoodsShelfEntity.getGoodsAreaId(); |
|
|
|
|
BasicdataGoodsAreaEntity goodsAreaEntity = basicdataGoodsAreaClient.getEntityByGoodsAreaId(goodsAreaId); |
|
|
|
|
if(Objects.isNull(goodsAreaEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 货区信息不存在 goodsAreaId={}",goodsAreaId); |
|
|
|
|
throw new CustomerException(403,"货区信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//判断库位是否有托盘
|
|
|
|
|
BasicdataTrayEntity trayEntity = taryAllocationService.getTrayByAllocationId(allocationId); |
|
|
|
|
trayCode = trayEntity.getPalletCode(); |
|
|
|
|
BasicdataTrayEntity basicdataTrayEntity = basicdataTrayClient.getTrayByTrayCode(trayCode); |
|
|
|
|
if(Objects.isNull(basicdataTrayEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 托盘信息不存在 trayCode={}",trayCode); |
|
|
|
|
throw new CustomerException(403,"托盘信息不存在"); |
|
|
|
|
} |
|
|
|
|
trayId = basicdataTrayEntity.getId(); |
|
|
|
|
|
|
|
|
|
TrayTypeDataVO trayTypeDataVO = trayTypeService.getEntityByTrayCode(trayCode, warehouseId); |
|
|
|
|
if(Objects.isNull(trayTypeDataVO)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 托盘打托信息不存在 trayCode={}",trayCode); |
|
|
|
|
throw new CustomerException(403,"托盘打托信息不存在"); |
|
|
|
|
} |
|
|
|
|
String type = trayTypeDataVO.getType(); |
|
|
|
|
if(questTarget != Integer.parseInt(type)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 托盘打托数据类型错误 trayCode={}",trayCode); |
|
|
|
|
throw new CustomerException(403,"托盘打托数据类型错误"); |
|
|
|
|
} |
|
|
|
|
positionCode = goodsAreaEntity.getHeadline()+"-"+basicdataGoodsShelfEntity.getGoodsShelfName()+"-"+goodsAllocationEntity.getGoodsAllocationName(); |
|
|
|
|
}else if(questType == 4){ |
|
|
|
|
BasicdataTrayEntity basicdataTrayEntity = basicdataTrayClient.getTrayByTrayCode(trayCode); |
|
|
|
|
if(Objects.isNull(basicdataTrayEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 托盘信息不存在 trayCode={}",trayCode); |
|
|
|
|
throw new CustomerException(403,"托盘信息不存在"); |
|
|
|
|
} |
|
|
|
|
trayId = basicdataTrayEntity.getId(); |
|
|
|
|
TrayTypeDataVO trayTypeDataVO = trayTypeService.getEntityByTrayCode(trayCode, warehouseId); |
|
|
|
|
if(Objects.isNull(trayTypeDataVO)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 托盘打托信息不存在 trayCode={}",trayCode); |
|
|
|
|
throw new CustomerException(403,"托盘打托信息不存在"); |
|
|
|
|
} |
|
|
|
|
String type = trayTypeDataVO.getType(); |
|
|
|
|
if(questTarget != Integer.parseInt(type)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 托盘打托数据类型错误 trayCode={}",trayCode); |
|
|
|
|
throw new CustomerException(403,"托盘打托数据类型错误"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//判断托盘是否有库位信息
|
|
|
|
|
allocationId = taryAllocationService.getAllocationIdByTrayId(basicdataTrayEntity.getId()); |
|
|
|
|
|
|
|
|
|
if (!Objects.isNull(allocationId)){ |
|
|
|
|
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId); |
|
|
|
|
if(Objects.isNull(goodsAllocationEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 库位信息不存在 allocationId={}",allocationId); |
|
|
|
|
throw new CustomerException(403,"库位信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long wid = goodsAllocationEntity.getWarehouseId(); |
|
|
|
|
if(!wid.equals(warehouseId)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 库位不在当前仓 allocationId={}",allocationId); |
|
|
|
|
throw new CustomerException(403,"库位不在当前仓"); |
|
|
|
|
} |
|
|
|
|
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId(); |
|
|
|
|
BasicdataGoodsShelfEntity basicdataGoodsShelfEntity = basicdataGoodsShelfClient.getEntityByGoodsShelfId(goodsShelfId); |
|
|
|
|
if(Objects.isNull(basicdataGoodsShelfEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 货架信息不存在 goodsShelfId={}",goodsShelfId); |
|
|
|
|
throw new CustomerException(403,"货架信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long goodsAreaId = basicdataGoodsShelfEntity.getGoodsAreaId(); |
|
|
|
|
BasicdataGoodsAreaEntity goodsAreaEntity = basicdataGoodsAreaClient.getEntityByGoodsAreaId(goodsAreaId); |
|
|
|
|
if(Objects.isNull(goodsAreaEntity)){ |
|
|
|
|
log.warn("###########saveNewQuestDetail: 货区信息不存在 goodsAreaId={}",goodsAreaId); |
|
|
|
|
throw new CustomerException(403,"货区信息不存在"); |
|
|
|
|
} |
|
|
|
|
positionCode = goodsAreaEntity.getHeadline()+"-"+basicdataGoodsShelfEntity.getGoodsShelfName()+"-"+goodsAllocationEntity.getGoodsAllocationName(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QuestDetailDTO questDetail = taskSearchDTO.getQuestDetail(); |
|
|
|
|
QuestDetailEntity questDetailEntity = new QuestDetailEntity(); |
|
|
|
|
BeanUtil.copy(questDetail,questDetailEntity); |
|
|
|
|
questDetailEntity.setQuestId(questId); |
|
|
|
|
questDetailEntity.setQuestType(taskSearchDTO.getQuestType()); |
|
|
|
|
questDetailEntity.setQuestTarget(taskSearchDTO.getQuestTarget()); |
|
|
|
|
questDetailEntity.setQuestStatus(1); |
|
|
|
|
questDetailEntity.setWarehouseId(warehouseId); |
|
|
|
|
// questDetailEntity.setPositionCode(positionCode);
|
|
|
|
|
questDetailEntity.setTrayCode(trayCode); |
|
|
|
|
questDetailEntity.setTrayId(trayId); |
|
|
|
|
// questDetailEntity.setAllocationId(allocationId);
|
|
|
|
|
questDetailEntity.setGroundingAllocationId(allocationId); |
|
|
|
|
questDetailEntity.setGroundingPositionCode(positionCode); |
|
|
|
|
questDetailEntity.setIsNew(1); |
|
|
|
|
|
|
|
|
|
questDetailService.save(questDetailEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private QuestDetailChildEntity addQuestDetailChild(Integer num,String cargoName,Long questDetaiId,Long warehouseId){ |
|
|
|
|
QuestDetailChildEntity questDetailChildEntity = new QuestDetailChildEntity(); |
|
|
|
|