|
|
|
@ -19,27 +19,28 @@ package com.logpm.warehouse.service.impl;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.BeanUtils; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataGoodsAllocationEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataGoodsAreaEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataGoodsShelfEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.entity.*; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataGoodsAllocationClient; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataGoodsAreaClient; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataGoodsShelfClient; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
|
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
|
|
|
|
import com.logpm.distribution.entity.DistributionStockListEntity; |
|
|
|
|
import com.logpm.distribution.feign.IDisStockListDetailClient; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionParcelListClient; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionStockArticleClient; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionStockListClient; |
|
|
|
|
import com.logpm.distribution.vo.UpDownStockupAreaVO; |
|
|
|
|
import com.logpm.warehouse.bean.Resp; |
|
|
|
|
import com.logpm.warehouse.dto.UpShelfPackageDTO; |
|
|
|
|
import com.logpm.warehouse.dto.UpShelfStockDTO; |
|
|
|
|
import com.logpm.warehouse.dto.UpStockupAreaPackageDTO; |
|
|
|
|
import com.logpm.warehouse.entity.*; |
|
|
|
|
import com.logpm.warehouse.feign.WarehouseGoodsAllocationClient; |
|
|
|
|
import com.logpm.warehouse.mapper.WarehouseUpdownStockupAreaMapper; |
|
|
|
|
import com.logpm.warehouse.service.*; |
|
|
|
|
import com.logpm.warehouse.vo.UpShelfAllocationVO; |
|
|
|
|
import com.logpm.warehouse.vo.UpShelfDataVO; |
|
|
|
|
import com.logpm.warehouse.vo.*; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.log4j.Log4j2; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
@ -47,12 +48,15 @@ import org.springblade.core.mp.base.BaseServiceImpl;
|
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.Objects; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 货位与货物绑定表 服务实现类 |
|
|
|
@ -90,6 +94,12 @@ public class WarehouseUpdownStockupAreaServiceImpl extends BaseServiceImpl<Wareh
|
|
|
|
|
|
|
|
|
|
private final IDistributionStockArticleClient distributionStockArticleClient; |
|
|
|
|
|
|
|
|
|
private final IDistributionStockListClient distributionStockListClient; |
|
|
|
|
|
|
|
|
|
private final WarehouseGoodsAllocationClient warehouseGoodsAllocationClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -144,7 +154,7 @@ public class WarehouseUpdownStockupAreaServiceImpl extends BaseServiceImpl<Wareh
|
|
|
|
|
/** |
|
|
|
|
* @param upStockupAreaPackageDTOS |
|
|
|
|
* @param allocationId |
|
|
|
|
* @param id |
|
|
|
|
* @param warehouseId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
@ -303,17 +313,246 @@ public class WarehouseUpdownStockupAreaServiceImpl extends BaseServiceImpl<Wareh
|
|
|
|
|
upShelfAllocationVO.setShelfTitle(goodsShelfName); |
|
|
|
|
upShelfAllocationVO.setAllocationId(allocationId); |
|
|
|
|
upShelfAllocationVO.setAllocationTitle(goodsAllocationName); |
|
|
|
|
//查询已上架的包件列表
|
|
|
|
|
List<WarehouseUpdownStockupAreaEntity> list = this.list(Wrappers.<WarehouseUpdownStockupAreaEntity>query().lambda() |
|
|
|
|
.eq(WarehouseUpdownStockupAreaEntity::getWarehouseId, warehouseId) |
|
|
|
|
.eq(WarehouseUpdownStockupAreaEntity::getAllocationId, allocationId) |
|
|
|
|
); |
|
|
|
|
//查询库位订单总数
|
|
|
|
|
Integer orderTotal = baseMapper.selectOrderTotal(allocationId); |
|
|
|
|
//查询库位单子总数
|
|
|
|
|
Integer packageTotal = baseMapper.selectPackageTotal(allocationId); |
|
|
|
|
//查询库位库存品总数
|
|
|
|
|
Integer stockListTotal = baseMapper.selectStockListTotal(allocationId); |
|
|
|
|
|
|
|
|
|
//查询库位库存品总数
|
|
|
|
|
Integer inventoryTotal = baseMapper.selectInventoryTotal(allocationId); |
|
|
|
|
if (Func.isEmpty(stockListTotal)){ |
|
|
|
|
upShelfAllocationVO.setStockTotalNum(0); |
|
|
|
|
}else { |
|
|
|
|
upShelfAllocationVO.setStockTotalNum(stockListTotal); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
upShelfAllocationVO.setTotalNum(orderTotal); |
|
|
|
|
upShelfAllocationVO.setOrderNum(packageTotal); |
|
|
|
|
upShelfAllocationVO.setStockNum(inventoryTotal); |
|
|
|
|
return upShelfAllocationVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param warehouseId |
|
|
|
|
* @param allocationId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public R upShelfPackageData(Long warehouseId, Long allocationId) { |
|
|
|
|
List<WarehouseUpdownStockupAreaEntity> warehouseUpdownStockupAreaEntities = this.list(Wrappers.<WarehouseUpdownStockupAreaEntity>query().lambda() |
|
|
|
|
.eq(WarehouseUpdownStockupAreaEntity::getWarehouseId, warehouseId) |
|
|
|
|
.eq(WarehouseUpdownStockupAreaEntity::getAllocationId, allocationId) |
|
|
|
|
); |
|
|
|
|
List<Map<String,Object>> maps = new ArrayList<>(); |
|
|
|
|
if (Func.isNotEmpty(warehouseUpdownStockupAreaEntities)){ |
|
|
|
|
//备货库位上存在上架数据,这里进行数据的处理然后给前端数据
|
|
|
|
|
//处理有数据的包件
|
|
|
|
|
List<WarehouseUpdownStockupAreaEntity> haveSourceData = warehouseUpdownStockupAreaEntities.stream().filter(f -> "1".equals(f.getGoodsType())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isNotEmpty(haveSourceData)){ |
|
|
|
|
List<Map<String,Object>> packageMap = baseMapper.selectStockUpAreaOrder(warehouseId,allocationId); |
|
|
|
|
maps.addAll(packageMap); |
|
|
|
|
} |
|
|
|
|
//查询无数据库存品信息
|
|
|
|
|
List<WarehouseUpdownStockupAreaEntity> notSourceInventoryData = warehouseUpdownStockupAreaEntities.stream().filter(f -> "2".equals(f.getGoodsType())&&"3".equals(f.getAssociationType())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isNotEmpty(notSourceInventoryData)){ |
|
|
|
|
List<Map<String,Object>> inventoryMap = baseMapper.selectStockUpAreaStockList(warehouseId,allocationId); |
|
|
|
|
maps.addAll(inventoryMap); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return R.data(maps); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param stockType |
|
|
|
|
* @param value |
|
|
|
|
* @param marketId |
|
|
|
|
* @param warehouseId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public R getStockByParam(Integer stockType, String value, Long marketId, Long warehouseId) { |
|
|
|
|
List<UpdownStockVO> ls = new ArrayList<>(); |
|
|
|
|
//1物料编码 2物料名称
|
|
|
|
|
if(1==stockType){ |
|
|
|
|
//物料编码
|
|
|
|
|
String materialCode = value; |
|
|
|
|
List<DistributionStockListEntity> stockListEntityList = distributionStockListClient.getListByMarketIdAndMaterialCode(marketId, materialCode,warehouseId); |
|
|
|
|
if(!Objects.isNull(stockListEntityList) && stockListEntityList.size() > 0){ |
|
|
|
|
for (DistributionStockListEntity stockListEntity:stockListEntityList){ |
|
|
|
|
UpdownStockVO vo = stockToUpdownStockVO(stockListEntity,warehouseId); |
|
|
|
|
ls.add(vo); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else if (2==stockType){ |
|
|
|
|
//物料名称
|
|
|
|
|
String materialName = value; |
|
|
|
|
List<DistributionStockListEntity> stockListList = distributionStockListClient.getEntityByMarketIdAndMaterialName(marketId, materialName,warehouseId); |
|
|
|
|
for (DistributionStockListEntity stockListEntity:stockListList){ |
|
|
|
|
ls.add(stockToUpdownStockVO(stockListEntity,warehouseId)); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
log.warn("#################getStockByParam: 未知的库存品查询类型"); |
|
|
|
|
} |
|
|
|
|
return R.data(ls); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param allList |
|
|
|
|
* @param allocationId |
|
|
|
|
* @param warehouseId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
@Transactional |
|
|
|
|
public R upShelfStockList(List<UpShelfStockDTO> allList, Long allocationId, Long warehouseId) { |
|
|
|
|
String collected = allList.stream().filter(f -> f.getEnterNum() <= 0).map(UpShelfStockDTO::getMaterialCode).collect(Collectors.joining(",")); |
|
|
|
|
if (Func.isNotBlank(collected)){ |
|
|
|
|
return Resp.scanFail(collected+"请输入正确的上架数量" , "请输入正确的上架数量, 物料编码为"); |
|
|
|
|
} |
|
|
|
|
List<UpShelfStockDTO> upShelfStockList = allList; |
|
|
|
|
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId); |
|
|
|
|
if(Objects.isNull(goodsAllocationEntity)){ |
|
|
|
|
log.warn("##############upShelfOrder: 库位不存在 allocationId={}",allocationId); |
|
|
|
|
return R.fail(403,"库位不存在"); |
|
|
|
|
} |
|
|
|
|
String enableStatus = goodsAllocationEntity.getEnableStatus(); |
|
|
|
|
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId(); |
|
|
|
|
if("2".equals(enableStatus)){ |
|
|
|
|
log.warn("##############upShelfOrder: 库位已被禁用 allocationId={}",allocationId); |
|
|
|
|
return R.fail(403,"库位已被禁用"); |
|
|
|
|
} |
|
|
|
|
BasicdataGoodsShelfEntity goodsShelfEntity = basicdataGoodsShelfClient.getEntityByGoodsShelfId(goodsShelfId); |
|
|
|
|
if(Objects.isNull(goodsShelfEntity)){ |
|
|
|
|
log.warn("##############upShelfOrder: 货架不存在 goodsShelfId={}",goodsShelfId); |
|
|
|
|
return R.fail(403,"货架不存在"); |
|
|
|
|
} |
|
|
|
|
Long goodsAreaId = goodsShelfEntity.getGoodsAreaId(); |
|
|
|
|
BasicdataGoodsAreaEntity goodsAreaEntity = basicdataGoodsAreaClient.getEntityByGoodsAreaId(goodsAreaId); |
|
|
|
|
if(Objects.isNull(goodsAreaEntity)){ |
|
|
|
|
log.warn("##############upShelfOrder: 货区不存在 goodsAreaId={}",goodsAreaId); |
|
|
|
|
return R.fail(403,"货区不存在"); |
|
|
|
|
} |
|
|
|
|
String areaType = goodsAreaEntity.getAreaType(); |
|
|
|
|
if(!"1".equals(areaType)){ |
|
|
|
|
log.warn("#################upShelfOrder: 备货区不能上下架 goodsAreaId={}",goodsAreaId); |
|
|
|
|
throw new CustomerException(403,"请扫描备货库位"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Long wid = goodsAreaEntity.getWarehouseId(); |
|
|
|
|
BasicdataWarehouseEntity warehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(wid); |
|
|
|
|
if(Objects.isNull(warehouseEntity)){ |
|
|
|
|
log.warn("##############upShelfOrder: 仓库不存在 wid={}",wid); |
|
|
|
|
return R.fail(403,"仓库不存在"); |
|
|
|
|
} |
|
|
|
|
if(!wid.equals(warehouseId)){ |
|
|
|
|
log.warn("##############upShelfOrder: 库位不在本仓库中 warehouseId={}",warehouseId); |
|
|
|
|
return R.fail(403,"库位不在本仓库中"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QueryWrapper<WarehouseUpdownStockupAreaEntity> updownTypeQueryWrapper = new QueryWrapper<>(); |
|
|
|
|
updownTypeQueryWrapper |
|
|
|
|
.eq("allocation_id",allocationId) |
|
|
|
|
.eq("shelf_id",goodsShelfId) |
|
|
|
|
.eq("area_id",goodsAreaId) |
|
|
|
|
.eq("is_deleted",0); |
|
|
|
|
List<WarehouseUpdownStockupAreaEntity> newUpShelfInventoryList = new ArrayList<>(); |
|
|
|
|
List<WarehouseUpdownStockupAreaLogEntity> newUpShelfInventoryLogList = new ArrayList<>(); |
|
|
|
|
for (UpShelfStockDTO upShelfStockDTO : upShelfStockList) { |
|
|
|
|
updownTypeQueryWrapper.eq("materiel_code",upShelfStockDTO.getMaterialCode()); |
|
|
|
|
updownTypeQueryWrapper.eq("association_value",upShelfStockDTO.getMaterialCode()); |
|
|
|
|
updownTypeQueryWrapper.eq("incoming_batch",upShelfStockDTO.getIncomingBatch()); |
|
|
|
|
WarehouseUpdownStockupAreaEntity updownStockupAreaEntity = this.getOne(updownTypeQueryWrapper); |
|
|
|
|
if (Func.isEmpty(updownStockupAreaEntity)){ |
|
|
|
|
//不存在备货库位上架,这里需要进行构建新的数据进行保存
|
|
|
|
|
WarehouseUpdownStockupAreaEntity warehouseUpdownStockupArea = createdNewUpShelfInventory(allocationId, warehouseId, upShelfStockDTO, updownStockupAreaEntity, goodsAreaId, goodsAreaEntity, goodsShelfId, goodsShelfEntity, goodsAllocationEntity); |
|
|
|
|
newUpShelfInventoryList.add(warehouseUpdownStockupArea); |
|
|
|
|
WarehouseUpdownStockupAreaLogEntity warehouseUpdownStockupAreaLogEntity = Func.copy(warehouseUpdownStockupArea, WarehouseUpdownStockupAreaLogEntity.class); |
|
|
|
|
warehouseUpdownStockupAreaLogEntity.setBindingType(1); |
|
|
|
|
newUpShelfInventoryLogList.add(warehouseUpdownStockupAreaLogEntity); |
|
|
|
|
}else { |
|
|
|
|
//存在,需要进行新的上架数量维护
|
|
|
|
|
int updateNum = updownStockupAreaEntity.getNum() + upShelfStockDTO.getEnterNum(); |
|
|
|
|
updownStockupAreaEntity.setNum(updateNum); |
|
|
|
|
this.updateById(updownStockupAreaEntity); |
|
|
|
|
WarehouseUpdownStockupAreaLogEntity warehouseUpdownStockupAreaLogEntity = Func.copy(updownStockupAreaEntity, WarehouseUpdownStockupAreaLogEntity.class); |
|
|
|
|
warehouseUpdownStockupAreaLogEntity.setBindingType(1); |
|
|
|
|
warehouseUpdownStockupAreaLogEntity.setId(null); |
|
|
|
|
warehouseUpdownStockupAreaLogEntity.setNum(upShelfStockDTO.getEnterNum()); |
|
|
|
|
newUpShelfInventoryLogList.add(warehouseUpdownStockupAreaLogEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(newUpShelfInventoryList)){ |
|
|
|
|
this.saveBatch(newUpShelfInventoryList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (Func.isNotEmpty(newUpShelfInventoryLogList)){ |
|
|
|
|
warehouseUpdownStockupAreaLogService.saveBatch(newUpShelfInventoryLogList); |
|
|
|
|
} |
|
|
|
|
int upShelfNum = newUpShelfInventoryLogList.stream().mapToInt(WarehouseUpdownStockupAreaLogEntity::getNum).sum(); |
|
|
|
|
|
|
|
|
|
String msg = "上架成功"; |
|
|
|
|
//更新货位缓存
|
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
// if (sum>0){msg =msg+sum+"超出输入数量,或输入数量为0,请输入正确数量再进行操作";}
|
|
|
|
|
return Resp.scanSuccess(msg,"成功上架"+upShelfNum+"件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private WarehouseUpdownStockupAreaEntity createdNewUpShelfInventory(Long allocationId, Long warehouseId, UpShelfStockDTO upShelfStockDTO, WarehouseUpdownStockupAreaEntity updownTypeEntity, Long goodsAreaId, BasicdataGoodsAreaEntity goodsAreaEntity, Long goodsShelfId, BasicdataGoodsShelfEntity goodsShelfEntity, BasicdataGoodsAllocationEntity goodsAllocationEntity) { |
|
|
|
|
WarehouseUpdownStockupAreaEntity updownStockupAreaEntity = new WarehouseUpdownStockupAreaEntity(); |
|
|
|
|
updownStockupAreaEntity.setWarehouseId(warehouseId); |
|
|
|
|
updownStockupAreaEntity.setAreaId(goodsAreaId); |
|
|
|
|
updownStockupAreaEntity.setAreaTitle(goodsAreaEntity.getHeadline()); |
|
|
|
|
updownStockupAreaEntity.setShelfId(goodsShelfId); |
|
|
|
|
updownStockupAreaEntity.setShelfTitle(goodsShelfEntity.getGoodsShelfName()); |
|
|
|
|
updownStockupAreaEntity.setAllocationId(allocationId); |
|
|
|
|
updownStockupAreaEntity.setAllocationTitle(goodsAllocationEntity.getGoodsAllocationName()); |
|
|
|
|
updownStockupAreaEntity.setPositionCode(goodsAllocationEntity.getQrCode()); |
|
|
|
|
updownStockupAreaEntity.setAssociationValue(upShelfStockDTO.getMaterialCode()); |
|
|
|
|
updownStockupAreaEntity.setIncomingBatch(upShelfStockDTO.getIncomingBatch()); |
|
|
|
|
updownStockupAreaEntity.setAssociationType("3"); |
|
|
|
|
updownStockupAreaEntity.setUpdownType("物料"); |
|
|
|
|
updownStockupAreaEntity.setGoodsType("1"); |
|
|
|
|
updownStockupAreaEntity.setNum(upShelfStockDTO.getEnterNum()); |
|
|
|
|
updownStockupAreaEntity.setMarketId(upShelfStockDTO.getMarketId()); |
|
|
|
|
updownStockupAreaEntity.setMaterielCode(upShelfStockDTO.getMaterialCode()); |
|
|
|
|
updownStockupAreaEntity.setMaterielName(upShelfStockDTO.getMaterialName()); |
|
|
|
|
return updownStockupAreaEntity; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return upShelfAllocationVO; |
|
|
|
|
|
|
|
|
|
private UpdownStockVO stockToUpdownStockVO(DistributionStockListEntity stockListEntity,Long warehouseId) { |
|
|
|
|
Long marketId = stockListEntity.getMarketId(); |
|
|
|
|
// Long materialId = stockListEntity.getMaterialId();
|
|
|
|
|
Integer quantityStock = stockListEntity.getQuantityStock(); |
|
|
|
|
String cargoNumber = stockListEntity.getCargoNumber();//物料编码
|
|
|
|
|
String descriptionGoods = stockListEntity.getDescriptionGoods();//物料名称
|
|
|
|
|
String incomingBatch = stockListEntity.getIncomingBatch();//批次号
|
|
|
|
|
UpdownStockVO updownStockVO = new UpdownStockVO(); |
|
|
|
|
updownStockVO.setMaterialCode(cargoNumber); |
|
|
|
|
updownStockVO.setMaterialName(descriptionGoods); |
|
|
|
|
updownStockVO.setIncomingBatch(incomingBatch); |
|
|
|
|
updownStockVO.setWaybillCode(""); |
|
|
|
|
updownStockVO.setOrderCode(stockListEntity.getOrderCode()); |
|
|
|
|
updownStockVO.setTotalNumber(stockListEntity.getQuantityStock()); |
|
|
|
|
|
|
|
|
|
List<PositionVO> updownGoodsByStock = warehouseUpdownGoodsService.getUpdownGoodsByStock(marketId, cargoNumber, incomingBatch,warehouseId); |
|
|
|
|
List<PositionVO> trayGoodsByStock = warehouseTrayGoodsService.getTrayGoodsByStockNoAllocationId(marketId, cargoNumber, incomingBatch,warehouseId); |
|
|
|
|
updownGoodsByStock.addAll(trayGoodsByStock); |
|
|
|
|
for (PositionVO positionVO:updownGoodsByStock){ |
|
|
|
|
Integer num = positionVO.getNum(); |
|
|
|
|
quantityStock = quantityStock - num; |
|
|
|
|
} |
|
|
|
|
updownStockVO.setResidueNumber(quantityStock); |
|
|
|
|
updownStockVO.setList(updownGoodsByStock); |
|
|
|
|
updownStockVO.setGoodsType(3); |
|
|
|
|
return updownStockVO; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|