@ -16,45 +16,42 @@
* /
* /
package com.logpm.warehouse.service.impl ;
package com.logpm.warehouse.service.impl ;
import com.baomidou.mybatisplus.core.conditions.Wrapper ;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper ;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper ;
import com.baomidou.mybatisplus.core.metadata.IPage ;
import com.baomidou.mybatisplus.core.toolkit.Wrappers ;
import com.baomidou.mybatisplus.core.toolkit.Wrappers ;
import com.logpm.basicdata.entity.BasicdataTrayEntity ;
import com.logpm.basicdata.entity.* ;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity ;
import com.logpm.basicdata.feign.* ;
import com.logpm.basicdata.feign.IBasicdataTrayClient ;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient ;
import com.logpm.basicdata.vo.BasicdataClientVO ;
import com.logpm.distribution.entity.DistributionParcelListEntity ;
import com.logpm.distribution.entity.DistributionParcelListEntity ;
import com.logpm.distribution.entity.DistributionStockArticleEntity ;
import com.logpm.distribution.entity.DistributionStockArticleEntity ;
import com.logpm.distribution.entity.DistributionStockListEntity ;
import com.logpm.distribution.entity.DistributionStockListEntity ;
import com.logpm.distribution.feign.IDistributionParcelListClient ;
import com.logpm.distribution.feign.IDistributionParcelListClient ;
import com.logpm.distribution.feign.IDistributionStockArticleClient ;
import com.logpm.distribution.feign.IDistributionStockArticleClient ;
import com.logpm.distribution.feign.IDistributionStockClient ;
import com.logpm.distribution.feign.IDistributionStockListClient ;
import com.logpm.distribution.feign.IDistributionStockListClient ;
import com.logpm.distribution.vo.DistributionStockListVO ;
import com.logpm.distribution.vo.DistributionStockListVO ;
import com.logpm.oldproject.feign.IWarehouseClient ;
import com.logpm.warehouse.bean.Resp ;
import com.logpm.warehouse.bean.Resp ;
import com.logpm.warehouse.dto.QuestDetailDTO ;
import com.logpm.warehouse.dto.TaskQuestDTO ;
import com.logpm.warehouse.dto.TaskQuestDTO ;
import com.logpm.warehouse.dto.TaskSearchDTO ;
import com.logpm.warehouse.dto.TaskSearchDTO ;
import com.logpm.warehouse.entity.* ;
import com.logpm.warehouse.entity.* ;
import com.logpm.warehouse.mapper.QuestDetailMapper ;
import com.logpm.warehouse.excel.TaskQuestExcel ;
import com.logpm.warehouse.mapper.TaskQuestMapper ;
import com.logpm.warehouse.mapper.WarehouseTrayGoodsMapper ;
import com.logpm.warehouse.mapper.WarehouseTrayGoodsMapper ;
import com.logpm.warehouse.mapper.WarehouseUpdownGoodsMapper ;
import com.logpm.warehouse.mapper.WarehouseUpdownGoodsMapper ;
import com.logpm.warehouse.service.IQuestDetailChildService ;
import com.logpm.warehouse.service.IQuestDetailService ;
import com.logpm.warehouse.service.IQuestDetailService ;
import com.logpm.warehouse.service.ITaskQuestChildService ;
import com.logpm.warehouse.service.ITaskQuestChildService ;
import com.logpm.warehouse.vo.* ;
import com.logpm.warehouse.excel.TaskQuestExcel ;
import com.logpm.warehouse.mapper.TaskQuestMapper ;
import com.logpm.warehouse.service.ITaskQuestService ;
import com.logpm.warehouse.service.ITaskQuestService ;
import com.logpm.warehouse.vo.* ;
import lombok.AllArgsConstructor ;
import lombok.AllArgsConstructor ;
import lombok.extern.log4j.Log4j2 ;
import lombok.extern.log4j.Log4j2 ;
import org.springblade.core.log.exception.ServiceException ;
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.api.R ;
import org.springblade.core.tool.utils.Func ;
import org.springblade.core.tool.utils.Func ;
import org.springframework.stereotype.Service ;
import org.springframework.stereotype.Service ;
import com.baomidou.mybatisplus.core.conditions.Wrapper ;
import org.springframework.transaction.annotation.Transactional ;
import com.baomidou.mybatisplus.core.metadata.IPage ;
import org.springblade.core.mp.base.BaseServiceImpl ;
import org.w3c.dom.css.Rect ;
import java.text.SimpleDateFormat ;
import java.text.SimpleDateFormat ;
import java.util.* ;
import java.util.* ;
@ -87,6 +84,13 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
private final IDistributionParcelListClient distributionParcelListClient ;
private final IDistributionParcelListClient distributionParcelListClient ;
private final IQuestDetailChildService questDetailChildService ;
private final IBasicdataGoodsAllocationClient basicdataGoodsAllocationClient ;
private final IBasicdataGoodsShelfClient basicdataGoodsShelfClient ;
private final IBasicdataGoodsAreaClient basicdataGoodsAreaClient ;
@Override
@Override
public IPage < TaskQuestVO > selectTaskQuestPage ( IPage < TaskQuestVO > page , TaskQuestVO taskQuest ) {
public IPage < TaskQuestVO > selectTaskQuestPage ( IPage < TaskQuestVO > page , TaskQuestVO taskQuest ) {
@ -359,18 +363,299 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
@Override
@Override
public IPage < TaskStripApiVO > selectallocationDetailByStrip ( IPage < TaskStripApiVO > page , TaskSearchDTO taskSearchDTO ) {
public List < QuestDetailEntity > allocationDetailByPackage ( TaskSearchDTO taskSearchDTO ) {
Long allocationId = taskSearchDTO . getAllocationId ( ) ;
Long warehouseId = taskSearchDTO . getWarehouseId ( ) ;
Long questId = taskSearchDTO . getQuestId ( ) ;
//先判定盘点任务是否已结束
verifyTask ( questId , warehouseId ) ;
//先查询任务的过滤商场
QueryWrapper < TaskQuestChildEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "quest_id" , questId )
. eq ( "is_deleted" , 0 ) ;
List < TaskQuestChildEntity > questChildEntitys = taskQuestChildService . list ( queryWrapper ) ;
List < String > marketNames = null ;
for ( TaskQuestChildEntity childEntity : questChildEntitys ) {
if ( Objects . isNull ( marketNames ) ) {
marketNames = new ArrayList < > ( ) ;
}
marketNames . add ( childEntity . getRefName ( ) ) ;
}
taskSearchDTO . setMarketNames ( marketNames ) ;
//判断是否有明细数据存入
QueryWrapper < QuestDetailEntity > questDetailEntityQueryWrapper = new QueryWrapper < > ( ) ;
questDetailEntityQueryWrapper . eq ( "quest_id" , questId )
. eq ( "quest_type" , 2 )
. eq ( "quest_target" , 1 )
. eq ( "warehouse_id" , warehouseId )
. eq ( "allocation_id" , allocationId )
. eq ( "is_deleted" , 0 ) ;
List < QuestDetailEntity > questDetailEntities = questDetailService . list ( questDetailEntityQueryWrapper ) ;
if ( ! questDetailEntities . isEmpty ( ) ) {
return questDetailEntities ;
}
//如果还没有存入
//查询货位上的所有包条
//查询货位上的所有包条
List < TaskStripApiVO > list = warehouseUpdownGoodsMapper . selectListByTaskStrip ( page , taskSearchDTO ) ;
//然后存入detail表
for ( TaskStripApiVO taskStripApiVO : list ) {
List < QuestDetailEntity > list = warehouseUpdownGoodsMapper . allocationDetailByPackage ( taskSearchDTO ) ;
if ( list . isEmpty ( ) ) {
log . warn ( "###########allocationDetailByPackage: 未有数据在盘点计划中 questId={}" , questId ) ;
throw new CustomerException ( 403 , "未有数据在盘点计划中" ) ;
}
questDetailService . saveList ( list , questId ) ;
return list ;
}
@Override
public List < QuestDetailEntity > allocationDetailByZero ( TaskSearchDTO taskSearchDTO ) {
Long questId = taskSearchDTO . getQuestId ( ) ;
Long allocationId = taskSearchDTO . getAllocationId ( ) ;
Long warehouseId = taskSearchDTO . getWarehouseId ( ) ;
//先判定盘点任务是否已结束
verifyTask ( questId , warehouseId ) ;
//先查询任务的过滤商场
QueryWrapper < TaskQuestChildEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "quest_id" , questId )
. eq ( "is_deleted" , 0 ) ;
List < TaskQuestChildEntity > questChildEntitys = taskQuestChildService . list ( queryWrapper ) ;
List < String > marketNames = null ;
for ( TaskQuestChildEntity childEntity : questChildEntitys ) {
if ( Objects . isNull ( marketNames ) ) {
marketNames = new ArrayList < > ( ) ;
}
marketNames . add ( childEntity . getRefName ( ) ) ;
}
}
return page . setRecords ( list ) ;
taskSearchDTO . setMarketNames ( marketNames ) ;
//判断是否有明细数据存入
QueryWrapper < QuestDetailEntity > questDetailEntityQueryWrapper = new QueryWrapper < > ( ) ;
questDetailEntityQueryWrapper . eq ( "quest_id" , questId )
. eq ( "quest_type" , 2 )
. eq ( "quest_target" , 2 )
. eq ( "warehouse_id" , warehouseId )
. eq ( "allocation_id" , allocationId )
. eq ( "is_deleted" , 0 ) ;
List < QuestDetailEntity > questDetailEntities = questDetailService . list ( questDetailEntityQueryWrapper ) ;
if ( ! questDetailEntities . isEmpty ( ) ) {
return questDetailEntities ;
}
//如果还没有存入
//查询货位上的所有包条
//然后存入detail表
List < QuestDetailEntity > list = warehouseUpdownGoodsMapper . allocationDetailByZero ( taskSearchDTO ) ;
if ( list . isEmpty ( ) ) {
log . warn ( "###########allocationDetailByZero: 未有数据在盘点计划中 questId={}" , questId ) ;
throw new CustomerException ( 403 , "未有数据在盘点计划中" ) ;
}
questDetailService . saveList ( list , questId ) ;
return list ;
}
}
@Override
public List < QuestDetailEntity > allocationDetailByStock ( TaskSearchDTO taskSearchDTO ) {
Long questId = taskSearchDTO . getQuestId ( ) ;
Long allocationId = taskSearchDTO . getAllocationId ( ) ;
Long warehouseId = taskSearchDTO . getWarehouseId ( ) ;
//先判定盘点任务是否已结束
verifyTask ( questId , warehouseId ) ;
//先查询任务的过滤商场
QueryWrapper < TaskQuestChildEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "quest_id" , questId )
. eq ( "is_deleted" , 0 ) ;
List < TaskQuestChildEntity > questChildEntitys = taskQuestChildService . list ( queryWrapper ) ;
List < String > marketNames = null ;
for ( TaskQuestChildEntity childEntity : questChildEntitys ) {
if ( Objects . isNull ( marketNames ) ) {
marketNames = new ArrayList < > ( ) ;
}
marketNames . add ( childEntity . getRefName ( ) ) ;
}
taskSearchDTO . setMarketNames ( marketNames ) ;
//判断是否有明细数据存入
QueryWrapper < QuestDetailEntity > questDetailEntityQueryWrapper = new QueryWrapper < > ( ) ;
questDetailEntityQueryWrapper . eq ( "quest_id" , questId )
. eq ( "quest_type" , 2 )
. eq ( "quest_target" , 3 )
. eq ( "warehouse_id" , warehouseId )
. eq ( "allocation_id" , allocationId )
. eq ( "is_deleted" , 0 ) ;
List < QuestDetailEntity > questDetailEntities = questDetailService . list ( questDetailEntityQueryWrapper ) ;
if ( ! questDetailEntities . isEmpty ( ) ) {
return questDetailEntities ;
}
//如果还没有存入
//查询货位上的所有包条
//然后存入detail表
List < QuestDetailEntity > list = warehouseUpdownGoodsMapper . allocationDetailByStock ( taskSearchDTO ) ;
if ( list . isEmpty ( ) ) {
log . warn ( "###########allocationDetailByStock: 未有数据在盘点计划中 questId={}" , questId ) ;
throw new CustomerException ( 403 , "未有数据在盘点计划中" ) ;
}
questDetailService . saveList ( list , questId ) ;
return list ;
}
@Transactional
@Override
public void updateQuestSetail ( TaskSearchDTO taskSearchDTO ) {
Long warehouseId = taskSearchDTO . getWarehouseId ( ) ;
Long questId = taskSearchDTO . getQuestId ( ) ;
//先判定盘点任务是否已结束
verifyTask ( questId , warehouseId ) ;
List < QuestDetailDTO > questDetailList = taskSearchDTO . getQuestDetailList ( ) ;
for ( QuestDetailDTO questDetailDTO : questDetailList ) {
Long questDetaiId = questDetailDTO . getId ( ) ; //明细id
QuestDetailEntity detailEntity = questDetailService . getById ( questDetaiId ) ;
if ( Objects . isNull ( detailEntity ) ) {
log . warn ( "###########updateQuestSetail: 存在不在盘点计划中的数据 questDetaiId={}" , questDetaiId ) ;
throw new CustomerException ( 403 , "存在不在盘点计划中的数据" ) ;
}
Integer stockNum = questDetailDTO . getStockNum ( ) ;
Integer lossNum = questDetailDTO . getLossNum ( ) ;
Integer deliveNum = questDetailDTO . getDeliveNum ( ) ;
Integer wornNum = questDetailDTO . getWornNum ( ) ;
Integer noReceivedNum = questDetailDTO . getNoReceivedNum ( ) ;
Integer noRepairNum = questDetailDTO . getNoRepairNum ( ) ;
List < QuestDetailChildEntity > childList = new ArrayList < > ( ) ;
childList . add ( addQuestDetailChild ( stockNum , "10" , questDetaiId , warehouseId ) ) ;
childList . add ( addQuestDetailChild ( wornNum , "20" , questDetaiId , warehouseId ) ) ;
childList . add ( addQuestDetailChild ( lossNum , "30" , questDetaiId , warehouseId ) ) ;
childList . add ( addQuestDetailChild ( noRepairNum , "40" , questDetaiId , warehouseId ) ) ;
childList . add ( addQuestDetailChild ( deliveNum , "50" , questDetaiId , warehouseId ) ) ;
childList . add ( addQuestDetailChild ( noReceivedNum , "60" , questDetaiId , warehouseId ) ) ;
questDetailChildService . saveBatch ( childList ) ;
detailEntity . setQuestStatus ( 1 ) ;
questDetailService . updateById ( detailEntity ) ;
}
}
@Transactional
@Override
public void updateQuestDetailAllocation ( TaskSearchDTO taskSearchDTO ) {
Long warehouseId = taskSearchDTO . getWarehouseId ( ) ;
Long allocationId = taskSearchDTO . getAllocationId ( ) ;
Long questId = taskSearchDTO . getQuestId ( ) ;
//先判定盘点任务是否已结束
verifyTask ( questId , warehouseId ) ;
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient . getEntityByAllocationId ( allocationId ) ;
if ( Objects . isNull ( goodsAllocationEntity ) ) {
log . warn ( "###########updateQuestDetailAllocation: 库位信息不存在 allocationId={}" , allocationId ) ;
throw new CustomerException ( 403 , "库位信息不存在" ) ;
}
Long wid = goodsAllocationEntity . getWarehouseId ( ) ;
if ( ! wid . equals ( warehouseId ) ) {
log . warn ( "###########updateQuestDetailAllocation: 库位不在当前仓 allocationId={}" , allocationId ) ;
throw new CustomerException ( 403 , "库位不在当前仓" ) ;
}
Long goodsShelfId = goodsAllocationEntity . getGoodsShelfId ( ) ;
BasicdataGoodsShelfEntity basicdataGoodsShelfEntity = basicdataGoodsShelfClient . getEntityByGoodsShelfId ( goodsShelfId ) ;
if ( Objects . isNull ( basicdataGoodsShelfEntity ) ) {
log . warn ( "###########updateQuestDetailAllocation: 货架信息不存在 goodsShelfId={}" , goodsShelfId ) ;
throw new CustomerException ( 403 , "货架信息不存在" ) ;
}
Long goodsAreaId = basicdataGoodsShelfEntity . getGoodsAreaId ( ) ;
BasicdataGoodsAreaEntity goodsAreaEntity = basicdataGoodsAreaClient . getEntityByGoodsAreaId ( goodsAreaId ) ;
if ( Objects . isNull ( goodsAreaEntity ) ) {
log . warn ( "###########updateQuestDetailAllocation: 货区信息不存在 goodsAreaId={}" , goodsAreaId ) ;
throw new CustomerException ( 403 , "货区信息不存在" ) ;
}
List < QuestDetailDTO > questDetailList = taskSearchDTO . getQuestDetailList ( ) ;
List < QuestDetailEntity > ls = new ArrayList < > ( ) ;
for ( QuestDetailDTO questDetailDTO : questDetailList ) {
Long questDetaiId = questDetailDTO . getId ( ) ; //明细id
QuestDetailEntity detailEntity = questDetailService . getById ( questDetaiId ) ;
if ( Objects . isNull ( detailEntity ) ) {
log . warn ( "###########updateQuestSetail: 存在不在盘点计划中的数据 questDetaiId={}" , questDetaiId ) ;
throw new CustomerException ( 403 , "存在不在盘点计划中的数据" ) ;
}
detailEntity . setGroundingAllocationId ( allocationId ) ;
detailEntity . setGroundingPositionCode ( goodsAreaEntity . getHeadline ( ) + "-" + basicdataGoodsShelfEntity . getGoodsShelfName ( ) + "-" + goodsAllocationEntity . getGoodsAllocationName ( ) ) ;
ls . add ( detailEntity ) ;
}
questDetailService . updateBatchById ( ls ) ;
}
@Transactional
@Override
public void deleteQuestDetail ( TaskSearchDTO taskSearchDTO ) {
Long warehouseId = taskSearchDTO . getWarehouseId ( ) ;
Long questId = taskSearchDTO . getQuestId ( ) ;
//先判定盘点任务是否已结束
verifyTask ( questId , warehouseId ) ;
List < QuestDetailDTO > questDetailList = taskSearchDTO . getQuestDetailList ( ) ;
List < QuestDetailEntity > ls = new ArrayList < > ( ) ;
for ( QuestDetailDTO questDetailDTO : questDetailList ) {
Long questDetaiId = questDetailDTO . getId ( ) ; //明细id
QuestDetailEntity detailEntity = questDetailService . getById ( questDetaiId ) ;
if ( Objects . isNull ( detailEntity ) ) {
log . warn ( "###########deleteQuestDetail: 存在不在盘点计划中的数据 questDetaiId={}" , questDetaiId ) ;
throw new CustomerException ( 403 , "存在不在盘点计划中的数据" ) ;
}
detailEntity . setQuestStatus ( 3 ) ;
ls . add ( detailEntity ) ;
}
questDetailService . updateBatchById ( ls ) ;
}
private QuestDetailChildEntity addQuestDetailChild ( Integer num , String cargoName , Long questDetaiId , Long warehouseId ) {
QuestDetailChildEntity questDetailChildEntity = new QuestDetailChildEntity ( ) ;
questDetailChildEntity . setQuestDetailId ( questDetaiId ) ;
questDetailChildEntity . setCargoName ( cargoName ) ;
questDetailChildEntity . setQuestNum ( num ) ;
questDetailChildEntity . setWarehouseId ( warehouseId ) ;
return questDetailChildEntity ;
}
private String getQuestNum ( String warehouseCode ) {
private String getQuestNum ( String warehouseCode ) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat ( "yyyyMMddHHmmss" ) ;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat ( "yyyyMMddHHmmss" ) ;
return "PDRW-" + warehouseCode + "-" + simpleDateFormat . format ( new Date ( ) ) + new Random ( ) . nextInt ( 900 ) + 100 ;
return "PDRW-" + warehouseCode + "-" + simpleDateFormat . format ( new Date ( ) ) + new Random ( ) . nextInt ( 900 ) + 100 ;
}
}
private void verifyTask ( Long taskId , Long warehouseId ) {
TaskQuestEntity questEntity = getById ( taskId ) ;
if ( Objects . isNull ( questEntity ) ) {
log . warn ( "###########verifyTask: 盘点任务不存在 taskId={}" , taskId ) ;
throw new CustomerException ( 403 , "盘点任务不存在" ) ;
}
Long wid = questEntity . getWarehouseId ( ) ;
if ( ! wid . equals ( warehouseId ) ) {
log . warn ( "###########verifyTask: 盘点任务不属于当前仓 taskId={}" , taskId ) ;
throw new CustomerException ( 403 , "盘点任务不属于当前仓" ) ;
}
Long now = new Date ( ) . getTime ( ) ;
String endTime = questEntity . getEndTime ( ) ;
Long end = CommonUtil . StringToDate ( endTime ) . getTime ( ) ;
if ( now > end ) {
log . warn ( "###########verifyTask: 盘点任务已结束 taskId={}" , taskId ) ;
throw new CustomerException ( 403 , "盘点任务已结束" ) ;
}
}
}
}