|
|
|
@ -3,13 +3,11 @@ package com.logpm.warehouse.service.impl;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
|
import com.logpm.basic.entity.BasicMaterialEntity; |
|
|
|
|
import com.logpm.basic.feign.IBasicMaterialClient; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataTrayEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataTrayClient; |
|
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
|
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
|
|
|
|
import com.logpm.distribution.entity.DistributionStockListEntity; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionParcelListClient; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionStockArticleClient; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionStockListClient; |
|
|
|
@ -39,8 +37,6 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Objects; |
|
|
|
|
import java.util.Set; |
|
|
|
|
import java.util.TreeSet; |
|
|
|
|
|
|
|
|
|
@Log4j2 |
|
|
|
|
@Service |
|
|
|
@ -61,74 +57,6 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT
|
|
|
|
|
|
|
|
|
|
private final IWarehouseTrayGoodsLogService warehouseTrayGoodsLogService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<WarehouseTrayTypeVO> pageList(TrayTypeDTO trayTypeDTO) { |
|
|
|
|
IPage<Object> page = new Page<>(); |
|
|
|
|
page.setCurrent(trayTypeDTO.getPageNum()); |
|
|
|
|
page.setSize(trayTypeDTO.getPageSize()); |
|
|
|
|
|
|
|
|
|
IPage<WarehouseTrayTypeEntity> pageList = baseMapper.pageList(page,trayTypeDTO); |
|
|
|
|
|
|
|
|
|
IPage<WarehouseTrayTypeVO> warehouseTrayTypeVOIPage = WarehouseTrayTypeWrapper.build().pageVO(pageList); |
|
|
|
|
|
|
|
|
|
List<WarehouseTrayTypeVO> records = warehouseTrayTypeVOIPage.getRecords(); |
|
|
|
|
for (WarehouseTrayTypeVO trayTypeVO:records){ |
|
|
|
|
Long trayId = trayTypeVO.getTrayId();//托盘id
|
|
|
|
|
//TODO 需要货物与托盘的关联表,与记录表
|
|
|
|
|
QueryWrapper<WarehouseTrayGoodsEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("tray_id",trayId) |
|
|
|
|
.eq("is_deleted",0); |
|
|
|
|
List<WarehouseTrayGoodsEntity> list = warehouseTrayGoodsService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
Set<String> orderCodes = new TreeSet(); |
|
|
|
|
Set<Long> stockListIds = new TreeSet(); |
|
|
|
|
for (WarehouseTrayGoodsEntity warehouseTrayGoodsEntity:list){ |
|
|
|
|
// Integer goodsType = warehouseTrayGoodsEntity.getGoodsType();//货物类型
|
|
|
|
|
Integer associationType = warehouseTrayGoodsEntity.getAssociationType(); |
|
|
|
|
String associationValue = warehouseTrayGoodsEntity.getAssociationValue(); |
|
|
|
|
Long associationId = warehouseTrayGoodsEntity.getAssociationId(); |
|
|
|
|
//分拣只会存在包件分拣或者无包条的零担订单和库存品
|
|
|
|
|
if(associationType == 3){ |
|
|
|
|
DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCode(associationValue); |
|
|
|
|
orderCodes.add(parcelListEntity.getOrderCode()); |
|
|
|
|
} |
|
|
|
|
if(associationType == 2){ |
|
|
|
|
orderCodes.add(associationValue); |
|
|
|
|
} |
|
|
|
|
if(associationType == 4){ |
|
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.getMaterialByProductCode(associationValue); |
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListClient.getStockListByMaterialId(materialEntity.getId()); |
|
|
|
|
stockListIds.add(stockListEntity.getId()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
Integer orderTotalNum = 0; |
|
|
|
|
for(String orderCode:orderCodes){ |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCode(orderCode); |
|
|
|
|
if(!Objects.isNull(stockArticleEntity)){ |
|
|
|
|
orderTotalNum = orderTotalNum +stockArticleEntity.getTotalNumber(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (Long stockListId:stockListIds){ |
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListClient.getStockListById(stockListId); |
|
|
|
|
if(!Objects.isNull(stockListEntity)){ |
|
|
|
|
orderTotalNum = orderTotalNum +stockListEntity.getQuantityStock(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
trayTypeVO.setOrderTotalNum(orderTotalNum); |
|
|
|
|
} |
|
|
|
|
warehouseTrayTypeVOIPage.setRecords(records); |
|
|
|
|
return warehouseTrayTypeVOIPage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public TrayTypeDataVO scanTrayInfo(String trayCode) { |
|
|
|
|
//根据托盘嘛查询是否有数据
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<WarehouseTrayTypeVO> orderPageList(TrayTypeDTO trayTypeDTO) { |
|
|
|
|
IPage<Object> page = new Page<>(); |
|
|
|
@ -184,7 +112,8 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT
|
|
|
|
|
List<TrayTypeDataListVO> list = warehouseTrayGoodsService.getListByTrayTypeId(trayTypeId); |
|
|
|
|
trayTypeDataVO.setList(list); |
|
|
|
|
}else if(PalletProductTypeConstant.ARTIFICIAL.equals(type)){ |
|
|
|
|
|
|
|
|
|
List<TrayTypeDataListVO> list = warehouseTrayGoodsService.getZeroListByTrayTypeId(trayTypeId); |
|
|
|
|
trayTypeDataVO.setList(list); |
|
|
|
|
}else if(PalletProductTypeConstant.INVENTORY.equals(type)){ |
|
|
|
|
|
|
|
|
|
}else { |
|
|
|
@ -193,7 +122,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT
|
|
|
|
|
return trayTypeDataVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Transactional |
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
@Override |
|
|
|
|
public R orderScanOrderPackageCode(String trayType, String trayCode, String orderPackageCode) { |
|
|
|
|
//查询托盘信息
|
|
|
|
@ -320,6 +249,60 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT
|
|
|
|
|
return R.success("扫描成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
@Override |
|
|
|
|
public R deleteScanOrderPackageCode(String trayCode, String orderPackageCode) { |
|
|
|
|
//删除托盘与包件关联关系
|
|
|
|
|
QueryWrapper<WarehouseTrayTypeEntity> trayTypeEntityQueryWrapper = new QueryWrapper<>(); |
|
|
|
|
trayTypeEntityQueryWrapper.eq("tray_code",trayCode) |
|
|
|
|
.eq("is_deleted",0); |
|
|
|
|
WarehouseTrayTypeEntity trayTypeEntity = baseMapper.selectOne(trayTypeEntityQueryWrapper); |
|
|
|
|
if(Objects.isNull(trayTypeEntity)){ |
|
|
|
|
log.warn("#############deleteScanOrderPackageCode: 该托盘尚未有打托数据 trayCode={}",trayCode); |
|
|
|
|
return R.fail(403,"该托盘尚未有打托数据"); |
|
|
|
|
} |
|
|
|
|
Long trayTypeId = trayTypeEntity.getId(); |
|
|
|
|
Long trayId = trayTypeEntity.getId(); |
|
|
|
|
WarehouseTrayGoodsEntity trayGoodsEntity = warehouseTrayGoodsService.findByTrayTypeIdAndAssociationValue(trayTypeId,orderPackageCode); |
|
|
|
|
if(Objects.isNull(trayGoodsEntity)){ |
|
|
|
|
log.warn("#############deleteScanOrderPackageCode: 该托盘上没有该包件数据 trayCode={} orderPackageCode={}",trayCode,orderPackageCode); |
|
|
|
|
return R.fail(403,"该托盘上没有该包件数据"); |
|
|
|
|
} |
|
|
|
|
Long trayGoodsId = trayGoodsEntity.getId(); |
|
|
|
|
DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCode(orderPackageCode); |
|
|
|
|
if(Objects.isNull(parcelListEntity)){ |
|
|
|
|
log.warn("##############deleteScanOrderPackageCode: 包件不存在 orderPackageCode={}",orderPackageCode); |
|
|
|
|
return R.fail(403,"包件不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//添加下托日志
|
|
|
|
|
warehouseTrayGoodsLogService.saveLogPackage(parcelListEntity,trayTypeEntity,"0","分拣打托:扫码分拣","2"); |
|
|
|
|
|
|
|
|
|
//修改打托方式上的值
|
|
|
|
|
changeTotalNumByTrayTypeId(parcelListEntity,trayTypeEntity.getId(),2);//addSub 1加 2减
|
|
|
|
|
|
|
|
|
|
//删除绑定关系并返回剩余数量
|
|
|
|
|
Integer num = warehouseTrayGoodsService.deleteByTrayGoodsId(trayGoodsId); |
|
|
|
|
|
|
|
|
|
if(num == 0){ |
|
|
|
|
//空置托盘
|
|
|
|
|
baseMapper.deleteById(trayTypeId); |
|
|
|
|
//更新托盘状态
|
|
|
|
|
basicdataTrayClient.updateTrayStatus(trayId,1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("删除成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private boolean isNeedVacantTrayCode(Long trayTypeId) { |
|
|
|
|
List<TrayTypeDataListVO> listByTrayTypeId = warehouseTrayGoodsService.getListByTrayTypeId(trayTypeId); |
|
|
|
|
if(listByTrayTypeId.size() == 0){ |
|
|
|
|
return true; |
|
|
|
|
}else{ |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void changeTotalNumByTrayTypeId(DistributionParcelListEntity parcelListEntity, Long trayTypeId,Integer addSub) { |
|
|
|
|
String orderCode = parcelListEntity.getOrderCode(); |
|
|
|
@ -365,6 +348,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT
|
|
|
|
|
log.warn("#########saveTrayType: 未找到托盘信息 trayCode={}",trayCode); |
|
|
|
|
throw new CustomerException(403,"未找到托盘信息"); |
|
|
|
|
} |
|
|
|
|
Long trayId = trayEntity.getId(); |
|
|
|
|
//查询包件数据
|
|
|
|
|
DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCode(orderPackageCode); |
|
|
|
|
if(Objects.isNull(parcelListEntity)){ |
|
|
|
@ -379,7 +363,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
WarehouseTrayTypeEntity trayTypeEntity = new WarehouseTrayTypeEntity(); |
|
|
|
|
trayTypeEntity.setTrayId(trayEntity.getId()); |
|
|
|
|
trayTypeEntity.setTrayId(trayId); |
|
|
|
|
trayTypeEntity.setTrayCode(trayCode); |
|
|
|
|
trayTypeEntity.setType(PalletProductTypeConstant.CUSTOMIZED); |
|
|
|
|
trayTypeEntity.setTrayType(trayType); |
|
|
|
@ -408,7 +392,34 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT
|
|
|
|
|
trayTypeEntity.setFilterValue(stockArticleEntity.getWarehouse()); |
|
|
|
|
} |
|
|
|
|
baseMapper.insert(trayTypeEntity); |
|
|
|
|
|
|
|
|
|
//修改托盘的状态
|
|
|
|
|
basicdataTrayClient.updateTrayStatus(trayId,2); |
|
|
|
|
|
|
|
|
|
return trayTypeEntity; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//-----------------------------人工分拣-----------------------
|
|
|
|
|
@Override |
|
|
|
|
public IPage<WarehouseTrayTypeVO> zeroPageList(TrayTypeDTO trayTypeDTO) { |
|
|
|
|
IPage<Object> page = new Page<>(); |
|
|
|
|
page.setCurrent(trayTypeDTO.getPageNum()); |
|
|
|
|
page.setSize(trayTypeDTO.getPageSize()); |
|
|
|
|
|
|
|
|
|
//存入列表类型
|
|
|
|
|
trayTypeDTO.setType(PalletProductTypeConstant.ARTIFICIAL); |
|
|
|
|
|
|
|
|
|
//因为传入了打托分类,所以可以公用一个
|
|
|
|
|
IPage<WarehouseTrayTypeEntity> pageList = baseMapper.orderPageList(page,trayTypeDTO); |
|
|
|
|
|
|
|
|
|
IPage<WarehouseTrayTypeVO> warehouseTrayTypeVOIPage = WarehouseTrayTypeWrapper.build().pageVO(pageList); |
|
|
|
|
|
|
|
|
|
return warehouseTrayTypeVOIPage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<TrayTypeDataListVO> getZeroOrderByWaybillCode(String waybillCode) { |
|
|
|
|
return baseMapper.getZeroOrderByWaybillCode(waybillCode); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|