@ -2,8 +2,6 @@ package com.logpm.warehouse.service.impl;
import com.alibaba.fastjson.JSONObject ;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper ;
import com.logpm.basicdata.entity.BasicdataGoodsAllocationEntity ;
import com.logpm.basicdata.entity.BasicdataGoodsShelfEntity ;
import com.logpm.basicdata.entity.BasicdataTrayEntity ;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity ;
import com.logpm.basicdata.feign.IBasicdataGoodsAllocationClient ;
@ -20,8 +18,8 @@ import com.logpm.oldproject.feign.ITrayScanDesClient;
import com.logpm.warehouse.dto.* ;
import com.logpm.warehouse.entity.* ;
import com.logpm.warehouse.service.* ;
import com.logpm.warehouse.vo.AllocationWithTrayVO ;
import com.logpm.warehouse.vo.QuestDetailVO ;
import com.logpm.warehouse.vo.TrayTypeDataVO ;
import lombok.extern.log4j.Log4j2 ;
import org.springblade.common.constant.TenantNum ;
import org.springblade.common.exception.CustomerException ;
@ -77,10 +75,12 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
private ITrayScanDesClient trayScanDesClient ;
@Autowired
private ISyncOldTrayTypeLogService syncOldTrayTypeLogService ;
@Autowired
private ISyncTaskErrorLogService syncTaskErrorLogService ;
@Override
@Async
public void syncTaskData ( String questNum , Long warehouseId ) {
public void syncTaskData ( String questNum , Long warehouseId , String tenantId , Long userId , String nickName , Long deptId ) {
log . info ( "###############syncTaskData: 同步盘点任务数据开始 questNum={}" , questNum ) ;
QueryWrapper < TaskQuestEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "quest_num" , questNum ) ;
@ -90,231 +90,602 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
log . warn ( "##########syncTaskData: 未找到盘点任务信息 questNum={}" , questNum ) ;
throw new CustomerException ( 405 , "未找到盘点任务信息" ) ;
}
String questType = taskQuestEntity . getQuestType ( ) ; //1-部分,2-全仓
//先处理有库位的数据
//本次同步会已盘点数据为基准来进行数据处理
List < BasicdataGoodsShelfEntity > shelfList = goodsShelfClient . findAllByWarehouseId ( warehouseId ) ;
for ( BasicdataGoodsShelfEntity basicdataGoodsShelfEntity : shelfList ) {
String goodsShelfName = basicdataGoodsShelfEntity . getGoodsShelfName ( ) ;
Long shelfId = basicdataGoodsShelfEntity . getId ( ) ;
log . info ( "#########syncTaskData: 当前处理的货架为 {}" , goodsShelfName ) ;
//根据货架id查询所有货位
List < BasicdataGoodsAllocationEntity > allocationList = goodsAllocationClient . findListByShelfId ( shelfId ) ;
for ( BasicdataGoodsAllocationEntity goodsAllocationEntity : allocationList ) {
Long allocationId = goodsAllocationEntity . getId ( ) ;
//判断数据是否一致
// boolean flag = checkData(questNum,allocationId);
boolean flag = false ;
if ( flag ) {
log . info ( "##############syncTaskData: 数据一致,不用重新打托上架" ) ;
continue ;
} else {
//先查询盘点中有没有该库位的数据
List < AllocationWithTrayVO > allocationWithTrayVOS = taskQuestService . findAllocationWithTray ( questNum , allocationId ) ;
int size = allocationWithTrayVOS . size ( ) ;
if ( size = = 0 ) {
//如果没有数据,则表示该库位不需要上货
log . info ( "#################syncTaskData: 没有该库位的货 allocationId={}" , allocationId ) ;
continue ;
} else if ( size > 1 ) {
//库位有多过两个托盘的,数据错误也不做操作
log . info ( "#################syncTaskData: 没有该库位的货 allocationWithTrayVOS={}" , allocationWithTrayVOS ) ;
continue ;
} else {
//正确数据
AllocationWithTrayVO allocationWithTrayVO = allocationWithTrayVOS . get ( 0 ) ;
String trayCode = allocationWithTrayVO . getTrayCode ( ) ;
String trayType = "100" ;
List < QuestDetailVO > list = taskQuestService . findAllocationDataByAllocationId ( questNum , allocationId ) ;
updownTypeService . downAllocation ( allocationId , warehouseId ) ;
if ( ! StringUtil . isBlank ( trayCode ) ) {
//有托盘,先打托,再整托上架
//查看托盘是否有绑定货物
QueryWrapper < WarehouseTrayTypeEntity > trayTypeQueryWrapper = new QueryWrapper < > ( ) ;
trayTypeQueryWrapper . eq ( "tray_code" , trayCode )
. eq ( "is_deleted" , 0 ) ;
List < WarehouseTrayTypeEntity > trayTypeList = trayTypeService . list ( trayTypeQueryWrapper ) ;
if ( trayTypeList . size ( ) > 1 ) {
//出现多条同一托盘的打托数据,直接
log . info ( "#############syncTaskData: 出现多条同一托盘的打托数据 trayCode={}" , trayCode ) ;
continue ;
} else if ( trayTypeList . size ( ) = = 1 ) {
WarehouseTrayTypeEntity trayTypeEntity = trayTypeList . get ( 0 ) ;
trayType = trayTypeEntity . getTrayType ( ) ;
//空置托盘
trayTypeService . downTrayGoodsByTrayId ( trayTypeEntity . getTrayId ( ) , "盘点任务:空置托盘" ) ;
}
for ( QuestDetailVO questDetailVO : list ) {
Integer questTarget = questDetailVO . getQuestTarget ( ) ;
String orderPackageCode = questDetailVO . getOrderPackageCode ( ) ;
if ( questTarget = = 1 ) {
log . info ( "################syncTaskData: 订制品类型" ) ;
//处理包件的打托
dealWithPackageTray ( orderPackageCode , trayCode , warehouseId , trayType ) ;
} else if ( questTarget = = 2 ) {
log . info ( "################syncTaskData: 零担类型" ) ;
String orderCode = questDetailVO . getOrderCode ( ) ;
Long orderId = questDetailVO . getOrderId ( ) ;
Integer stockNum = questDetailVO . getStockNum ( ) ;
dealWithZeroTray ( orderCode , orderId , stockNum , trayCode , warehouseId , trayType ) ;
} else if ( questTarget = = 3 ) {
log . info ( "################syncTaskData: 库存品类型" ) ;
if ( ! StringUtil . isBlank ( orderPackageCode ) ) {
//包件码不为空,就是有数据库存品类型,按照包件类型走
dealWithPackageTray ( orderPackageCode , trayCode , warehouseId , trayType ) ;
//找出有数量变化或者有数量变更的盘点明细
List < QuestDetailEntity > questDetailList = taskQuestService . findIsChangeData ( questNum ) ;
List < SyncTaskErrorLogEntity > syncTaskErrorLogList = new ArrayList < > ( ) ;
for ( QuestDetailEntity questDetailEntity : questDetailList ) {
Long questDetailId = questDetailEntity . getId ( ) ;
Integer questTarget = questDetailEntity . getQuestTarget ( ) ; //1.定制品 2零担 3 库存品
String orderPackageCode = questDetailEntity . getOrderPackageCode ( ) ;
Long stockId = questDetailEntity . getStockId ( ) ;
Long orderId = questDetailEntity . getOrderId ( ) ;
String orderCode = questDetailEntity . getOrderCode ( ) ;
Integer stockNum = questDetailEntity . getStockNum ( ) ;
String newTrayCode = questDetailEntity . getNewTrayCode ( ) ;
String trayCode = questDetailEntity . getTrayCode ( ) ;
Long groundingAllocationId = questDetailEntity . getGroundingAllocationId ( ) ;
String allocationId = questDetailEntity . getAllocationId ( ) ;
Integer isChange = questDetailEntity . getIsChange ( ) ;
Integer isChangeAt = questDetailEntity . getIsChangeAt ( ) ;
Integer hasData = questDetailEntity . getHasData ( ) ;
try {
//判断有无数据
if ( hasData = = 1 ) {
//判断是订制品还是库存品
if ( questTarget . equals ( 1 ) | | questTarget . equals ( 3 ) ) {
List < UpShelfPackageDTO > upShelfPackageList = new ArrayList < > ( ) ;
UpShelfPackageDTO dto = new UpShelfPackageDTO ( ) ;
dto . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( dto ) ;
if ( isChangeAt = = 1 ) {
if ( ! Objects . isNull ( groundingAllocationId ) ) {
if ( StringUtil . isNotBlank ( allocationId ) | | StringUtil . isNotBlank ( trayCode ) ) {
//已经上架,先下架再上新库位
R r = updownTypeService . downPackageOrDelTray ( upShelfPackageList , warehouseId , "盘点包件下架解托" ) ;
if ( r . getCode ( ) = = 200 ) {
updownTypeService . upShelfPackage ( upShelfPackageList , groundingAllocationId , warehouseId , "盘点包件上架" ) ;
// if(!Objects.isNull(groundingAllocationId)){
// updownTypeService.upShelfPackage(upShelfPackageList,groundingAllocationId,warehouseId,"盘点包件上架");
// }else{
// if(StringUtil.isNotBlank(newTrayCode)){
// TrayTypeDataVO entityByTrayCode = trayTypeService.getEntityByTrayCode(newTrayCode, warehouseId);
// String trayType = "100";
// if(!Objects.isNull(entityByTrayCode)){
// trayType = entityByTrayCode.getTrayType();
// }
// //打托
// trayTypeService.orderScanOrderPackageCode(trayType,newTrayCode,orderPackageCode,warehouseId,"盘点包件打托");
// }
// }
} else {
String materialCode = questDetailVO . getMaterialCode ( ) ;
String marketName = questDetailVO . getMarketName ( ) ;
String incomingBatch = questDetailVO . getIncomingBatch ( ) ;
Integer stockNum = questDetailVO . getStockNum ( ) ;
dealWithStockTray ( materialCode , marketName , incomingBatch , stockNum , trayCode , trayType , warehouseId ) ;
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "有数据,下架原库位或原托盘失败questTarget=" + questTarget , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
} else {
log . warn ( "################syncTaskData: 未知的盘点类型数据 questTarget={}" , questTarget ) ;
continue ;
updownTypeService . upShelfPackage ( upShelfPackageList , groundingAllocationId , warehouseId , "盘点包件上架" ) ;
// if(!Objects.isNull(groundingAllocationId)){
// updownTypeService.upShelfPackage(upShelfPackageList,groundingAllocationId,warehouseId,"盘点包件上架");
// }else{
// if(StringUtil.isNotBlank(newTrayCode)){
// TrayTypeDataVO entityByTrayCode = trayTypeService.getEntityByTrayCode(newTrayCode, warehouseId);
// String trayType = "100";
// if(!Objects.isNull(entityByTrayCode)){
// trayType = entityByTrayCode.getTrayType();
// }
// //打托
// trayTypeService.orderScanOrderPackageCode(trayType,newTrayCode,orderPackageCode,warehouseId,"盘点包件打托");
// }
// }
}
} else {
if ( StringUtil . isNotBlank ( newTrayCode ) ) {
if ( StringUtil . isNotBlank ( allocationId ) | | StringUtil . isNotBlank ( trayCode ) ) {
//已经上架,先下架再上新库位
R r = updownTypeService . downPackageOrDelTray ( upShelfPackageList , warehouseId , "盘点包件下架解托" ) ;
if ( r . getCode ( ) = = 200 ) {
//打托
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( newTrayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
trayTypeService . orderScanOrderPackageCode ( trayType , newTrayCode , orderPackageCode , warehouseId , "盘点包件打托" ) ;
} else {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "有数据,下架原库位或原托盘失败questTarget=" + questTarget , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
} else {
//打托
BasicdataTrayEntity trayEntity = basicdataTrayClient . getTrayByTrayCode ( newTrayCode ) ;
if ( Objects . isNull ( trayEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "有数据,托盘信息不存在newTrayCode=" + newTrayCode , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long newTrayId = trayEntity . getId ( ) ;
Long newAllocationId = taryAllocationService . getAllocationIdByTrayId ( newTrayId ) ;
if ( ! Objects . isNull ( newAllocationId ) ) {
updownTypeService . upShelfPackage ( upShelfPackageList , newAllocationId , warehouseId , "盘点包件上架" ) ;
} else {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( newTrayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
trayTypeService . orderScanOrderPackageCode ( trayType , newTrayCode , orderPackageCode , warehouseId , "盘点包件打托" ) ;
}
}
}
}
}
if ( isChange = = 1 ) {
//
}
//托盘上架
R r = updownTypeService . upShelfTray ( trayCode , allocationId , warehouseId ) ;
int code = r . getCode ( ) ;
if ( code = = 200 ) {
log . info ( "##############syncTaskData: 托盘上架成功 trayCode={} allocationId={}" , trayCode , allocationId ) ;
} else {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "有数据,数据类型错误questTarget=" + questTarget , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
} else {
if ( questTarget . equals ( 2 ) ) {
if ( isChangeAt = = 1 ) {
List < UpShelfZeroOrderDTO > upShelfZeroOrderDTOS = new ArrayList < > ( ) ;
UpShelfZeroOrderDTO upShelfZeroOrderDTO = new UpShelfZeroOrderDTO ( ) ;
upShelfZeroOrderDTO . setOrderCode ( orderCode ) ;
upShelfZeroOrderDTO . setAllocationId ( Long . parseLong ( allocationId ) ) ;
upShelfZeroOrderDTO . setEnterNum ( stockNum ) ;
upShelfZeroOrderDTOS . add ( upShelfZeroOrderDTO ) ;
if ( ! Objects . isNull ( groundingAllocationId ) ) {
if ( StringUtil . isNotBlank ( allocationId ) ) {
R r = updownTypeService . downZeroOrder ( upShelfZeroOrderDTOS , warehouseId , "盘点零担下架" ) ;
if ( r . getCode ( ) = = 200 ) {
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
updownTypeService . upShelfZeroOrder ( upShelfZeroOrderDTOS , groundingAllocationId , warehouseId , "盘点零担上架" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
upShelfZeroOrderDTOS . get ( 0 ) . setEnterNum ( nowStockNum ) ;
updownTypeService . upShelfZeroOrder ( upShelfZeroOrderDTOS , groundingAllocationId , warehouseId , "盘点零担上架" ) ;
}
}
}
} else {
if ( StringUtil . isNotBlank ( trayCode ) ) {
R r = trayTypeService . deleteZeroOrderByTrayCode ( orderCode , trayCode , warehouseId , "盘点零担解托" ) ;
if ( r . getCode ( ) = = 200 ) {
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
updownTypeService . upShelfZeroOrder ( upShelfZeroOrderDTOS , groundingAllocationId , warehouseId , "盘点零担上架" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
upShelfZeroOrderDTOS . get ( 0 ) . setEnterNum ( nowStockNum ) ;
updownTypeService . upShelfZeroOrder ( upShelfZeroOrderDTOS , groundingAllocationId , warehouseId , "盘点零担上架" ) ;
}
}
}
}
}
} else {
log . error ( "XXXXXX#######syncTaskData: 托盘上架失败 trayCode={} allocationId={}" , trayCode , allocationId ) ;
if ( StringUtil . isNotBlank ( newTrayCode ) ) {
if ( StringUtil . isNotBlank ( allocationId ) ) {
R r = updownTypeService . downZeroOrder ( upShelfZeroOrderDTOS , warehouseId , "盘点零担下架" ) ;
if ( r . getCode ( ) = = 200 ) {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( newTrayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
List < ZeroOrderVO > zeroList = new ArrayList < > ( ) ;
ZeroOrderVO zeroOrderVO = new ZeroOrderVO ( ) ;
zeroOrderVO . setOrderId ( orderId ) ;
zeroOrderVO . setOrderCode ( orderCode ) ;
zeroOrderVO . setNum ( stockNum ) ;
zeroList . add ( zeroOrderVO ) ;
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
//打托
trayTypeService . enterZeroOrderByTrayCode ( trayType , newTrayCode , zeroList , warehouseId , "盘点零担打托" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
zeroList . get ( 0 ) . setNum ( nowStockNum ) ;
trayTypeService . enterZeroOrderByTrayCode ( trayType , newTrayCode , zeroList , warehouseId , "盘点零担打托" ) ;
}
}
}
} else {
if ( StringUtil . isNotBlank ( trayCode ) ) {
R r = trayTypeService . deleteZeroOrderByTrayCode ( orderCode , trayCode , warehouseId , "盘点零担解托" ) ;
if ( r . getCode ( ) = = 200 ) {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( newTrayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
List < ZeroOrderVO > zeroList = new ArrayList < > ( ) ;
ZeroOrderVO zeroOrderVO = new ZeroOrderVO ( ) ;
zeroOrderVO . setOrderId ( orderId ) ;
zeroOrderVO . setOrderCode ( orderCode ) ;
zeroOrderVO . setNum ( stockNum ) ;
zeroList . add ( zeroOrderVO ) ;
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
//打托
trayTypeService . enterZeroOrderByTrayCode ( trayType , newTrayCode , zeroList , warehouseId , "盘点零担打托" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
zeroList . get ( 0 ) . setNum ( nowStockNum ) ;
trayTypeService . enterZeroOrderByTrayCode ( trayType , newTrayCode , zeroList , warehouseId , "盘点零担打托" ) ;
}
}
}
} else {
BasicdataTrayEntity trayEntity = basicdataTrayClient . getTrayByTrayCode ( newTrayCode ) ;
if ( Objects . isNull ( trayEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,托盘信息不存在newTrayCode=" + newTrayCode , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long newTrayId = trayEntity . getId ( ) ;
Long newAllocationId = taryAllocationService . getAllocationIdByTrayId ( newTrayId ) ;
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( ! Objects . isNull ( newAllocationId ) ) {
if ( Objects . isNull ( nowStockNum ) ) {
updownTypeService . upShelfZeroOrder ( upShelfZeroOrderDTOS , newAllocationId , warehouseId , "盘点零担上架" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
upShelfZeroOrderDTOS . get ( 0 ) . setEnterNum ( nowStockNum ) ;
updownTypeService . upShelfZeroOrder ( upShelfZeroOrderDTOS , newAllocationId , warehouseId , "盘点零担上架" ) ;
}
}
} else {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( newTrayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
List < ZeroOrderVO > zeroList = new ArrayList < > ( ) ;
ZeroOrderVO zeroOrderVO = new ZeroOrderVO ( ) ;
zeroOrderVO . setOrderId ( orderId ) ;
zeroOrderVO . setOrderCode ( orderCode ) ;
zeroOrderVO . setNum ( stockNum ) ;
zeroList . add ( zeroOrderVO ) ;
if ( Objects . isNull ( nowStockNum ) ) {
//打托
trayTypeService . enterZeroOrderByTrayCode ( trayType , newTrayCode , zeroList , warehouseId , "盘点零担打托" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
zeroList . get ( 0 ) . setNum ( nowStockNum ) ;
trayTypeService . enterZeroOrderByTrayCode ( trayType , newTrayCode , zeroList , warehouseId , "盘点零担打托" ) ;
}
}
}
}
}
}
}
}
} else {
if ( isChange = = 1 & & isChangeAt = = 0 ) {
if ( StringUtil . isNotBlank ( allocationId ) ) {
List < UpShelfZeroOrderDTO > upShelfZeroOrderDTOS = new ArrayList < > ( ) ;
UpShelfZeroOrderDTO upShelfZeroOrderDTO = new UpShelfZeroOrderDTO ( ) ;
upShelfZeroOrderDTO . setOrderCode ( orderCode ) ;
upShelfZeroOrderDTO . setAllocationId ( Long . parseLong ( allocationId ) ) ;
upShelfZeroOrderDTO . setEnterNum ( stockNum ) ;
upShelfZeroOrderDTOS . add ( upShelfZeroOrderDTO ) ;
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( ! Objects . isNull ( nowStockNum ) & & stockNum - nowStockNum ! = 0 ) {
upShelfZeroOrderDTOS . get ( 0 ) . setEnterNum ( stockNum - nowStockNum ) ;
updownTypeService . downZeroOrder ( upShelfZeroOrderDTOS , warehouseId , "盘点下架零担" ) ;
}
} else {
if ( StringUtil . isNotBlank ( trayCode ) ) {
R r = trayTypeService . deleteZeroOrderByTrayCode ( orderCode , trayCode , warehouseId , "盘点零担解托" ) ;
if ( r . getCode ( ) = = 200 ) {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( trayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
List < ZeroOrderVO > zeroList = new ArrayList < > ( ) ;
ZeroOrderVO zeroOrderVO = new ZeroOrderVO ( ) ;
zeroOrderVO . setOrderId ( orderId ) ;
zeroOrderVO . setOrderCode ( orderCode ) ;
zeroOrderVO . setNum ( nowStockNum ) ;
zeroList . add ( zeroOrderVO ) ;
//打托
trayTypeService . enterZeroOrderByTrayCode ( trayType , trayCode , zeroList , warehouseId , "盘点零担打托" ) ;
}
}
}
for ( QuestDetailVO questDetailVO : list ) {
Integer questTarget = questDetailVO . getQuestTarget ( ) ;
String orderPackageCode = questDetailVO . getOrderPackageCode ( ) ;
if ( questTarget = = 1 ) {
log . info ( "################syncTaskData: 订制品类型" ) ;
//处理包件
List < UpShelfPackageDTO > upShelfPackageList = new ArrayList < > ( ) ;
UpShelfPackageDTO upShelfPackageDTO = new UpShelfPackageDTO ( ) ;
upShelfPackageDTO . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( upShelfPackageDTO ) ;
updownTypeService . upShelfPackage ( upShelfPackageList , allocationId , warehouseId ) ;
} else if ( questTarget = = 2 ) {
log . info ( "################syncTaskData: 零担类型" ) ;
String orderCode = questDetailVO . getOrderCode ( ) ;
Long orderId = questDetailVO . getOrderId ( ) ;
Integer stockNum = questDetailVO . getStockNum ( ) ;
List < UpShelfZeroOrderDTO > upShelfZeroOrderList = new ArrayList < > ( ) ;
UpShelfZeroOrderDTO upShelfZeroOrderDTO = new UpShelfZeroOrderDTO ( ) ;
upShelfZeroOrderDTO . setOrderCode ( orderCode ) ;
upShelfZeroOrderDTO . setEnterNum ( stockNum ) ;
upShelfZeroOrderList . add ( upShelfZeroOrderDTO ) ;
updownTypeService . upShelfZeroOrder ( upShelfZeroOrderList , allocationId , warehouseId ) ;
} else if ( questTarget = = 3 ) {
log . info ( "################syncTaskData: 库存品类型" ) ;
if ( ! StringUtil . isBlank ( orderPackageCode ) ) {
//包件码不为空,就是有数据库存品类型,按照包件类型走
List < UpShelfPackageDTO > upShelfPackageList = new ArrayList < > ( ) ;
UpShelfPackageDTO upShelfPackageDTO = new UpShelfPackageDTO ( ) ;
upShelfPackageDTO . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( upShelfPackageDTO ) ;
updownTypeService . upShelfPackage ( upShelfPackageList , allocationId , warehouseId ) ;
} else {
String materialCode = questDetailVO . getMaterialCode ( ) ;
String marketName = questDetailVO . getMarketName ( ) ;
String incomingBatch = questDetailVO . getIncomingBatch ( ) ;
Integer stockNum = questDetailVO . getStockNum ( ) ;
DistributionStockListEntity stockListEntity = distributionStockListClient . getEntityByMarketNameAndMaterialCodeAndIncomingBatch ( marketName , materialCode , incomingBatch , warehouseId ) ;
if ( Objects . isNull ( stockListEntity ) ) {
log . warn ( "##################syncTaskData: 库存品信息不存在 materialCode={} marketName={} incomingBatch={} " , materialCode , marketName , incomingBatch ) ;
}
} else if ( questTarget . equals ( 3 ) ) {
DistributionStockListEntity stockListEntity = distributionStockListClient . getStockListById ( stockId ) ;
if ( Objects . isNull ( stockListEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,库存品信息不存在stockId=" + stockId , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long marketId = stockListEntity . getMarketId ( ) ;
String cargoNumber = stockListEntity . getCargoNumber ( ) ;
String incomingBatch = stockListEntity . getIncomingBatch ( ) ;
Long materialId = stockListEntity . getMaterialId ( ) ;
if ( isChangeAt = = 1 ) {
if ( ! Objects . isNull ( groundingAllocationId ) ) {
if ( StringUtil . isNotBlank ( allocationId ) ) {
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setMaterialCode ( cargoNumber ) ;
upShelfStockDTO . setAllocationId ( Long . parseLong ( allocationId ) ) ;
upShelfStockDTO . setEnterNum ( stockNum ) ;
upShelfStockDTO . setIncomingBatch ( incomingBatch ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
R r = updownTypeService . downStock ( upShelfStockList , warehouseId , "盘点无数据库存品下架" ) ;
if ( r . getCode ( ) = = 200 ) {
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
updownTypeService . upShelfStockList ( upShelfStockList , groundingAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
upShelfStockList . get ( 0 ) . setEnterNum ( nowStockNum ) ;
updownTypeService . upShelfStockList ( upShelfStockList , groundingAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
}
}
}
} else {
if ( StringUtil . isNotBlank ( trayCode ) ) {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( trayCode , warehouseId ) ;
// String trayType = "100";
// if(!Objects.isNull(entityByTrayCode)){
// trayType = entityByTrayCode.getTrayType();
// }
WarehouseTrayGoodsEntity trayGoodsEntity = trayGoodsService . getStockDataByMaterialIdAndMarketId ( materialId , marketId , entityByTrayCode . getTrayTypeId ( ) , incomingBatch , warehouseId ) ;
if ( Objects . isNull ( trayGoodsEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,库存品上架记录不存在stockId=" + stockId , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long marketId = stockListEntity . getMarketId ( ) ;
Long trayGoodsId = trayGoodsEntity . getId ( ) ;
R r = trayTypeService . deleteStockByTrayGoodsId ( trayGoodsId , warehouseId , "盘点无数据库存品解托" ) ;
if ( r . getCode ( ) = = 200 ) {
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setMaterialCode ( cargoNumber ) ;
upShelfStockDTO . setAllocationId ( groundingAllocationId ) ;
upShelfStockDTO . setEnterNum ( stockNum ) ;
upShelfStockDTO . setIncomingBatch ( incomingBatch ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
updownTypeService . upShelfStockList ( upShelfStockList , groundingAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
upShelfStockList . get ( 0 ) . setEnterNum ( nowStockNum ) ;
updownTypeService . upShelfStockList ( upShelfStockList , groundingAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
}
}
}
} else {
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setMaterialCode ( materialCode ) ;
upShelfStockDTO . setMaterialCode ( cargoNumber ) ;
upShelfStockDTO . setAllocationId ( groundingAllocationId ) ;
upShelfStockDTO . setEnterNum ( stockNum ) ;
upShelfStockDTO . setIncomingBatch ( incomingBatch ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
updownTypeService . upShelfStockList ( upShelfStockList , groundingAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
upShelfStockList . get ( 0 ) . setEnterNum ( nowStockNum ) ;
updownTypeService . upShelfStockList ( upShelfStockList , groundingAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
}
}
}
}
} else {
if ( StringUtil . isNotBlank ( newTrayCode ) ) {
if ( StringUtil . isNotBlank ( allocationId ) ) {
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setMaterialCode ( cargoNumber ) ;
upShelfStockDTO . setAllocationId ( Long . parseLong ( allocationId ) ) ;
upShelfStockDTO . setEnterNum ( stockNum ) ;
upShelfStockDTO . setIncomingBatch ( incomingBatch ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
updownTypeService . upShelfStockList ( upShelfStockList , allocationId , warehouseId ) ;
R r = updownTypeService . downStock ( upShelfStockList , warehouseId , "盘点无数据库存品下架" ) ;
if ( r . getCode ( ) = = 200 ) {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( newTrayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
//打托
trayTypeService . enterStockNoDataMaterialCode ( newTrayCode , trayType , cargoNumber , materialId , stockNum , incomingBatch , warehouseId , "盘点无数据库存品打托" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
trayTypeService . enterStockNoDataMaterialCode ( newTrayCode , trayType , cargoNumber , materialId , stockNum , incomingBatch , warehouseId , "盘点无数据库存品打托" ) ;
}
}
}
} else {
if ( StringUtil . isNotBlank ( trayCode ) ) {
BasicdataTrayEntity trayEntity = basicdataTrayClient . getTrayByTrayCode ( trayCode ) ;
if ( Objects . isNull ( trayEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,托盘信息不存在trayCode=" + trayCode , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long oldTrayId = trayEntity . getId ( ) ;
Long oldAllocationId = taryAllocationService . getAllocationIdByTrayId ( oldTrayId ) ;
String trayType = "100" ;
R r = null ;
if ( ! Objects . isNull ( oldAllocationId ) ) {
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setMaterialCode ( cargoNumber ) ;
upShelfStockDTO . setAllocationId ( Long . parseLong ( allocationId ) ) ;
upShelfStockDTO . setEnterNum ( stockNum ) ;
upShelfStockDTO . setIncomingBatch ( incomingBatch ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
r = updownTypeService . downStock ( upShelfStockList , warehouseId , "盘点无数据库存品下架" ) ;
} else {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( trayCode , warehouseId ) ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
WarehouseTrayGoodsEntity trayGoodsEntity = trayGoodsService . getStockDataByMaterialIdAndMarketId ( materialId , marketId , entityByTrayCode . getTrayTypeId ( ) , incomingBatch , warehouseId ) ;
if ( Objects . isNull ( trayGoodsEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,库存品上架记录不存在stockId=" + stockId , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long trayGoodsId = trayGoodsEntity . getId ( ) ;
r = trayTypeService . deleteStockByTrayGoodsId ( trayGoodsId , warehouseId , "盘点无数据库存品解托" ) ;
}
if ( r . getCode ( ) = = 200 ) {
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
//打托
trayTypeService . enterStockNoDataMaterialCode ( newTrayCode , trayType , cargoNumber , materialId , stockNum , incomingBatch , warehouseId , "盘点无数据库存品打托" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
trayTypeService . enterStockNoDataMaterialCode ( newTrayCode , trayType , cargoNumber , materialId , nowStockNum , incomingBatch , warehouseId , "盘点无数据库存品打托" ) ;
}
}
}
} else {
BasicdataTrayEntity trayEntity = basicdataTrayClient . getTrayByTrayCode ( newTrayCode ) ;
if ( Objects . isNull ( trayEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,托盘信息不存在newTrayCode=" + newTrayCode , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long newTrayId = trayEntity . getId ( ) ;
Long newAllocationId = taryAllocationService . getAllocationIdByTrayId ( newTrayId ) ;
if ( ! Objects . isNull ( newAllocationId ) ) {
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setMaterialCode ( cargoNumber ) ;
upShelfStockDTO . setAllocationId ( groundingAllocationId ) ;
upShelfStockDTO . setEnterNum ( stockNum ) ;
upShelfStockDTO . setIncomingBatch ( incomingBatch ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
updownTypeService . upShelfStockList ( upShelfStockList , newAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
upShelfStockList . get ( 0 ) . setEnterNum ( nowStockNum ) ;
updownTypeService . upShelfStockList ( upShelfStockList , newAllocationId , warehouseId , "盘点无数据库存品上架" ) ;
}
}
} else {
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( newTrayCode , warehouseId ) ;
String trayType = "100" ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
List < ZeroOrderVO > zeroList = new ArrayList < > ( ) ;
ZeroOrderVO zeroOrderVO = new ZeroOrderVO ( ) ;
zeroOrderVO . setOrderId ( orderId ) ;
zeroOrderVO . setOrderCode ( orderCode ) ;
zeroOrderVO . setNum ( stockNum ) ;
zeroList . add ( zeroOrderVO ) ;
//查询目前在库件数
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( Objects . isNull ( nowStockNum ) ) {
//打托
trayTypeService . enterStockNoDataMaterialCode ( newTrayCode , trayType , cargoNumber , materialId , stockNum , incomingBatch , warehouseId , "盘点无数据库存品打托" ) ;
} else {
if ( ! nowStockNum . equals ( 0 ) ) {
trayTypeService . enterStockNoDataMaterialCode ( newTrayCode , trayType , cargoNumber , materialId , nowStockNum , incomingBatch , warehouseId , "盘点无数据库存品打托" ) ;
}
}
}
}
}
} else {
log . warn ( "################syncTaskData: 未知的盘点类型数据 questTarget={}" , questTarget ) ;
continue ;
}
}
}
}
}
}
}
//再处理没有库位的数据
List < String > trayCodes = taskQuestService . findNoAllocationIdAndTray ( questNum ) ;
for ( String trayCode : trayCodes ) {
List < QuestDetailVO > list = taskQuestService . findListByTrayCode ( questNum , trayCode ) ;
String trayType = "100" ;
QueryWrapper < WarehouseTrayTypeEntity > trayTypeQueryWrapper = new QueryWrapper < > ( ) ;
trayTypeQueryWrapper . eq ( "tray_code" , trayCode )
. eq ( "is_deleted" , 0 ) ;
List < WarehouseTrayTypeEntity > trayTypeList = trayTypeService . list ( trayTypeQueryWrapper ) ;
if ( trayTypeList . size ( ) > 1 ) {
//出现多条同一托盘的打托数据,直接
log . info ( "#############syncTaskData: 出现多条同一托盘的打托数据 trayCode={}" , trayCode ) ;
continue ;
} else if ( trayTypeList . size ( ) = = 1 ) {
WarehouseTrayTypeEntity trayTypeEntity = trayTypeList . get ( 0 ) ;
trayType = trayTypeEntity . getTrayType ( ) ;
//空置托盘
trayTypeService . downTrayGoodsByTrayId ( trayTypeEntity . getTrayId ( ) , "盘点任务:空置托盘" ) ;
}
if ( isChange = = 1 & & isChangeAt = = 0 ) {
//暂不处理数量问题
if ( StringUtil . isNotBlank ( allocationId ) ) {
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setMaterialCode ( cargoNumber ) ;
upShelfStockDTO . setAllocationId ( Long . parseLong ( allocationId ) ) ;
upShelfStockDTO . setEnterNum ( stockNum ) ;
upShelfStockDTO . setIncomingBatch ( incomingBatch ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
if ( ! Objects . isNull ( nowStockNum ) & & stockNum - nowStockNum ! = 0 ) {
upShelfStockList . get ( 0 ) . setEnterNum ( stockNum - nowStockNum ) ;
updownTypeService . downStock ( upShelfStockList , warehouseId , "盘点无数据库存品下架" ) ;
}
} else {
if ( StringUtil . isNotBlank ( trayCode ) ) {
String trayType = "100" ;
TrayTypeDataVO entityByTrayCode = trayTypeService . getEntityByTrayCode ( trayCode , warehouseId ) ;
if ( ! Objects . isNull ( entityByTrayCode ) ) {
trayType = entityByTrayCode . getTrayType ( ) ;
}
WarehouseTrayGoodsEntity trayGoodsEntity = trayGoodsService . getStockDataByMaterialIdAndMarketId ( materialId , marketId , entityByTrayCode . getTrayTypeId ( ) , incomingBatch , warehouseId ) ;
if ( Objects . isNull ( trayGoodsEntity ) ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,库存品上架记录不存在stockId=" + stockId , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
Long trayGoodsId = trayGoodsEntity . getId ( ) ;
R r = trayTypeService . deleteStockByTrayGoodsId ( trayGoodsId , warehouseId , "盘点无数据库存品解托" ) ;
if ( r . getCode ( ) = = 200 ) {
Integer nowStockNum = taskQuestService . findStockNum ( questDetailId , questNum + "_child" ) ;
trayTypeService . enterStockNoDataMaterialCode ( trayCode , trayType , cargoNumber , marketId , nowStockNum , incomingBatch , warehouseId , "盘点无数据库存品打托" ) ;
}
}
}
}
for ( QuestDetailVO questDetailVO : list ) {
Integer questTarget = questDetailVO . getQuestTarget ( ) ;
String orderPackageCode = questDetailVO . getOrderPackageCode ( ) ;
if ( questTarget = = 1 ) {
log . info ( "################syncTaskData: 订制品类型" ) ;
//处理包件的打托
dealWithPackageTray ( orderPackageCode , trayCode , warehouseId , trayType ) ;
} else if ( questTarget = = 2 ) {
log . info ( "################syncTaskData: 零担类型" ) ;
String orderCode = questDetailVO . getOrderCode ( ) ;
Long orderId = questDetailVO . getOrderId ( ) ;
Integer stockNum = questDetailVO . getStockNum ( ) ;
dealWithZeroTray ( orderCode , orderId , stockNum , trayCode , warehouseId , trayType ) ;
} else if ( questTarget = = 3 ) {
log . info ( "################syncTaskData: 库存品类型" ) ;
if ( ! StringUtil . isBlank ( orderPackageCode ) ) {
//包件码不为空,就是有数据库存品类型,按照包件类型走
dealWithPackageTray ( orderPackageCode , trayCode , warehouseId , trayType ) ;
} else {
String materialCode = questDetailVO . getMaterialCode ( ) ;
String marketName = questDetailVO . getMarketName ( ) ;
String incomingBatch = questDetailVO . getIncomingBatch ( ) ;
Integer stockNum = questDetailVO . getStockNum ( ) ;
dealWithStockTray ( materialCode , marketName , incomingBatch , stockNum , trayCode , trayType , warehouseId ) ;
} else {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "无数据,数据类型错误questTarget=" + questTarget , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
} else {
log . warn ( "################syncTaskData: 未知的盘点类型数据 questTarget={}" , questTarget ) ;
continue ;
}
} catch ( Exception e ) {
syncTaskErrorLogList . add ( createErrorLog ( questNum , questDetailId , "处理报错questTarget=" + questTarget , tenantId , userId , nickName , deptId ) ) ;
continue ;
}
}
log . info ( "################syncTaskData: 处理完成" ) ;
syncTaskErrorLogService . saveBatch ( syncTaskErrorLogList ) ;
taskQuestEntity . setSyncDataStatus ( 2 ) ;
taskQuestEntity . setQuestStatus ( "4" ) ;
taskQuestService . updateById ( taskQuestEntity ) ;
log . info ( "################syncTaskData: 处理完成 盘点任务同步" ) ;
}
private SyncTaskErrorLogEntity createErrorLog ( String questNum , Long questDetailId , String msg , String tenantId , Long userId , String nickName , Long deptId ) {
Date date = new Date ( ) ;
SyncTaskErrorLogEntity syncTaskErrorLogEntity = new SyncTaskErrorLogEntity ( ) ;
syncTaskErrorLogEntity . setTenantId ( tenantId ) ;
syncTaskErrorLogEntity . setCreateUser ( userId ) ;
syncTaskErrorLogEntity . setCreateTime ( date ) ;
syncTaskErrorLogEntity . setUpdateUser ( userId ) ;
syncTaskErrorLogEntity . setUpdateTime ( date ) ;
syncTaskErrorLogEntity . setCreateDept ( deptId ) ;
syncTaskErrorLogEntity . setIsDeleted ( 0 ) ;
syncTaskErrorLogEntity . setStatus ( 1 ) ;
syncTaskErrorLogEntity . setQuestNum ( questNum ) ;
syncTaskErrorLogEntity . setQuestDetailId ( questDetailId ) ;
syncTaskErrorLogEntity . setMsg ( msg ) ;
return syncTaskErrorLogEntity ;
}
@Override
public void sendTrayInfoByOrderPackageCode ( TrayInfoDTO trayInfoDTO ) {
Integer trayId = trayInfoDTO . getTrayId ( ) ;
@ -414,7 +785,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
upShelfPackageDTO . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( upShelfPackageDTO ) ;
updownTypeService . downPackage ( upShelfPackageList , wid ) ;
updownTypeService . downPackage ( upShelfPackageList , wid , "系统包件下架" ) ;
}
}
@ -451,7 +822,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
upShelfPackageDTO . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( upShelfPackageDTO ) ;
updownTypeService . downPackage ( upShelfPackageList , wid ) ;
updownTypeService . downPackage ( upShelfPackageList , wid , "系统包件下架" ) ;
}
R r = trayTypeService . orderScanOrderPackageCodeSync ( newTrayType , "T" + trayId , orderPackageCode , newWarehouseId ) ;
int code1 = r . getCode ( ) ;
@ -475,7 +846,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
} else if ( code = = 4004 ) {
log . info ( "####################orderStatusHandler: 包件打托方式不正确 orderPackageCode={} " , orderPackageCode ) ;
//先去空置托盘再打托
trayTypeService . trayToNull ( "T" + trayId ) ;
trayTypeService . trayToNull ( "T" + trayId , "系统空置托盘" ) ;
R r = trayTypeService . orderScanOrderPackageCodeSync ( newTrayType , "T" + trayId , orderPackageCode , newWarehouseId ) ;
int code1 = r . getCode ( ) ;
@ -517,7 +888,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
UpShelfPackageDTO upShelfPackageDTO = new UpShelfPackageDTO ( ) ;
upShelfPackageDTO . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( upShelfPackageDTO ) ;
updownTypeService . upShelfPackage ( upShelfPackageList , allocationId , newWarehouseId ) ;
updownTypeService . upShelfPackage ( upShelfPackageList , allocationId , newWarehouseId , "" ) ;
}
}
@ -616,7 +987,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
}
Long marketId = stockListEntity . getMarketId ( ) ;
Long id = stockListEntity . getId ( ) ;
R r = trayTypeService . enterStockNoDataMaterialCode ( trayCode , trayType , materialCode , marketId , stockNum , incomingBatch , warehouseId ) ;
R r = trayTypeService . enterStockNoDataMaterialCode ( trayCode , trayType , materialCode , marketId , stockNum , incomingBatch , warehouseId , "系统无数据库存品打托" ) ;
int code = r . getCode ( ) ;
if ( code = = 200 ) {
log . info ( "##################dealWithStockTray: 库存品打托成功 trayCode={} trayType={} materialCode={} marketId={} incomingBatch={} stockNum={}" , trayCode , trayType , materialCode , marketId , incomingBatch , stockNum ) ;
@ -635,7 +1006,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
zeroOrderVO . setOrderCode ( orderCode ) ;
zeroOrderVO . setNum ( stockNum ) ;
zeroList . add ( zeroOrderVO ) ;
trayTypeService . enterZeroOrderByTrayCodeSync ( trayType , trayCode , zeroList , warehouseId ) ;
trayTypeService . enterZeroOrderByTrayCodeSync ( trayType , trayCode , zeroList , warehouseId , "系统处理零担打托" ) ;
}
private void dealWithPackageTray ( String orderPackageCode , String trayCode , Long warehouseId , String trayType ) {
@ -647,9 +1018,9 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
upShelfPackageDTO . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( upShelfPackageDTO ) ;
//解绑
updownTypeService . downPackageOrDelTray ( upShelfPackageList , warehouseId ) ;
updownTypeService . downPackageOrDelTray ( upShelfPackageList , warehouseId , "处理包件解托" ) ;
R r = trayTypeService . orderScanOrderPackageCode ( trayType , trayCode , orderPackageCode , warehouseId ) ;
R r = trayTypeService . orderScanOrderPackageCode ( trayType , trayCode , orderPackageCode , warehouseId , "系统包件打托" ) ;
int code = r . getCode ( ) ;
if ( code = = 200 ) {
log . info ( "###################dealWithPackageTray: 包件打托成功 orderPackageCode={} trayCode={}" , orderPackageCode , trayCode ) ;