@ -18,7 +18,6 @@ import com.logpm.warehouse.service.*;
import com.logpm.warehouse.vo.* ;
import com.logpm.warehouse.vo.* ;
import lombok.AllArgsConstructor ;
import lombok.AllArgsConstructor ;
import lombok.extern.log4j.Log4j2 ;
import lombok.extern.log4j.Log4j2 ;
import org.springblade.common.constant.apiwarehouse.PalletProductTypeConstant ;
import org.springblade.common.exception.CustomerException ;
import org.springblade.common.exception.CustomerException ;
import org.springblade.core.mp.base.BaseServiceImpl ;
import org.springblade.core.mp.base.BaseServiceImpl ;
import org.springblade.core.tool.api.R ;
import org.springblade.core.tool.api.R ;
@ -48,6 +47,116 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
private final IWarehouseTrayGoodsService warehouseTrayGoodsService ;
private final IWarehouseTrayGoodsService warehouseTrayGoodsService ;
private final IWarehouseUpdownGoodsService warehouseUpdownGoodsService ;
private final IWarehouseUpdownGoodsService warehouseUpdownGoodsService ;
private final IWarehouseUpdownGoodsLogService warehouseUpdownGoodsLogService ;
private final IWarehouseUpdownGoodsLogService warehouseUpdownGoodsLogService ;
private final IBasicdataWarehouseClient warehouseClient ;
@Override
public boolean packageChangeStock ( List < String > orderPackageCodes ) {
log . info ( "####################已上架 打托的包件转库存品 " ) ;
for ( String orderPackageCode : orderPackageCodes ) {
log . info ( "####################当前处理的包件 orderPackageCode={}" , orderPackageCode ) ;
QueryWrapper < WarehouseUpdownGoodsEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "association_value" , orderPackageCode ) ;
WarehouseUpdownGoodsEntity one = warehouseUpdownGoodsService . getOne ( queryWrapper ) ;
if ( ! Objects . isNull ( one ) ) {
packageChangeStockByAllocaton ( one ) ;
} else {
//判断包件在哪个托盘上
packageChangeStockByTray ( orderPackageCode ) ;
}
}
return true ;
}
private void packageChangeStockByAllocaton ( WarehouseUpdownGoodsEntity one ) {
//当前登录人选择的仓库
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient . getMyCurrentWarehouse ( ) ;
if ( Objects . isNull ( myCurrentWarehouse ) ) {
log . warn ( "################packageChangeStockByTray: 仓库信息为空 myCurrentWarehouse={}" , myCurrentWarehouse ) ;
return ;
}
Long warehouseId = myCurrentWarehouse . getId ( ) ;
if ( ! Objects . isNull ( one ) ) {
//包件已打托,需要处理
Long updownTypeId = one . getUpdownTypeId ( ) ;
String orderPackageCode = one . getAssociationValue ( ) ;
Long allocationId = one . getAllocationId ( ) ;
Long updownGoodsId = one . getId ( ) ;
//查询包件的物料信息
DistributionParcelListEntity parcelListEntity = distributionParcelListClient . findByPacketBarCode ( orderPackageCode ) ;
if ( Objects . isNull ( parcelListEntity ) ) {
log . error ( "#############packageChangeStockByTray: 包件信息不存在 orderPackageCode={}" , orderPackageCode ) ;
return ;
}
String orderCode = parcelListEntity . getOrderCode ( ) ; //订单自编码
String materialCode = parcelListEntity . getMaterialCode ( ) ; //物料编码
Long marketId = parcelListEntity . getMarketId ( ) ; //商场id
//先删除包件的打托
List < UpShelfPackageDTO > upShelfPackageList = new ArrayList < > ( ) ;
UpShelfPackageDTO upShelfPackageDTO = new UpShelfPackageDTO ( ) ;
upShelfPackageDTO . setOrderPackageCode ( orderPackageCode ) ;
upShelfPackageList . add ( upShelfPackageDTO ) ;
downPackage ( upShelfPackageList , warehouseId ) ;
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
UpShelfStockDTO upShelfStockDTO = new UpShelfStockDTO ( ) ;
upShelfStockDTO . setIncomingBatch ( orderCode ) ;
upShelfStockDTO . setMaterialCode ( materialCode ) ;
upShelfStockDTO . setMarketId ( marketId ) ;
upShelfStockDTO . setEnterNum ( 1 ) ;
upShelfStockList . add ( upShelfStockDTO ) ;
upShelfStockList ( upShelfStockList , allocationId , warehouseId ) ;
}
}
private void packageChangeStockByTray ( String orderPackageCode ) {
//当前登录人选择的仓库
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient . getMyCurrentWarehouse ( ) ;
if ( Objects . isNull ( myCurrentWarehouse ) ) {
log . warn ( "################packageChangeStockByTray: 仓库信息为空 myCurrentWarehouse={}" , myCurrentWarehouse ) ;
return ;
}
Long warehouseId = myCurrentWarehouse . getId ( ) ;
//先查询包件是否在托
QueryWrapper < WarehouseTrayGoodsEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "association_value" , orderPackageCode ) ;
WarehouseTrayGoodsEntity one = warehouseTrayGoodsService . getOne ( queryWrapper ) ;
if ( ! Objects . isNull ( one ) ) {
//包件已打托,需要处理
Long trayTypeId = one . getTrayTypeId ( ) ;
String trayCode = one . getTrayCode ( ) ;
Long trayGoodsId = one . getId ( ) ;
//查询包件的物料信息
DistributionParcelListEntity parcelListEntity = distributionParcelListClient . findByPacketBarCode ( orderPackageCode ) ;
if ( Objects . isNull ( parcelListEntity ) ) {
log . error ( "#############packageChangeStockByTray: 包件信息不存在 orderPackageCode={}" , orderPackageCode ) ;
return ;
}
String orderCode = parcelListEntity . getOrderCode ( ) ; //订单自编码
String materialCode = parcelListEntity . getMaterialCode ( ) ; //物料编码
Long marketId = parcelListEntity . getMarketId ( ) ; //商场id
//先删除包件的打托
warehouseTrayTypeService . downPackageByOrderPackageCode ( orderPackageCode , "包件解托:包件转库存品" , warehouseId ) ;
warehouseTrayTypeService . scanStockOrderPackageCode ( trayCode , "100" , orderPackageCode , warehouseId ) ;
}
}
@Override
@Override
public TragetAllocationVO findGoodsByAllocation ( Long allocationId ) {
public TragetAllocationVO findGoodsByAllocation ( Long allocationId ) {
@ -282,17 +391,21 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
throw new CustomerException ( 403 , "托盘在其他仓库打托" ) ;
throw new CustomerException ( 403 , "托盘在其他仓库打托" ) ;
}
}
List < UpShelfDataVO > listByTrayTypeId = null ;
List < UpShelfDataVO > packageList = warehouseTrayGoodsService . getUpListByTrayTypeId ( trayTypeId ) ;
if ( PalletProductTypeConstant . CUSTOMIZED . equals ( type ) ) {
List < UpShelfDataVO > zeroList = warehouseTrayGoodsService . getZeroUpListByTrayTypeId ( trayTypeId ) ;
listByTrayTypeId = warehouseTrayGoodsService . getUpListByTrayTypeId ( trayTypeId ) ;
List < UpShelfDataVO > stockList = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
} else if ( PalletProductTypeConstant . ARTIFICIAL . equals ( type ) ) {
// if(PalletProductTypeConstant.CUSTOMIZED.equals(type)){
listByTrayTypeId = warehouseTrayGoodsService . getZeroUpListByTrayTypeId ( trayTypeId ) ;
// listByTrayTypeId = warehouseTrayGoodsService.getUpListByTrayTypeId(trayTypeId);
} else if ( PalletProductTypeConstant . STOCKDATA . equals ( type ) ) {
// }else if(PalletProductTypeConstant.ARTIFICIAL.equals(type)){
listByTrayTypeId = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
// listByTrayTypeId = warehouseTrayGoodsService.getZeroUpListByTrayTypeId(trayTypeId);
} else if ( PalletProductTypeConstant . STOCKNODATA . equals ( type ) ) {
// }else if(PalletProductTypeConstant.STOCKDATA.equals(type)){
listByTrayTypeId = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
// listByTrayTypeId = warehouseTrayGoodsService.getStockUpListByTrayTypeId(trayTypeId);
}
// }else if(PalletProductTypeConstant.STOCKNODATA.equals(type)){
return listByTrayTypeId ;
// listByTrayTypeId = warehouseTrayGoodsService.getStockUpListByTrayTypeId(trayTypeId);
// }
packageList . addAll ( zeroList ) ;
packageList . addAll ( stockList ) ;
return packageList ;
}
}
return null ;
return null ;
}
}
@ -397,11 +510,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
upShelfAllocationVO . setOrderTotalnum ( trayTypeEntity . getOrderTotalNum ( ) ) ;
upShelfAllocationVO . setOrderTotalnum ( trayTypeEntity . getOrderTotalNum ( ) ) ;
upShelfAllocationVO . setStockNum ( trayTypeEntity . getStockNum ( ) ) ;
upShelfAllocationVO . setStockNum ( trayTypeEntity . getStockNum ( ) ) ;
upShelfAllocationVO . setStockTotalNum ( trayTypeEntity . getStockTotalNum ( ) ) ;
upShelfAllocationVO . setStockTotalNum ( trayTypeEntity . getStockTotalNum ( ) ) ;
if ( "1" . equals ( type ) | | "2" . equals ( type ) ) {
// if("1".equals(type) || "2".equals(type)){
upShelfAllocationVO . setTrayNum ( trayTypeEntity . getTotalNum ( ) ) ;
// upShelfAllocationVO.setTrayNum(trayTypeEntity.getTotalNum());
} else if ( "3" . equals ( type ) | | "4" . equals ( type ) ) {
// }else if("3".equals(type) || "4".equals(type)){
upShelfAllocationVO . setTrayNum ( trayTypeEntity . getStockNum ( ) ) ;
// upShelfAllocationVO.setTrayNum(trayTypeEntity.getStockNum());
}
// }
}
}
return upShelfAllocationVO ;
return upShelfAllocationVO ;
@ -489,11 +602,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
//如果有托盘
//如果有托盘
TrayTypeDataVO entityByTrayCode = warehouseTrayTypeService . getEntityByTrayCodeWithUpdown ( trayCode ) ;
TrayTypeDataVO entityByTrayCode = warehouseTrayTypeService . getEntityByTrayCodeWithUpdown ( trayCode ) ;
trayType = entityByTrayCode . getTrayType ( ) ;
trayType = entityByTrayCode . getTrayType ( ) ;
String type = entityByTrayCode . getType ( ) ; //数据类型 1订制品 2零担 3 4 库存品
// String type = entityByTrayCode.getType(); //数据类型 1订制品 2零担 3 4 库存品
if ( ! "1" . equals ( type ) ) {
// if(!"1".equals(type)){
log . warn ( "##############upShelfOrder: 库位上的托盘是定制品类型 allocationId={}" , allocationId ) ;
// log.warn( "##############upShelfOrder: 库位上的托盘是定制品类型 allocationId={}",allocationId);
return R . fail ( 403 , "库位上的托盘是定制品类型" ) ;
// return R.fail(403,"库位上的托盘是定制品类型");
}
// }
}
}
@ -543,13 +656,15 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
try {
try {
String orderPackageCode = parcelListEntity . getOrderPackageCode ( ) ;
String orderPackageCode = parcelListEntity . getOrderPackageCode ( ) ;
Integer quantity = parcelListEntity . getQuantity ( ) ;
Integer quantity = parcelListEntity . getQuantity ( ) ;
//包件级别的上架
upShelfPackageNoTray ( parcelListEntity , goodsAllocationEntity , goodsShelfEntity , goodsAreaEntity , warehouseId ) ;
if ( StringUtil . hasLength ( trayCode ) ) {
if ( StringUtil . hasLength ( trayCode ) ) {
//存入托盘信息
//存入托盘信息
warehouseTrayTypeService . orderScanOrderPackageCode ( trayType , trayCode , orderPackageCode , warehouseId ) ;
warehouseTrayTypeService . orderScanOrderPackageCode ( trayType , trayCode , orderPackageCode , warehouseId ) ;
}
}
//包件级别的上架
upShelfPackageNoTray ( parcelListEntity , goodsAllocationEntity , goodsShelfEntity , goodsAreaEntity , warehouseId ) ;
num = num + quantity ;
num = num + quantity ;
} catch ( CustomerException e ) {
} catch ( CustomerException e ) {
log . warn ( e . message ) ;
log . warn ( e . message ) ;
@ -578,11 +693,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
. eq ( "is_deleted" , 0 ) ;
. eq ( "is_deleted" , 0 ) ;
WarehouseTrayTypeEntity trayTypeEntity = warehouseTrayTypeService . getOne ( queryWrapper ) ;
WarehouseTrayTypeEntity trayTypeEntity = warehouseTrayTypeService . getOne ( queryWrapper ) ;
trayType = trayTypeEntity . getTrayType ( ) ;
trayType = trayTypeEntity . getTrayType ( ) ;
String type = trayTypeEntity . getType ( ) ; //数据类型 1订制品 2零担 3 4 库存品
// String type = trayTypeEntity.getType(); //数据类型 1订制品 2零担 3 4 库存品
if ( ! "1" . equals ( type ) ) {
// if(!"1".equals(type)){
log . warn ( "##############upShelfOrder: 库位上的托盘是定制品类型 allocationId={}" , allocationId ) ;
// log.warn( "##############upShelfOrder: 库位上的托盘是定制品类型 allocationId={}",allocationId);
return R . fail ( 403 , "库位上的托盘是定制品类型" ) ;
// return R.fail(403,"库位上的托盘是定制品类型");
}
// }
}
}
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient . getEntityByAllocationId ( allocationId ) ;
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient . getEntityByAllocationId ( allocationId ) ;
if ( Objects . isNull ( goodsAllocationEntity ) ) {
if ( Objects . isNull ( goodsAllocationEntity ) ) {
@ -644,7 +759,12 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
}
}
DistributionParcelListEntity parcelListEntity = distributionParcelListClient . findByPacketBarCodeAndWarehouseId ( orderPackageCode , warehouseId ) ;
DistributionParcelListEntity parcelListEntity = distributionParcelListClient . findByPacketBarCodeAndWarehouseId ( orderPackageCode , warehouseId ) ;
Integer conditions = parcelListEntity . getConditions ( ) ;
Integer quantity = parcelListEntity . getQuantity ( ) ;
Integer quantity = parcelListEntity . getQuantity ( ) ;
if ( conditions ! = 1 ) {
log . warn ( "##############upShelfPackage: 包件已转库存品 orderPackageCode={}" , orderPackageCode ) ;
continue ;
}
if ( StringUtil . hasLength ( trayCode ) ) {
if ( StringUtil . hasLength ( trayCode ) ) {
//存入托盘信息
//存入托盘信息
warehouseTrayTypeService . orderScanOrderPackageCode ( trayType , trayCode , orderPackageCode , warehouseId ) ;
warehouseTrayTypeService . orderScanOrderPackageCode ( trayType , trayCode , orderPackageCode , warehouseId ) ;
@ -743,11 +863,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
//如果有托盘
//如果有托盘
TrayTypeDataVO entityByTrayCode = warehouseTrayTypeService . getEntityByTrayCodeWithUpdown ( trayCode ) ;
TrayTypeDataVO entityByTrayCode = warehouseTrayTypeService . getEntityByTrayCodeWithUpdown ( trayCode ) ;
trayType = entityByTrayCode . getTrayType ( ) ;
trayType = entityByTrayCode . getTrayType ( ) ;
String type = entityByTrayCode . getType ( ) ; //数据类型 1订制品 2零担 3 4 库存品
// String type = entityByTrayCode.getType(); //数据类型 1订制品 2零担 3 4 库存品
if ( ! "2" . equals ( type ) ) {
// if(!"2".equals(type)){
log . warn ( "##############upShelfOrder: 库位上的托盘是零担类型 allocationId={}" , allocationId ) ;
// log.warn( "##############upShelfOrder: 库位上的托盘是零担类型 allocationId={}",allocationId);
return R . fail ( 403 , "库位上的托盘是零担类型" ) ;
// return R.fail(403,"库位上的托盘是零担类型");
}
// }
}
}
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient . getEntityByAllocationId ( allocationId ) ;
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient . getEntityByAllocationId ( allocationId ) ;
if ( Objects . isNull ( goodsAllocationEntity ) ) {
if ( Objects . isNull ( goodsAllocationEntity ) ) {
@ -871,10 +991,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
}
}
@Override
@Override
public R upShelfStockList ( List < UpShelfStockDTO > upShelfStock List, Long allocationId , Long warehouseId ) {
public R upShelfStockList ( List < UpShelfStockDTO > all List, Long allocationId , Long warehouseId ) {
int num = 0 ;
int num = 0 ;
String trayCode = null ;
String trayCode = null ;
String trayType = null ;
String trayType = null ;
List < UpShelfStockDTO > upShelfStockList = new ArrayList < > ( ) ;
//判断货位是否有托盘
//判断货位是否有托盘
BasicdataTrayEntity trayEntity = warehouseTaryAllocationService . getTrayByAllocationId ( allocationId ) ;
BasicdataTrayEntity trayEntity = warehouseTaryAllocationService . getTrayByAllocationId ( allocationId ) ;
if ( ! Objects . isNull ( trayEntity ) ) {
if ( ! Objects . isNull ( trayEntity ) ) {
@ -882,11 +1003,21 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
//如果有托盘
//如果有托盘
TrayTypeDataVO entityByTrayCode = warehouseTrayTypeService . getEntityByTrayCodeWithUpdown ( trayCode ) ;
TrayTypeDataVO entityByTrayCode = warehouseTrayTypeService . getEntityByTrayCodeWithUpdown ( trayCode ) ;
trayType = entityByTrayCode . getTrayType ( ) ;
trayType = entityByTrayCode . getTrayType ( ) ;
String type = entityByTrayCode . getType ( ) ; //数据类型 1订制品 2零担 3 4 库存品
Long marketId = entityByTrayCode . getMarketId ( ) ;
if ( ! "3" . equals ( type ) & & ! "4" . equals ( type ) ) {
String marketName = entityByTrayCode . getMarketName ( ) ;
log . warn ( "##############upShelfOrder: 库位上的托盘是库存品类型 allocationId={}" , allocationId ) ;
//先去除不是该商场的库存品
return R . fail ( 403 , "库位上的托盘是库存品类型" ) ;
for ( UpShelfStockDTO upShelfStockDTO : allList ) {
Long mid = upShelfStockDTO . getMarketId ( ) ;
if ( mid . equals ( marketId ) ) {
upShelfStockList . add ( upShelfStockDTO ) ;
}
}
}
// String type = entityByTrayCode.getType();//数据类型 1订制品 2零担 3 4 库存品
// if(!"3".equals(type) && !"4".equals(type) ){
// log.warn("##############upShelfOrder: 库位上的托盘是库存品类型 allocationId={}",allocationId);
// return R.fail(403,"库位上的托盘是库存品类型");
// }
}
}
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient . getEntityByAllocationId ( allocationId ) ;
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient . getEntityByAllocationId ( allocationId ) ;
if ( Objects . isNull ( goodsAllocationEntity ) ) {
if ( Objects . isNull ( goodsAllocationEntity ) ) {
@ -1467,16 +1598,20 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
return R . fail ( 403 , "托盘没有货物信息" ) ;
return R . fail ( 403 , "托盘没有货物信息" ) ;
}
}
List < UpShelfDataVO > listByTrayTypeId = null ;
List < UpShelfDataVO > packageList = warehouseTrayGoodsService . getUpListByTrayTypeId ( trayTypeId ) ;
if ( PalletProductTypeConstant . CUSTOMIZED . equals ( type ) ) {
List < UpShelfDataVO > zeroList = warehouseTrayGoodsService . getZeroUpListByTrayTypeId ( trayTypeId ) ;
listByTrayTypeId = warehouseTrayGoodsService . getUpListByTrayTypeId ( trayTypeId ) ;
List < UpShelfDataVO > stockList = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
} else if ( PalletProductTypeConstant . ARTIFICIAL . equals ( type ) ) {
packageList . addAll ( zeroList ) ;
listByTrayTypeId = warehouseTrayGoodsService . getZeroUpListByTrayTypeId ( trayTypeId ) ;
packageList . addAll ( stockList ) ;
} else if ( PalletProductTypeConstant . STOCKDATA . equals ( type ) ) {
// if(PalletProductTypeConstant.CUSTOMIZED.equals(type)){
listByTrayTypeId = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
// listByTrayTypeId = warehouseTrayGoodsService.getUpListByTrayTypeId(trayTypeId);
} else if ( PalletProductTypeConstant . STOCKNODATA . equals ( type ) ) {
// }else if(PalletProductTypeConstant.ARTIFICIAL.equals(type)){
listByTrayTypeId = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
// listByTrayTypeId = warehouseTrayGoodsService.getZeroUpListByTrayTypeId(trayTypeId);
}
// }else if(PalletProductTypeConstant.STOCKDATA.equals(type)){
// listByTrayTypeId = warehouseTrayGoodsService.getStockUpListByTrayTypeId(trayTypeId);
// }else if(PalletProductTypeConstant.STOCKNODATA.equals(type)){
// listByTrayTypeId = warehouseTrayGoodsService.getStockUpListByTrayTypeId(trayTypeId);
// }
Map < String , Object > map = new HashMap < > ( ) ;
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "warehouseId" , warehouseId ) ;
map . put ( "warehouseId" , warehouseId ) ;
map . put ( "warehouseName" , warehouseEntity . getName ( ) ) ;
map . put ( "warehouseName" , warehouseEntity . getName ( ) ) ;
@ -1486,7 +1621,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
map . put ( "shelfName" , goodsShelfEntity . getGoodsShelfName ( ) ) ;
map . put ( "shelfName" , goodsShelfEntity . getGoodsShelfName ( ) ) ;
map . put ( "allocationId" , allocationId ) ;
map . put ( "allocationId" , allocationId ) ;
map . put ( "allocationName" , goodsAllocationEntity . getGoodsAllocationName ( ) ) ;
map . put ( "allocationName" , goodsAllocationEntity . getGoodsAllocationName ( ) ) ;
map . put ( "list" , listByTrayTypeId ) ;
map . put ( "list" , packageList ) ;
return R . data ( map ) ;
return R . data ( map ) ;
}
}
@ -1573,28 +1708,39 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
upShelfAllocationVO . setTrayId ( trayTypeEntity . getTrayId ( ) ) ;
upShelfAllocationVO . setTrayId ( trayTypeEntity . getTrayId ( ) ) ;
upShelfAllocationVO . setTrayCode ( trayTypeEntity . getTrayCode ( ) ) ;
upShelfAllocationVO . setTrayCode ( trayTypeEntity . getTrayCode ( ) ) ;
upShelfAllocationVO . setTrayName ( trayEntity . getPalletName ( ) ) ;
upShelfAllocationVO . setTrayName ( trayEntity . getPalletName ( ) ) ;
upShelfAllocationVO . setTotalNum ( trayTypeEntity . getTotalNum ( ) ) ;
upShelfAllocationVO . setOrderTotalnum ( trayTypeEntity . getOrderTotalNum ( ) ) ;
upShelfAllocationVO . setStockNum ( trayTypeEntity . getStockNum ( ) ) ;
upShelfAllocationVO . setStockTotalNum ( trayTypeEntity . getStockTotalNum ( ) ) ;
Long trayTypeId = trayTypeEntity . getId ( ) ; //打托方式id
Long trayTypeId = trayTypeEntity . getId ( ) ; //打托方式id
String type = trayTypeEntity . getType ( ) ; //打托分类
List < UpShelfDataVO > packageList = warehouseTrayGoodsService . getUpListByTrayTypeId ( trayTypeId ) ;
List < UpShelfDataVO > listByTrayTypeId = null ;
List < UpShelfDataVO > zeroList = warehouseTrayGoodsService . getZeroUpListByTrayTypeId ( trayTypeId ) ;
if ( PalletProductTypeConstant . CUSTOMIZED . equals ( type ) ) {
List < UpShelfDataVO > stockList = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
upShelfAllocationVO . setTotalNum ( trayTypeEntity . getTotalNum ( ) ) ;
upShelfAllocationVO . getList ( ) . addAll ( packageList ) ;
upShelfAllocationVO . setOrderTotalnum ( trayTypeEntity . getOrderTotalNum ( ) ) ;
upShelfAllocationVO . getList ( ) . addAll ( zeroList ) ;
listByTrayTypeId = warehouseTrayGoodsService . getUpListByTrayTypeId ( trayTypeId ) ;
upShelfAllocationVO . getList ( ) . addAll ( stockList ) ;
} else if ( PalletProductTypeConstant . ARTIFICIAL . equals ( type ) ) {
upShelfAllocationVO . setTotalNum ( trayTypeEntity . getTotalNum ( ) ) ;
// String type = trayTypeEntity.getType();//打托分类
upShelfAllocationVO . setOrderTotalnum ( trayTypeEntity . getOrderTotalNum ( ) ) ;
// List<UpShelfDataVO> listByTrayTypeId = warehouseTrayGoodsService.getUpListByTrayTypeId(trayTypeId);
listByTrayTypeId = warehouseTrayGoodsService . getZeroUpListByTrayTypeId ( trayTypeId ) ;
// if(PalletProductTypeConstant.CUSTOMIZED.equals(type)){
} else if ( PalletProductTypeConstant . STOCKDATA . equals ( type ) ) {
// upShelfAllocationVO.setTotalNum(trayTypeEntity.getTotalNum());
upShelfAllocationVO . setStockNum ( trayTypeEntity . getStockNum ( ) ) ;
// upShelfAllocationVO.setOrderTotalnum(trayTypeEntity.getOrderTotalNum());
upShelfAllocationVO . setStockTotalNum ( trayTypeEntity . getStockTotalNum ( ) ) ;
// listByTrayTypeId = warehouseTrayGoodsService.getUpListByTrayTypeId(trayTypeId);
listByTrayTypeId = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
// }else if(PalletProductTypeConstant.ARTIFICIAL.equals(type)){
} else if ( PalletProductTypeConstant . STOCKNODATA . equals ( type ) ) {
// upShelfAllocationVO.setTotalNum(trayTypeEntity.getTotalNum());
upShelfAllocationVO . setStockNum ( trayTypeEntity . getStockNum ( ) ) ;
// upShelfAllocationVO.setOrderTotalnum(trayTypeEntity.getOrderTotalNum());
upShelfAllocationVO . setStockTotalNum ( trayTypeEntity . getStockTotalNum ( ) ) ;
// listByTrayTypeId = warehouseTrayGoodsService.getZeroUpListByTrayTypeId(trayTypeId);
listByTrayTypeId = warehouseTrayGoodsService . getStockUpListByTrayTypeId ( trayTypeId ) ;
// }else if(PalletProductTypeConstant.STOCKDATA.equals(type)){
}
// upShelfAllocationVO.setStockNum(trayTypeEntity.getStockNum());
upShelfAllocationVO . setList ( listByTrayTypeId ) ;
// upShelfAllocationVO.setStockTotalNum(trayTypeEntity.getStockTotalNum());
// listByTrayTypeId = warehouseTrayGoodsService.getStockUpListByTrayTypeId(trayTypeId);
// }else if(PalletProductTypeConstant.STOCKNODATA.equals(type)){
// upShelfAllocationVO.setStockNum(trayTypeEntity.getStockNum());
// upShelfAllocationVO.setStockTotalNum(trayTypeEntity.getStockTotalNum());
// listByTrayTypeId = warehouseTrayGoodsService.getStockUpListByTrayTypeId(trayTypeId);
// }
// upShelfAllocationVO.setList(listByTrayTypeId);
return R . data ( upShelfAllocationVO ) ;
return R . data ( upShelfAllocationVO ) ;
}
}