@ -131,6 +131,28 @@ public class WarehouseWarehousingEntryServiceImpl extends BaseServiceImpl<Wareho
if ( ObjectUtils . isNull ( warehouseWarehousingEntryDTO . getType ( ) ) ) {
throw new ServiceException ( "入库类型不能为空!!" ) ;
}
//添加
//获取当前登录人仓库
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient . getMyCurrentWarehouse ( ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "#####操作人,当前未查询到仓库信息" ) ;
return false ;
}
int isAutoWarehouse ;
BasicdataGoodsAllocationEntity defaultGoodsAllocation ;
WarehouseConfigEntity warehouseConfig = warehouseConfigClient . getWarehouseConfig ( basicdataWarehouseEntity . getId ( ) ) ;
if ( ! Objects . isNull ( warehouseConfig ) ) {
isAutoWarehouse = warehouseConfig . getIsAutoWarehouse ( ) ! = null ? warehouseConfig . getIsAutoWarehouse ( ) : 0 ;
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse ) {
//查询此仓库的默认库位
defaultGoodsAllocation = basicdataGoodsAllocationClient . findDefaultGoodsAllocation ( basicdataWarehouseEntity . getId ( ) ) ;
} else {
defaultGoodsAllocation = null ;
}
} else {
defaultGoodsAllocation = null ;
isAutoWarehouse = 0 ;
}
if ( "2" . equals ( warehouseWarehousingEntryDTO . getType ( ) ) ) {
//直接入库
List < WarehouseWarehousingDetailEntity > list = warehouseWarehousingEntryDTO . getList ( ) ;
@ -147,33 +169,33 @@ public class WarehouseWarehousingEntryServiceImpl extends BaseServiceImpl<Wareho
}
WarehouseWarehousingEntryEntity entryEntity = new WarehouseWarehousingEntryEntity ( ) ;
entryEntity . setId ( warehouseWarehousingEntryDTO . getId ( ) ) ;
//添加
//获取当前登录人仓库
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient . getMyCurrentWarehouse ( ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "#####操作人,当前未查询到仓库信息" ) ;
return false ;
}
warehouseWarehousingEntry . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
warehouseWarehousingEntry . setWarehouse ( basicdataWarehouseEntity . getName ( ) ) ;
warehouseWarehousingEntry . setSource ( "添加" ) ;
warehouseWarehousingEntry . setConditions ( "3" ) ;
if ( Objects . isNull ( warehouseWarehousingEntry . getPositions ( ) ) ) {
//查看是否存在有默认入库的配置
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse & & ! Objects . isNull ( defaultGoodsAllocation ) ) {
warehouseWarehousingEntry . setPositions ( defaultGoodsAllocation . getQrCode ( ) ) ;
warehouseWarehousingEntry . setRemark ( "自动入库" ) ;
}
}
this . save ( warehouseWarehousingEntry ) ;
list . forEach ( i - > {
//添加库存品
addInventory ( i . getCreateInventory ( ) , warehouseWarehousingEntryDTO , i ) ;
} ) ;
//添加入库明细
// Iterator<WarehouseWarehousingDetailEntity> iterator = list.iterator();
// while (iterator.hasNext()){
// if(ObjectUtils.isNotNull(iterator.next().getConditions() ) && iterator.next().getConditions().equals("3")){
// iterator.remove();
// }
// }
if ( ! list . isEmpty ( ) ) {
list . forEach ( i - > {
i . setWarehousingEntryId ( warehouseWarehousingEntry . getId ( ) ) ;
i . setConditions ( "3" ) ;
if ( Objects . isNull ( i . getAllocationName ( ) ) ) {
//查看是否存在有默认入库的配置
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse & & ! Objects . isNull ( defaultGoodsAllocation ) ) {
i . setAllocationName ( defaultGoodsAllocation . getQrCode ( ) ) ;
i . setAllocationId ( defaultGoodsAllocation . getId ( ) ) ;
i . setLoadingType ( 1 ) ;
}
}
//添加库存品
addInventory ( i . getCreateInventory ( ) , warehouseWarehousingEntryDTO , i ) ;
}
) ;
warehouseWarehousingDetailService . saveBatch ( list ) ;
@ -263,14 +285,13 @@ public class WarehouseWarehousingEntryServiceImpl extends BaseServiceImpl<Wareho
warehouseWarehousingDetailService . deleteLogic ( detailEntityList ) ;
}
}
} else {
//添加
//获取当前登录人仓库
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient . getMyCurrentWarehouse ( ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "#####操作人,当前未查询到仓库信息 ") ;
return false ;
if ( Objects . isNull ( warehouseWarehousingEntry . getPositions ( ) ) ) {
//查看是否存在有默认入库的配置
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse & & ! Objects . isNull ( defaultGoodsAllocation ) ) {
warehouseWarehousingEntry . setPositions ( defaultGoodsAllocation . getQrCode ( ) ) ;
warehouseWarehousingEntry . setRemark ( "自动入库 " ) ;
}
}
warehouseWarehousingEntry . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
warehouseWarehousingEntry . setWarehouse ( basicdataWarehouseEntity . getName ( ) ) ;
@ -288,6 +309,14 @@ public class WarehouseWarehousingEntryServiceImpl extends BaseServiceImpl<Wareho
}
if ( ! list . isEmpty ( ) ) {
list . forEach ( i - > {
if ( Objects . isNull ( i . getAllocationName ( ) ) ) {
//查看是否存在有默认入库的配置
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse & & ! Objects . isNull ( defaultGoodsAllocation ) ) {
i . setAllocationName ( defaultGoodsAllocation . getQrCode ( ) ) ;
i . setAllocationId ( defaultGoodsAllocation . getId ( ) ) ;
i . setLoadingType ( 1 ) ;
}
}
i . setWarehousingEntryId ( warehouseWarehousingEntry . getId ( ) ) ;
i . setConditions ( "1" ) ;
}
@ -540,22 +569,22 @@ public class WarehouseWarehousingEntryServiceImpl extends BaseServiceImpl<Wareho
// WarehouseWarehousingEntryEntity entryEntity = JSONObject.parseObject(JSONObject.toJSONString(k), WarehouseWarehousingEntryEntity.class);
Integer isAutoWarehouse ;
if ( ! Objects . isNull ( entryEntity . getWarehouseId ( ) ) ) {
if ( ! Objects . isNull ( entryEntity . getWarehouseId ( ) ) ) {
//查询是否开启自动上架配置
WarehouseConfigEntity warehouseConfig = warehouseConfigClient . getWarehouseConfig ( entryEntity . getWarehouseId ( ) ) ;
if ( ! Objects . isNull ( warehouseConfig ) ) {
isAutoWarehouse = warehouseConfig . getIsAutoWarehouse ( ) ! = null ? warehouseConfig . getIsAutoWarehouse ( ) : 0 ;
if ( ! Objects . isNull ( warehouseConfig ) ) {
isAutoWarehouse = warehouseConfig . getIsAutoWarehouse ( ) ! = null ? warehouseConfig . getIsAutoWarehouse ( ) : 0 ;
} else {
isAutoWarehouse = 0 ;
}
} else {
isAutoWarehouse = 0 ;
}
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse ) {
isAutoWarehouse = 0 ;
}
} else {
isAutoWarehouse = 0 ;
}
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse ) {
//查询默认备货库位
BasicdataGoodsAllocationEntity defaultGoodsAllocation = basicdataGoodsAllocationClient . findDefaultGoodsAllocation ( entryEntity . getWarehouseId ( ) ) ;
if ( ! Objects . isNull ( defaultGoodsAllocation ) ) {
if ( Objects . isNull ( entryEntity . getPositions ( ) ) ) {
if ( ! Objects . isNull ( defaultGoodsAllocation ) ) {
if ( Objects . isNull ( entryEntity . getPositions ( ) ) ) {
entryEntity . setPositions ( defaultGoodsAllocation . getQrCode ( ) ) ;
}
}
@ -596,8 +625,8 @@ public class WarehouseWarehousingEntryServiceImpl extends BaseServiceImpl<Wareho
detail . setTrayName ( basicdataTrayEntity . getPalletName ( ) ) ;
}
}
} else {
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse ) {
} else {
if ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) = = isAutoWarehouse ) {
//库位
WarehouseGoodsAllocationEntity warehouseGoodsAllocationEntity = warehouseGoodsAllocationClient . findByAllocationQrCode ( entryEntity . getPositions ( ) ) ;
if ( Func . isNotEmpty ( warehouseGoodsAllocationEntity ) ) {
@ -670,7 +699,7 @@ public class WarehouseWarehousingEntryServiceImpl extends BaseServiceImpl<Wareho
break ;
default :
s . setConditions ( "未知" ) ;
return ;
return ;
}
BeanUtil . copyProperties ( s , excel ) ;
listExcel . add ( excel ) ;