@ -63,6 +63,7 @@ import org.springblade.system.feign.IUserSearchClient;
import org.springframework.stereotype.Service ;
import org.springframework.stereotype.Service ;
import org.springframework.transaction.annotation.Transactional ;
import org.springframework.transaction.annotation.Transactional ;
import java.text.ParseException ;
import java.text.SimpleDateFormat ;
import java.text.SimpleDateFormat ;
import java.util.* ;
import java.util.* ;
import java.util.concurrent.atomic.AtomicBoolean ;
import java.util.concurrent.atomic.AtomicBoolean ;
@ -177,6 +178,8 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
BladeUser user = AuthUtil . getUser ( ) ;
BladeUser user = AuthUtil . getUser ( ) ;
if ( ! parcelListInfo . isEmpty ( ) ) {
if ( ! parcelListInfo . isEmpty ( ) ) {
List < QuestDetailEntity > detailEntityList = new ArrayList < > ( ) ;
List < QuestDetailEntity > detailEntityList = new ArrayList < > ( ) ;
//查询查询托盘名称
List < BasicdataTrayEntity > trayEntityList = basicdataTrayClient . getTrayEntityList ( ) ;
parcelListInfo . forEach ( i - > {
parcelListInfo . forEach ( i - > {
QuestDetailEntity detailEntity = new QuestDetailEntity ( ) ;
QuestDetailEntity detailEntity = new QuestDetailEntity ( ) ;
@ -190,8 +193,20 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
detailEntity . setQuestId ( taskQuest ) ;
detailEntity . setQuestId ( taskQuest ) ;
detailEntity . setOrderCode ( i . getOrderCode ( ) ) ;
detailEntity . setOrderCode ( i . getOrderCode ( ) ) ;
detailEntity . setOrderId ( i . getStockArticleId ( ) ) ;
detailEntity . setOrderId ( i . getStockArticleId ( ) ) ;
detailEntity . setSendWarehouseName ( i . getSendWarehouseName ( ) ) ;
detailEntity . setBrandName ( i . getBrandName ( ) ) ;
// detailEntity.setQuestType();
// detailEntity.setQuestType();
//盘点对象;1.定制品 2零担 3 库存品
//盘点对象;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 ( ) ) ;
}
}
if ( ObjectUtils . isNotNull ( i . getConditions ( ) ) & & i . getConditions ( ) . equals ( 1 ) ) {
if ( ObjectUtils . isNotNull ( i . getConditions ( ) ) & & i . getConditions ( ) . equals ( 1 ) ) {
detailEntity . setQuestTarget ( i . getConditions ( ) ) ;
detailEntity . setQuestTarget ( i . getConditions ( ) ) ;
} else if ( ObjectUtils . isNotNull ( i . getConditions ( ) ) & & i . getConditions ( ) . equals ( 2 ) ) {
} else if ( ObjectUtils . isNotNull ( i . getConditions ( ) ) & & i . getConditions ( ) . equals ( 2 ) ) {
@ -356,6 +371,7 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
detailEntity . setIncomingBatch ( i . getOrderCode ( ) ) ;
detailEntity . setIncomingBatch ( i . getOrderCode ( ) ) ;
detailEntity . setWarehouseId ( i . getWarehouseId ( ) ) ;
detailEntity . setWarehouseId ( i . getWarehouseId ( ) ) ;
detailEntity . setIsNew ( 0 ) ;
detailEntity . setIsNew ( 0 ) ;
detailEntity . setBrandName ( i . getBrand ( ) ) ;
//查询货位
//查询货位
QueryWrapper < WarehouseUpdownGoodsEntity > qw = new QueryWrapper < > ( ) ;
QueryWrapper < WarehouseUpdownGoodsEntity > qw = new QueryWrapper < > ( ) ;
qw . eq ( "warehouse_id" , i . getWarehouseId ( ) ) ;
qw . eq ( "warehouse_id" , i . getWarehouseId ( ) ) ;
@ -436,6 +452,7 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
detailEntity . setIncomingBatch ( i . getOrderCode ( ) ) ;
detailEntity . setIncomingBatch ( i . getOrderCode ( ) ) ;
detailEntity . setWarehouseId ( i . getWarehouseId ( ) ) ;
detailEntity . setWarehouseId ( i . getWarehouseId ( ) ) ;
detailEntity . setIsNew ( 0 ) ;
detailEntity . setIsNew ( 0 ) ;
detailEntity . setBrandName ( i . getBrandName ( ) ) ;
//查询货位
//查询货位
QueryWrapper < WarehouseUpdownGoodsEntity > qw = new QueryWrapper < > ( ) ;
QueryWrapper < WarehouseUpdownGoodsEntity > qw = new QueryWrapper < > ( ) ;
qw . eq ( "warehouse_id" , i . getWarehouseId ( ) ) ;
qw . eq ( "warehouse_id" , i . getWarehouseId ( ) ) ;
@ -706,129 +723,163 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
return R . fail ( "待处理的包件为空!QuestNum" ) ;
return R . fail ( "待处理的包件为空!QuestNum" ) ;
} * /
} * /
BladeUser user = AuthUtil . getUser ( ) ;
BladeUser user = AuthUtil . getUser ( ) ;
QuestDetailEntity questDetailer = new QuestDetailEntity ( ) ;
List < QuestDetailEntity > questDetailList = baseMapper . selectTaskInfo ( questNum , questDetailer ) ;
// 在库包件状态修改
// 在库包件状态修改
if ( ObjectUtils . isNotNull ( taskSearchDTO . getQuestDetailIds ( ) ) & & ObjectUtils . isNotNull ( taskSearchDTO . getQuestDetailIds ( ) . get ( 0 ) ) ) {
if ( ObjectUtils . isNotNull ( taskSearchDTO . getQuestDetailIds ( ) ) & & ObjectUtils . isNotNull ( taskSearchDTO . getQuestDetailIds ( ) . get ( 0 ) ) ) {
QuestDetailEntity quest = new QuestDetailEntity ( ) ;
List < QuestDetailEntity > questDetailList = baseMapper . selectTaskInfoForIds ( questNum , quest , taskSearchDTO . getQuestDetailIds ( ) ) ;
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , 1 ) ;
List < QuestDetailEntity > list = new ArrayList < > ( ) ;
List < QuestDetailEntity > list = new ArrayList < > ( ) ;
AtomicBoolean s = new AtomicBoolean ( false ) ;
AtomicBoolean s = new AtomicBoolean ( false ) ;
taskSearchDTO . getQuestDetailIds ( ) . stream ( ) . forEach ( i - > {
taskSearchDTO . getQuestDetailIds ( ) . stream ( ) . forEach ( i - > {
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , i ) ;
//查询当前包件盘点状态
//查询当前包件盘点状态
boolean b = questDetailList . stream ( ) . anyMatch ( q - > q . getId ( ) . equals ( i ) & & q . getQuestStatus ( ) . equals ( 1 ) ) ;
// boolean b = questDetailList.stream().anyMatch(q -> q.getId().equals(i) && q.getQuestStatus().equals(1));
if ( b ) {
// if(b){
s . set ( true ) ;
// s.set(true);
}
// }
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
questDetail . setId ( Long . valueOf ( i ) ) ;
questDetail . setId ( Long . valueOf ( i ) ) ;
questDetail . setQuestStatus ( 1 ) ;
questDetail . setQuestStatus ( 1 ) ;
questDetail . setUpdateUser ( user . getUserId ( ) ) ;
questDetail . setUpdateUser ( user . getUserId ( ) ) ;
questDetail . setUpdateTime ( new Date ( ) ) ;
questDetail . setUpdateTime ( new Date ( ) ) ;
questDetail . setInventoryUser ( user . getUserId ( ) ) ;
questDetail . setInventoryTime ( new Date ( ) ) ;
// questDetail.setId(Long.valueOf(i));
// questDetail.setId(Long.valueOf(i));
// questDetail.setQuestStatus(1);
// questDetail.setQuestStatus(1);
list . add ( questDetail ) ;
list . add ( questDetail ) ;
} ) ;
} ) ;
if ( s . get ( ) ) {
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , 1 ) ;
return Resp . scanFail ( "包含已盘点的数据!请勿重复提交!" , "包含已盘点的数据!请勿重复提交!" ) ;
}
// if(s.get()){
// return Resp.scanFail("包含已盘点的数据!请勿重复提交!","包含已盘点的数据!请勿重复提交!");
// }
baseMapper . updatePositionCodeList ( questNum , list ) ;
baseMapper . updatePositionCodeList ( questNum , list ) ;
}
}
//处理盘点的包件
//处理盘点的包件
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , 2 ) ;
if ( ObjectUtils . isNotNull ( taskSearchDTO . getQuestDetailList ( ) ) ) {
if ( ObjectUtils . isNotNull ( taskSearchDTO . getQuestDetailList ( ) ) ) {
List < QuestDetailEntity > detailEntityList = new ArrayList < > ( ) ;
List < QuestDetailEntity > detailEntityList = new ArrayList < > ( ) ;
//处理的包件
//处理的包件
taskSearchDTO . getQuestDetailList ( ) . forEach ( i - > {
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , 4 ) ;
Long taskID ;
for ( QuestDetailDTO i : taskSearchDTO . getQuestDetailList ( ) ) {
if ( ObjectUtils . isNotNull ( i . getId ( ) ) ) {
taskID = i . getId ( ) ;
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , 45 ) ;
} else {
taskID = getTaskID ( ) ;
Long taskID ;
}
if ( ObjectUtils . isNotNull ( i . getId ( ) ) ) {
if ( i . getIsNew ( ) . equals ( 1 ) ) {
taskID = i . getId ( ) ;
//新增数据
} else {
taskID = getTaskID ( ) ;
}
if ( i . getIsNew ( ) . equals ( 1 ) ) {
//新增数据
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
BeanUtil . copyProperties ( i , questDetail ) ;
questDetail . setTenantId ( user . getTenantId ( ) ) ;
questDetail . setCreateDept ( Long . valueOf ( user . getDeptId ( ) ) ) ;
questDetail . setCreateTime ( new Date ( ) ) ;
questDetail . setIsDeleted ( 0 ) ;
questDetail . setStatus ( 1 ) ;
questDetail . setCreateUser ( user . getUserId ( ) ) ;
questDetail . setUpdateUser ( user . getUserId ( ) ) ;
questDetail . setUpdateTime ( new Date ( ) ) ;
questDetail . setId ( taskID ) ;
questDetail . setWarehouseId ( warehouseId ) ;
questDetail . setQuestStatus ( 1 ) ;
List < QuestDetailEntity > entityList = new ArrayList < > ( ) ;
entityList . add ( questDetail ) ;
baseMapper . insertQuestDetail ( questNum , entityList ) ;
}
Integer stockNum = i . getStockNum ( ) ;
Integer lossNum = i . getLossNum ( ) ;
Integer deliveNum = i . getDeliveNum ( ) ;
Integer wornNum = i . getWornNum ( ) ;
Integer noReceivedNum = i . getNoReceivedNum ( ) ;
Integer noRepairNum = i . getNoRepairNum ( ) ;
if ( stockNum > 0 | | lossNum > 0 | | deliveNum > 0 | | wornNum > 0 | | noReceivedNum > 0 | | noRepairNum > 0 ) {
//查询盘点包件信息
if ( ObjectUtils . isNotNull ( i . getOrderPackageCode ( ) ) ) {
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
questDetail . setOrderPackageCode ( i . getOrderPackageCode ( ) ) ;
BeanUtil . copyProperties ( i , questDetail ) ;
QuestDetailEntity questDetail1 = baseMapper . selectOneTaskInfo ( taskSearchDTO . getQuestNum ( ) , questDetail ) ;
questDetail . setTenantId ( user . getTenantId ( ) ) ;
if ( ObjectUtils . isNotNull ( questDetail1 ) ) {
questDetail . setCreateDept ( Long . valueOf ( user . getDeptId ( ) ) ) ;
i . setId ( questDetail1 . getId ( ) ) ;
questDetail . setCreateTime ( new Date ( ) ) ;
}
questDetail . setIsDeleted ( 0 ) ;
questDetail . setStatus ( 1 ) ;
questDetail . setCreateUser ( user . getUserId ( ) ) ;
questDetail . setUpdateUser ( user . getUserId ( ) ) ;
questDetail . setUpdateTime ( new Date ( ) ) ;
questDetail . setId ( taskID ) ;
questDetail . setWarehouseId ( warehouseId ) ;
questDetail . setQuestStatus ( 1 ) ;
List < QuestDetailEntity > entityList = new ArrayList < > ( ) ;
entityList . add ( questDetail ) ;
baseMapper . insertQuestDetail ( questNum , entityList ) ;
}
}
//添加
Integer stockNum = i . getStockNum ( ) ;
List < QuestDetailChildEntity > childList = new ArrayList < > ( ) ;
Integer lossNum = i . getLossNum ( ) ;
childList . add ( addQuestDetailChild ( stockNum , "10" , i . getId ( ) , warehouseId , questNum ) ) ;
Integer deliveNum = i . getDeliveNum ( ) ;
childList . add ( addQuestDetailChild ( wornNum , "20" , i . getId ( ) , warehouseId , questNum ) ) ;
Integer wornNum = i . getWornNum ( ) ;
childList . add ( addQuestDetailChild ( lossNum , "30" , i . getId ( ) , warehouseId , questNum ) ) ;
Integer noReceivedNum = i . getNoReceivedNum ( ) ;
childList . add ( addQuestDetailChild ( noRepairNum , "40" , i . getId ( ) , warehouseId , questNum ) ) ;
Integer noRepairNum = i . getNoRepairNum ( ) ;
childList . add ( addQuestDetailChild ( deliveNum , "50" , i . getId ( ) , warehouseId , questNum ) ) ;
if ( stockNum > 0 | | lossNum > 0 | | deliveNum > 0 | | wornNum > 0 | | noReceivedNum > 0 | | noRepairNum > 0 ) {
childList . add ( addQuestDetailChild ( noReceivedNum , "60" , i . getId ( ) , warehouseId , questNum ) ) ;
if ( ! childList . isEmpty ( ) ) {
//查询盘点包件信息
boolean b = childList . stream ( ) . anyMatch ( ii - > ObjectUtils . isNull ( ii . getId ( ) ) ) ;
if ( ObjectUtils . isNotNull ( i . getOrderPackageCode ( ) ) ) {
if ( b ) {
//添加
baseMapper . insertQuestDetailChildList ( taskSearchDTO . getQuestNum ( ) + "_child" , childList ) ;
//修改盘点数据
List < QuestDetailEntity > list = new ArrayList < > ( ) ;
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
questDetail . setId ( i . getId ( ) ) ;
questDetail . setOrderPackageCode ( i . getOrderPackageCode ( ) ) ;
questDetail . setQuestStatus ( 1 ) ; //已盘
QuestDetailEntity questDetail1 = baseMapper . selectOneTaskInfo ( taskSearchDTO . getQuestNum ( ) , questDetail ) ;
questDetail . setUpdateUser ( user . getUserId ( ) ) ;
if ( ObjectUtils . isNotNull ( questDetail1 ) ) {
questDetail . setUpdateTime ( new Date ( ) ) ;
i . setId ( questDetail1 . getId ( ) ) ;
if ( ObjectUtils . isNotNull ( i . getTrayId ( ) ) ) {
}
questDetail . setTrayId ( i . getTrayId ( ) ) ;
}
questDetail . setTrayCode ( i . getTrayCode ( ) ) ;
//添加
List < QuestDetailChildEntity > childList = new ArrayList < > ( ) ;
childList . add ( addQuestDetailChild ( stockNum , "10" , taskID , warehouseId , questNum ) ) ;
childList . add ( addQuestDetailChild ( wornNum , "20" , taskID , warehouseId , questNum ) ) ;
childList . add ( addQuestDetailChild ( lossNum , "30" , taskID , warehouseId , questNum ) ) ;
childList . add ( addQuestDetailChild ( noRepairNum , "40" , taskID , warehouseId , questNum ) ) ;
childList . add ( addQuestDetailChild ( deliveNum , "50" , taskID , warehouseId , questNum ) ) ;
childList . add ( addQuestDetailChild ( noReceivedNum , "60" , taskID , warehouseId , questNum ) ) ;
if ( ! childList . isEmpty ( ) ) {
boolean b = childList . stream ( ) . anyMatch ( ii - > ObjectUtils . isNull ( ii . getId ( ) ) ) ;
if ( b ) {
//添加
baseMapper . insertQuestDetailChildList ( taskSearchDTO . getQuestNum ( ) + "_child" , childList ) ;
//修改盘点数据
List < QuestDetailEntity > list = new ArrayList < > ( ) ;
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
questDetail . setId ( i . getId ( ) ) ;
questDetail . setQuestStatus ( 1 ) ; //已盘
questDetail . setUpdateUser ( user . getUserId ( ) ) ;
questDetail . setUpdateTime ( new Date ( ) ) ;
if ( ObjectUtils . isNotNull ( i . getTrayId ( ) ) ) {
questDetail . setTrayId ( i . getTrayId ( ) ) ;
questDetail . setTrayCode ( i . getTrayCode ( ) ) ;
}
list . add ( questDetail ) ;
baseMapper . updatePositionCodeList ( taskSearchDTO . getQuestNum ( ) , list ) ;
} else {
//修改
List < QuestDetailChildEntity > collect = childList . stream ( ) . filter ( ii - > ObjectUtils . isNotNull ( ii . getQuestNum ( ) ) & & ii . getQuestNum ( ) > 0 ) . collect ( Collectors . toList ( ) ) ;
baseMapper . updetaQuestDetailChildList ( questNum + "_child" , collect ) ;
}
}
list . add ( questDetail ) ;
baseMapper . updatePositionCodeList ( taskSearchDTO . getQuestNum ( ) , list ) ;
} else {
//修改
List < QuestDetailChildEntity > collect = childList . stream ( ) . filter ( ii - > ObjectUtils . isNotNull ( ii . getQuestNum ( ) ) & & ii . getQuestNum ( ) > 0 ) . collect ( Collectors . toList ( ) ) ;
baseMapper . updetaQuestDetailChildList ( questNum + "_child" , collect ) ;
}
}
}
}
}
//是否修改库位
//是否修改库位
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
QuestDetailEntity questDetail = new QuestDetailEntity ( ) ;
if ( ObjectUtils . isNotNull ( i . getGroundingAllocationId ( ) ) ) {
if ( ObjectUtils . isNotNull ( i . getGroundingAllocationId ( ) ) ) {
questDetail . setId ( i . getId ( ) ) ;
//查询当前待更新货位是否包含已更新货位数据
QuestDetailEntity questDetail1 = new QuestDetailEntity ( ) ;
questDetail1 . setGroundingAllocationId ( i . getGroundingAllocationId ( ) ) ;
List < QuestDetailEntity > questDetailEntities = baseMapper . selectTaskInfo ( taskSearchDTO . getQuestNum ( ) , questDetail1 ) ;
if ( ! questDetailEntities . isEmpty ( ) ) {
boolean b = questDetailEntities . stream ( ) . anyMatch ( q - > ObjectUtils . isNotNull ( q . getTrayId ( ) ) ) ;
if ( b ) {
return Resp . scanFail ( "更新的货位,已有数据,无法上架更新!" , "更新的货位,已有数据,无法上架更新!" ) ;
}
}
questDetail . setId ( i . getId ( ) ) ;
// questDetail.setGroundingAllocationId(Long.valueOf(i.getAllocationId()));
// questDetail.setGroundingAllocationId(Long.valueOf(i.getAllocationId()));
questDetail . setGroundingAllocationId ( i . getGroundingAllocationId ( ) ) ;
questDetail . setGroundingAllocationId ( i . getGroundingAllocationId ( ) ) ;
questDetail . setGroundingPositionCode ( i . getGroundingPositionCode ( ) ) ;
questDetail . setGroundingPositionCode ( i . getGroundingPositionCode ( ) ) ;
detailEntityList . add ( questDetail ) ;
detailEntityList . add ( questDetail ) ;
}
}
} ) ;
}
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , 5 ) ;
//修改货位
//修改货位
if ( ! detailEntityList . isEmpty ( ) ) {
if ( ! detailEntityList . isEmpty ( ) ) {
baseMapper . updatePositionCodeList ( questNum , detailEntityList ) ;
baseMapper . updatePositionCodeList ( questNum , detailEntityList ) ;
}
}
log . info ( ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}" , 6 ) ;
}
}
return R . success ( "成功" ) ;
return R . success ( "成功" ) ;
}
}
@ -850,7 +901,7 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
QuestDetailVO questDetailVO = new QuestDetailVO ( ) ;
QuestDetailVO questDetailVO = new QuestDetailVO ( ) ;
BeanUtil . copyProperties ( i , questDetailVO ) ;
BeanUtil . copyProperties ( i , questDetailVO ) ;
//查询包件信息
//查询包件信息
if ( ObjectUtils . isNotNull ( i . getOrderPackageId ( ) ) ) {
/ * if ( ObjectUtils . isNotNull ( i . getOrderPackageId ( ) ) ) {
DistributionParcelListEntity parcelListId = distributionParcelListClient . getParcelListId ( String . valueOf ( i . getOrderPackageId ( ) ) ) ;
DistributionParcelListEntity parcelListId = distributionParcelListClient . getParcelListId ( String . valueOf ( i . getOrderPackageId ( ) ) ) ;
if ( ObjectUtils . isNotNull ( parcelListId ) ) {
if ( ObjectUtils . isNotNull ( parcelListId ) ) {
@ -861,7 +912,8 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
questDetailVO . setMaterialCode ( parcelListId . getMaterialCode ( ) ) ;
questDetailVO . setMaterialCode ( parcelListId . getMaterialCode ( ) ) ;
questDetailVO . setBrandName ( parcelListId . getBrandName ( ) ) ;
questDetailVO . setBrandName ( parcelListId . getBrandName ( ) ) ;
}
}
} else if ( i . getQuestTarget ( ) . equals ( 2 ) ) {
} else * /
/ * if ( i . getQuestTarget ( ) . equals ( 2 ) ) {
//零担
//零担
DistributionStockArticleEntity stockArticleEntity = new DistributionStockArticleEntity ( ) ;
DistributionStockArticleEntity stockArticleEntity = new DistributionStockArticleEntity ( ) ;
stockArticleEntity . setWarehouseId ( i . getWarehouseId ( ) ) ;
stockArticleEntity . setWarehouseId ( i . getWarehouseId ( ) ) ;
@ -884,17 +936,26 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
questDetailVO . setMaterialCode ( stockListById . getCargoNumber ( ) ) ;
questDetailVO . setMaterialCode ( stockListById . getCargoNumber ( ) ) ;
questDetailVO . setBrandName ( stockListById . getBrandName ( ) ) ;
questDetailVO . setBrandName ( stockListById . getBrandName ( ) ) ;
}
}
}
} * /
if ( ObjectUtils . isNotNull ( i . getTrayId ( ) ) ) {
/ * if ( ObjectUtils . isNotNull ( i . getTrayId ( ) ) ) {
//查询托盘名称
//查询托盘名称
List < BasicdataTrayEntity > trayEntityList = basicdataTrayClient . getTrayEntityList ( i . getTrayId ( ) ) ;
List < BasicdataTrayEntity > trayEntityList = basicdataTrayClient . getTrayEntityList ( i . getTrayId ( ) ) ;
if ( ObjectUtils . isNotNull ( trayEntityList ) ) {
if ( ObjectUtils . isNotNull ( trayEntityList ) ) {
questDetailVO . setTrayName ( trayEntityList . get ( 0 ) . getPalletName ( ) ) ;
questDetailVO . setTrayName ( trayEntityList . get ( 0 ) . getPalletName ( ) ) ;
}
}
}
} * /
if ( ! i . getQuestStatus ( ) . equals ( 0 ) ) {
if ( ! i . getQuestStatus ( ) . equals ( 0 ) ) {
R < List < User > > listR = userSearchClient . listByUser ( String . valueOf ( i . getUpdateUser ( ) ) ) ;
R < List < User > > listR = userSearchClient . listByUser ( String . valueOf ( i . getUpdateUser ( ) ) ) ;
questDetailVO . setInventoryPerson ( listR . getData ( ) . get ( 0 ) . getName ( ) ) ;
if ( ObjectUtils . isNotNull ( listR . getData ( ) ) ) {
List < User > data = listR . getData ( ) ;
if ( ObjectUtils . isNotNull ( data ) ) {
User user = data . get ( 0 ) ;
if ( user ! = null ) {
questDetailVO . setInventoryPerson ( user . getName ( ) ) ;
}
}
}
questDetailVO . setInventoryDate ( i . getUpdateTime ( ) ) ;
questDetailVO . setInventoryDate ( i . getUpdateTime ( ) ) ;
}
}
@ -1312,6 +1373,35 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
}
}
/ * *
* 查询盘点数据到时间就结束
*
* /
@Override
public void getFinishTask ( ) {
QueryWrapper < TaskQuestEntity > queryWrapper = new QueryWrapper < > ( ) ;
List < TaskQuestEntity > taskQuestEntities = baseMapper . selectList ( queryWrapper ) ;
taskQuestEntities . forEach ( i - > {
SimpleDateFormat format = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) ;
try {
long l = format . parse ( i . getEndTime ( ) ) . getTime ( ) / 1000 ;
long l1 = new Date ( ) . getTime ( ) / 1000 ;
if ( l < l1 ) {
//结束当前任务
TaskQuestEntity taskQuestEntity = new TaskQuestEntity ( ) ;
taskQuestEntity . setId ( i . getId ( ) ) ;
taskQuestEntity . setQuestStatus ( String . valueOf ( 3 ) ) ;
baseMapper . updateById ( taskQuestEntity ) ;
}
} catch ( ParseException e ) {
throw new RuntimeException ( e ) ;
}
} ) ;
}
/ * *
/ * *
* 查询货位上的数据
* 查询货位上的数据
* @param taskSearchDTO
* @param taskSearchDTO
@ -2705,11 +2795,6 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
private QuestDetailChildEntity addQuestDetailChild ( Integer num , String cargoName , Long questDetaiId , Long warehouseId , String qu ) {
private QuestDetailChildEntity addQuestDetailChild ( Integer num , String cargoName , Long questDetaiId , Long warehouseId , String qu ) {
if ( Objects . isNull ( questDetaiId ) ) {
log . warn ( "###########addQuestDetailChild: 明细id不存在 questDetaiId={}" , questDetaiId ) ;
throw new CustomerException ( 403 , "明细id不存在" ) ;
}
if ( Objects . isNull ( num ) ) {
if ( Objects . isNull ( num ) ) {
log . warn ( "###########addQuestDetailChild: 数量不正确 num={}" , num ) ;
log . warn ( "###########addQuestDetailChild: 数量不正确 num={}" , num ) ;
throw new CustomerException ( 403 , "数量不正确" ) ;
throw new CustomerException ( 403 , "数量不正确" ) ;