Browse Source

备货库位、自提件数数量类型调整、自提备货调整、商配移除订单维护包件预约状态

pull/36/head
汤建军 12 months ago
parent
commit
83d701c089
  1. 3
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataGoodsAllocationClient.java
  2. 3
      blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistributionStockupOrderListVO.java
  3. 2
      blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistrilbutionBillLadingVO.java
  4. 2
      blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/entity/WarehouseUpdownStockupAreaEntity.java
  5. 3
      blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/feign/IWarehouseTrayGoodsClient.java
  6. 49
      blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/feign/IWarehouseUpdownStockUpAreaClient.java
  7. 10
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataGoodsAllocationClient.java
  8. 8
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataGoodsAllocationMapper.java
  9. 10
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataGoodsAllocationMapper.xml
  10. 8
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataGoodsAllocationService.java
  11. 11
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataGoodsAllocationServiceImpl.java
  12. 32
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/appcontroller/DistributionStockupAppController.java
  13. 1
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/dto/app/StockupDTO.java
  14. 4
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistributionReservationMapper.xml
  15. 2
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionDeliveryInfoServiceImpl.java
  16. 6
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionDeliveryListServiceImpl.java
  17. 3
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java
  18. 155
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockupServiceImpl.java
  19. 12
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java
  20. 339
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/api/WarehouseUpdownStockupAreaApiController.java
  21. 14
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/feign/WarehouseTrayGoodsClient.java
  22. 43
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/feign/WarehouseUpdownStockupAreaClient.java
  23. 85
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/IWarehouseUpdownStockupAreaService.java
  24. 809
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseUpdownStockupAreaServiceImpl.java

3
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataGoodsAllocationClient.java

@ -69,4 +69,7 @@ public interface IBasicdataGoodsAllocationClient {
@GetMapping(API_PREFIX+"/findAllAllocationIdByWarehouseId")
List<Long> findAllAllocationIdByWarehouseId(@RequestParam Long warehouseId);
@GetMapping(API_PREFIX+"/findStockUpAllocationById")
BasicdataGoodsAllocationEntity findStockUpAllocationById(@RequestParam Long warehouseId,@RequestParam Long stockUpAllocationId);
}

3
blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistributionStockupOrderListVO.java

@ -32,6 +32,8 @@ public class DistributionStockupOrderListVO implements Serializable {
private Integer planNum;//计划件数
@ApiModelProperty(value = "扫描件数")
private Integer scanNum;//扫描件数
// @ApiModelProperty(value = "计划件数")
// private Integer reservationNum;//计划件数
private Long areaId; //货区id
private String trayId; //托盘id
@ -46,4 +48,5 @@ public class DistributionStockupOrderListVO implements Serializable {
private Integer allocationNumber; //货位数量
private Integer num; //货位数量
}

2
blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistrilbutionBillLadingVO.java

@ -49,7 +49,7 @@ public class DistrilbutionBillLadingVO extends DistrilbutionBillLadingEntity {
private String warehouseEntryTime;
private String storageFee;
//计划件数
private String totalNumber;
private Integer totalNumber;
//实际件数
private String handQuantity;
//货物名称

2
blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/entity/WarehouseUpdownStockupAreaEntity.java

@ -29,7 +29,7 @@ public class WarehouseUpdownStockupAreaEntity extends TenantEntity {
@ApiModelProperty(name = "预留5",notes = "")
private String reserve5 ;
/** 上架方式id */
@ApiModelProperty(name = "上架方式id",notes = "")
@ApiModelProperty(name = "上架方式",notes = "")
private String updownType ;
/** 货区id */
@ApiModelProperty(name = "货区id",notes = "")

3
blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/feign/IWarehouseTrayGoodsClient.java

@ -110,4 +110,7 @@ public interface IWarehouseTrayGoodsClient {
*/
@PostMapping(GETTRAYLIST+"/getPackageTrayInfo")
List<WarehouseTrayGoodsEntity> getPackageTrayInfo(@RequestBody Map<String, Object> map);
@GetMapping(GETTRAYLIST+"/findZeroByOrderCode")
List<WarehouseTrayGoodsEntity> findZeroByOrderCode(@RequestParam String orderCode,@RequestParam Long warehouseId);
}

49
blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/feign/IWarehouseUpdownStockUpAreaClient.java

@ -0,0 +1,49 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.warehouse.feign;
import com.logpm.warehouse.entity.WarehouseTrayGoodsEntity;
import com.logpm.warehouse.entity.WarehouseUpdownGoodsLogEntity;
import org.springblade.common.constant.ModuleNameConstant;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
import java.util.Map;
/**
* 备货库位 Feign接口类
*
* @author zhy
* @since 2023-07-10
*/
@FeignClient(
value = ModuleNameConstant.APPLICATION_WAREHOUSE_NAME
)
public interface IWarehouseUpdownStockUpAreaClient {
String API_PREFIX = "warehouseupdownstockuparea/client";
String TOP = API_PREFIX + "/top";
@GetMapping(TOP+"/upStockUpShelf")
Boolean upStockUpShelf(@RequestParam String code,@RequestParam Long stockUpAllocationId,@RequestParam Long warehouseId,@RequestParam Integer type,@RequestParam Integer num);
}

10
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataGoodsAllocationClient.java

@ -104,4 +104,14 @@ public class BasicdataGoodsAllocationClient implements IBasicdataGoodsAllocation
return BasicdataGoodsAllocationService.findAllAllocationIdByWarehouseId(warehouseId);
}
/**
* @param warehouseId
* @param stockUpAllocationId
* @return
*/
@Override
public BasicdataGoodsAllocationEntity findStockUpAllocationById(Long warehouseId, Long stockUpAllocationId) {
return BasicdataGoodsAllocationService.findStockUpAllocationById(warehouseId,stockUpAllocationId);
}
}

8
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataGoodsAllocationMapper.java

@ -80,4 +80,12 @@ public interface BasicdataGoodsAllocationMapper extends BaseMapper<BasicdataGood
List<BasicdataNodeVO> selectFourthNode(@Param("warehouseId") String warehouseId,@Param("areaId") String areaId,@Param("goodsShelfId") String goodsShelfId);
List<Long> findAllAllocationIdByWarehouseId(@Param("warehouseId") Long warehouseId);
/**
* 查询指定仓库下备货库位
* @param warehouseId
* @param stockUpAllocationId
* @return
*/
BasicdataGoodsAllocationEntity findStockUpAllocationById(@Param("warehouseId")Long warehouseId,@Param("allocationId") Long stockUpAllocationId);
}

10
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataGoodsAllocationMapper.xml

@ -195,5 +195,15 @@
from logpm_warehouse_goods_allocation
where warehouse_id = #{warehouseId}
</select>
<select id="findStockUpAllocationById"
resultType="com.logpm.basicdata.entity.BasicdataGoodsAllocationEntity">
SELECT
lwgaa.*
FROM
logpm_warehouse_goods_area AS lwga
LEFT JOIN logpm_warehouse_goods_allocation AS lwgaa ON lwgaa.goods_area_id = lwga.id
WHERE
lwga.warehouse_id = #{warehouseId} AND lwga.area_type = 1 AND lwgaa.id = #{allocationId}
</select>
</mapper>

8
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataGoodsAllocationService.java

@ -123,4 +123,12 @@ public interface IBasicdataGoodsAllocationService extends BaseService<BasicdataG
List<BasicdataNodeVO> getStockUpAllocation();
List<Long> findAllAllocationIdByWarehouseId(Long warehouseId);
/**
* 查询仓库内指定ID的备货库位
* @param warehouseId
* @param stockUpAllocationId
* @return
*/
BasicdataGoodsAllocationEntity findStockUpAllocationById(Long warehouseId, Long stockUpAllocationId);
}

11
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataGoodsAllocationServiceImpl.java

@ -348,4 +348,15 @@ public class BasicdataGoodsAllocationServiceImpl extends BaseServiceImpl<Basicda
public List<Long> findAllAllocationIdByWarehouseId(Long warehouseId) {
return baseMapper.findAllAllocationIdByWarehouseId(warehouseId);
}
/**
* @param warehouseId
* @param stockUpAllocationId
* @return
*/
@Override
public BasicdataGoodsAllocationEntity findStockUpAllocationById(Long warehouseId, Long stockUpAllocationId) {
return baseMapper.findStockUpAllocationById(warehouseId,stockUpAllocationId);
}
}

32
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/appcontroller/DistributionStockupAppController.java

@ -37,10 +37,7 @@ import com.logpm.distribution.mapper.DistributionReservationMapper;
import com.logpm.distribution.service.*;
import com.logpm.distribution.vo.*;
import com.logpm.warehouse.entity.WarehouseUpdownGoodsEntity;
import com.logpm.warehouse.feign.IWarehouseGoodsAllocationClient;
import com.logpm.warehouse.feign.IWarehouseUpdownGoodsClient;
import com.logpm.warehouse.feign.IWarehouseUpdownGoodsLogClient;
import com.logpm.warehouse.feign.IWarehouseUpdownTypeClient;
import com.logpm.warehouse.feign.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.AllArgsConstructor;
@ -122,6 +119,7 @@ public class DistributionStockupAppController extends BladeController {
private final IDisStockOrdercodeRecoService disStockOrdercodeRecoService;
private final IDistributionReservationStockarticleService distributionReservationStockarticleService;
private final IWarehouseUpdownStockUpAreaClient warehouseUpdownStockUpAreaClient;
private final BladeRedis redis;
@ -1476,7 +1474,11 @@ public class DistributionStockupAppController extends BladeController {
rabbitTemplate.convertAndSend(RabbitConstant.STOCKUP_SCAN_EXCHANGE, RabbitConstant.STOCKUP_SCAN_ROUTING, map);
String audioValue = DictBizCache.getValue(DictBizConstant.PDA_AUDIO, PdaAudioLingoStatus.saomiaochenggong.getValue());
//进行备货库位上架
if (Func.isNotEmpty(stockupDTO.getStockUpAllocationId())){
warehouseUpdownStockUpAreaClient.upStockUpShelf(packetBarCode,stockupDTO.getStockUpAllocationId(),myCurrentWarehouse.getId(),2,1);
}
//扫码成功
return Resp.scanSuccess(PdaAudioLingoStatus.saomiaochenggong.getName(), audioValue);
case 2:
@ -1536,12 +1538,16 @@ public class DistributionStockupAppController extends BladeController {
@NotNull
private R stockupScanByCustom(StockupDTO stockupDTO) {
BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse();
//包件扫描
String orderCode = stockupDTO.getOrderCode();//订单自编号
String packetBarCode = stockupDTO.getPacketBarCode();//包件码
Long stockupId = stockupDTO.getStockupId();//备货任务ID
Long reservationId = stockupDTO.getReservationId();//预约单id
if (Objects.isNull(myCurrentWarehouse)) {
log.warn("##################stockupScan: 未选择仓库,订单自编号为空");
return R.fail(403,"未授权!!");
}
if (StringUtil.isBlank(orderCode)) {
log.warn("##################stockupScan: 包件扫码,订单自编号为空");
return R.fail("包件扫码:订单自编号不能为空");
@ -1568,6 +1574,7 @@ public class DistributionStockupAppController extends BladeController {
DistributionStockEntity entity = new DistributionStockEntity();
DistributionParcelListEntity one = distributionParcelListService.getOne(Wrappers.<DistributionParcelListEntity>query().lambda()
.eq(DistributionParcelListEntity::getOrderPackageCode, stockupDTO.getPacketBarCode())
.eq(DistributionParcelListEntity::getWarehouseId, myCurrentWarehouse.getId())
);
entity.setOrderSelfNumbering(one.getOrderCode());
entity.setStockArticle(one.getStockArticleId());
@ -1624,11 +1631,11 @@ public class DistributionStockupAppController extends BladeController {
map.put("messageData", entity);
map.put("createTime", System.currentTimeMillis());
BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse();
log.info(">>>> find bug myCurrentWarehouse {}",myCurrentWarehouse);
if (Objects.isNull(myCurrentWarehouse)) {
throw new CustomerException(403, "仓库信息不能为空");
}
// BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse();
// log.info(">>>> find bug myCurrentWarehouse {}",myCurrentWarehouse);
// if (Objects.isNull(myCurrentWarehouse)) {
// throw new CustomerException(403, "仓库信息不能为空");
// }
//将消息携带绑定键值
rabbitTemplate.convertAndSend(RabbitConstant.STOCKUP_SCAN_EXCHANGE, RabbitConstant.STOCKUP_SCAN_ROUTING, map);
@ -1657,6 +1664,11 @@ public class DistributionStockupAppController extends BladeController {
return message;
});
//查询是否货位数据是否该下架
if (Func.isNotEmpty(stockupDTO.getStockUpAllocationId())){
//进行了备货库位的选择才进行备货库位的上架
warehouseUpdownStockUpAreaClient.upStockUpShelf(packetBarCode, stockupDTO.getStockUpAllocationId(),myCurrentWarehouse.getId(),1,1);
}
return Resp.scanSuccess(PdaAudioLingoStatus.saomiaochenggong.getName(), audioValue);
case 2:
//重复扫描

1
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/dto/app/StockupDTO.java

@ -13,6 +13,7 @@ public class StockupDTO implements Serializable {
private String stockupDateEnd;//备货日期
private Integer status;//0未完成 1已完成
private Long stockUpAllocationId;//0未完成 1已完成
/**
* 客户名城

4
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistributionReservationMapper.xml

@ -1823,7 +1823,9 @@
lds.id AS stockId,
ldsa.order_code AS orderCode,
ldsa.description_goods AS descriptionGoods,
ldsa.id AS stockArticleId
IFNULL(sum(ldrzp.quantity),0) AS planNum,
ldsa.id AS stockArticleId,
IFNULL(SUM(lds.stock_quantity),0) AS scanNum
FROM
logpm_distribution_reservation_stockarticle ldrs
LEFT JOIN logpm_distribution_reservation_zero_package ldrzp ON ldrs.reservation_id = ldrzp.reservation_id AND ldrs.stock_article_id = ldrzp.stock_article_id

2
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionDeliveryInfoServiceImpl.java

@ -117,6 +117,8 @@ public class DistributionDeliveryInfoServiceImpl extends BaseServiceImpl<Distrib
//查询扫描表,
DistributionLoadscanEntity loadscanEntity = distributionLoadscanService.getOne(Wrappers.<DistributionLoadscanEntity>query().lambda()
.eq(DistributionLoadscanEntity::getPackageId, p.getId())
.eq(DistributionLoadscanEntity::getReservationId, Long.parseLong((String) reservationPackageDTO.get("reservationId")))
.ne(DistributionLoadscanEntity::getScanStatus, LoadingStatusConstant.quxiao.getValue())
.eq(DistributionLoadscanEntity::getOrderPackageCode, p.getOrderPackageCode())
);
if (Func.isNotEmpty(loadscanEntity)) {

6
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionDeliveryListServiceImpl.java

@ -3408,9 +3408,13 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
reservationPackageEntityList.forEach(p -> {
DistributionParcelListEntity parcelListEntity = distributionParcelListService.getById(p.getParceListId());
parcelListEntity.setOrderPackageReservationStatus(OrderPackageReservationStatusConstant.daiyuyue.getValue());
distributionAsyncService.checkStockArticleReservationStatus(parcelListEntity);
p.setPacketBarStatus(ReservationPackageStatusConstant.quxiao.getValue());
distributionReservationPackageService.updateById(p);
//进行预约状态恢复
parcelListEntity.setOrderPackageReservationStatus(OrderPackageReservationStatusConstant.daiyuyue.getValue());
distributionParcelListService.updateById(parcelListEntity);
distributionAsyncService.checkStockArticleReservationStatus(parcelListEntity);
});
reservationStockarticleEntity.setStockArticleStatus(ReservationOrderStatusConstant.quxiao.getValue());
distributionReservationStockarticleMapper.updateById(reservationStockarticleEntity);

3
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java

@ -1212,7 +1212,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
unLoadscanEntity.setLoadingId(driverPhone);
unLoadscanEntity.setScanType(LoadingStatusConstant.buluzhuangche.getValue());
unLoadscanEntity.setScanTime(simpleDateFormat.format(new Date()));
unLoadscanEntity.setSigningTime(simpleDateFormat.format(new Date()));
unLoadscanEntity.setSigningTime(simpleDateFormat.format(new Date(System.currentTimeMillis() + (6 * 1000))));
unLoadscanEntity.setSignforState(LoadScanSigningStatusConstant.yiqianshou.getValue());
unLoadscanEntity.setSigningUserId(user.getUserId());
unLoadscanEntity.setSigningUser(user.getNickName());
@ -1247,6 +1247,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
// loadscanEntity.setSigningTime(new Date().toString());
loadscanEntity.setReceivedQuantity(reservationZeroPackageEntities.getQuantity());
loadscanEntity.setLoadedNub(reservationZeroPackageEntities.getQuantity());
loadscanEntity.setSigningTime(simpleDateFormat.format(new Date(System.currentTimeMillis() + (6 * 1000))));
loadscanEntity.setPackageNub(reservationZeroPackageEntities.getQuantity());
loadscanEntity.setSigningTime(simpleDateFormat.format(new Date(System.currentTimeMillis() + (6 * 1000))));
loadscanEntity.setMsg("文员进行签收补录");

155
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockupServiceImpl.java

@ -28,11 +28,9 @@ import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.logpm.basicdata.entity.BasicdataClientEntity;
import com.logpm.basicdata.entity.BasicdataTrayEntity;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.feign.IBasicdataClientClient;
import com.logpm.basicdata.feign.IBasicdataCodeClient;
import com.logpm.basicdata.feign.IBasicdataGoodsAreaClient;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient;
import com.logpm.basicdata.feign.*;
import com.logpm.basicdata.vo.BasicdataGoodsAreaVO;
import com.logpm.distribution.bean.Resp;
import com.logpm.distribution.dto.app.StockConfigInfoVO;
@ -62,6 +60,7 @@ import org.springblade.common.constant.common.IsOrNoConstant;
import org.springblade.common.constant.orderpackage.OrderPackageStatusConstant;
import org.springblade.common.constant.orderpackage.OrderPackageStockupStatusConstant;
import org.springblade.common.constant.pda.PdaAudioLingoStatus;
import org.springblade.common.constant.reservation.ReservationPackageStatusConstant;
import org.springblade.common.constant.stocklist.StockLockingStatusConstant;
import org.springblade.common.constant.stocklist.StockSignfoStatusConstant;
import org.springblade.common.constant.stocklist.StockStatusConstant;
@ -211,6 +210,9 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
@Autowired
private IBasicdataClientClient basicdataClientClient;
@Autowired
private IBasicdataTrayClient basicdataTrayClient;
@ -719,10 +721,11 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
if (stockupDTO.getIsZero().equals("1")) {
List<DistributionStockupOrderListVO> zeroOrderList = distrilbutionBillLadingService.selectBillLadingZeroPackageList(reservationId);
if (Func.isNotEmpty(zeroOrderList)){
List<DistributionStockupOrderListVO> zeroTrayInfo = getZeroTrayInfo(zeroOrderList);
if (!zeroTrayInfo.isEmpty()) {
list = zeroTrayInfo;
}
// List<DistributionStockupOrderListVO> zeroTrayInfo = getZeroTrayInfo(zeroOrderList);
// if (!zeroTrayInfo.isEmpty()) {
// list = zeroTrayInfo;
// }
return zeroOrderList;
}
}
@ -928,12 +931,13 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
//零担查询货位,托盘信息
if (stockupDTO.getIsZero().equals("1")) {
List<DistributionStockupOrderListVO> zeroOrderList = distributionReservationService.selectStockupZeroOrderList(reservationId);
if (Func.isNotEmpty(zeroOrderList)){
List<DistributionStockupOrderListVO> zeroTrayInfo = getZeroTrayInfo(zeroOrderList);
if (!zeroTrayInfo.isEmpty()) {
list = zeroTrayInfo;
}
}
// if (Func.isNotEmpty(zeroOrderList)){
// List<DistributionStockupOrderListVO> zeroTrayInfo = getZeroTrayInfo(zeroOrderList);
// if (!zeroTrayInfo.isEmpty()) {
// list = zeroTrayInfo;
// }
// }
return zeroOrderList;
}
//有货位
List<DistributionStockupOrderListVO> collect11 = list.stream().filter(o -> ObjectUtils.isNotNull(o.getAllocationId())).collect(Collectors.toList()); //有货位
@ -2086,7 +2090,7 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
DistributionDeliveryDetailsEntity one = distributionDeliveryDetailsService.getOne(Wrappers.<DistributionDeliveryDetailsEntity>query().lambda()
.eq(DistributionDeliveryDetailsEntity::getBillLadingId, stockupDTO.getReservationId())
.eq(DistributionDeliveryDetailsEntity::getStockListId, stockupDTO.getStockListId())
.apply("inventory_status in (1,2)")
.apply("inventory_status in (1,3)")
);
if (ObjectUtils.isNotNull(one)) {
if (one.getConditions().equals("2")) {
@ -2669,43 +2673,98 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
*/
@Override
public R zeroStockUpData(StockupZeroDTO stockupDTO) {
List<StockupZeroVO> list = new ArrayList<>();
if (ObjectUtils.isNull(stockupDTO.getAllocationId())) {
//没有货位信息
//有没有多个订单数据
if (stockupDTO.getStockArticleId().contains(",")) {
stockupDTO.setStockArticleIdList(stockupDTO.getStockArticleId().split(","));
stockupDTO.setStockArticleId(null);
}
if (stockupDTO.getTypeService().equals("3")) {
//自提
list = distributionStockupService.getZeroStockUpDataMeiSelf(stockupDTO);
} else {
//商, 市
list = distributionStockupService.getZeroStockUpDataMei(stockupDTO);
}
} else {
//有货位信息
//有没有多个订单数据
if (stockupDTO.getOrderCode().contains(",")) {
stockupDTO.setOrderCodeList(stockupDTO.getOrderCode().split(","));
stockupDTO.setOrderCode(null);
String method = "################DistributionStockupServiceImpl.zeroStockUpData";
// List<StockupZeroVO> list = new ArrayList<>();
Map<String,Object> zeroMap = new HashMap<>();
//查询计划数量
List<DistributionReservationZeroPackageEntity> reservationZeroPackageEntities = reservationZeroPackageService.list(Wrappers.<DistributionReservationZeroPackageEntity>query().lambda()
.eq(DistributionReservationZeroPackageEntity::getReservationId, stockupDTO.getReservationId())
.ne(DistributionReservationZeroPackageEntity::getZeroPackageStatus, ReservationPackageStatusConstant.quxiao.getValue())
.eq(DistributionReservationZeroPackageEntity::getStockArticleId, stockupDTO.getStockArticleId())
);
zeroMap.put("scanNum",0);
zeroMap.put("planNum",0);
if (!reservationZeroPackageEntities.isEmpty()){
int sum = reservationZeroPackageEntities.stream().mapToInt(DistributionReservationZeroPackageEntity::getQuantity).sum();
zeroMap.put("planNum",sum);
//查询以备数量
List<Long> collect = reservationZeroPackageEntities.stream().map(DistributionReservationZeroPackageEntity::getParcelListId).collect(Collectors.toList());
List<DistributionStockEntity> stockEntityList = distributionStockService.list(Wrappers.<DistributionStockEntity>query().lambda()
.eq(DistributionStockEntity::getReservationId, stockupDTO.getReservationId())
.eq(DistributionStockEntity::getStockArticle, stockupDTO.getStockArticleId())
.in(DistributionStockEntity::getParcelListId, collect)
);
if (!stockEntityList.isEmpty()){
int scanNum = stockEntityList.stream().mapToInt(DistributionStockEntity::getStockQuantity).sum();
zeroMap.put("scanNum",scanNum);
}
if (stockupDTO.getTypeService().equals("3")) {
//自提
list = distributionStockupService.getZeroStockUpDataYouSelf(stockupDTO);
} else {
//商,市
list = distributionStockupService.getZeroStockUpDataYou(stockupDTO);
}
//查询订单信息
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleService.getById(stockupDTO.getStockArticleId());
if (IsOrNoConstant.no.getValue().equals(stockArticleEntity.getIsZero())){
log.error(method+"订单类型错误");
return R.data("订单数据错误");
}
Integer handQuantity = stockArticleEntity.getHandQuantity();
//查询此订单所在库位
WarehouseUpdownGoodsEntity warehouseUpdownGoodsEntity = new WarehouseUpdownGoodsEntity();
warehouseUpdownGoodsEntity.setAssociationType("1");
warehouseUpdownGoodsEntity.setAssociationValue(stockArticleEntity.getOrderCode());
warehouseUpdownGoodsEntity.setWarehouseId(stockArticleEntity.getWarehouseId());
warehouseUpdownGoodsEntity.setAssociationId(stockArticleEntity.getId());
List<WarehouseUpdownGoodsEntity> locationStockListInformation = warehouseUpdownGoodsClient.getLocationStockListInformation(warehouseUpdownGoodsEntity);
List<Map<String,Object>> allocationMapList = new ArrayList<>();
if (!locationStockListInformation.isEmpty()) {
int sum = locationStockListInformation.stream().mapToInt(WarehouseUpdownGoodsEntity::getNum).sum();
handQuantity = handQuantity - sum;
for (WarehouseUpdownGoodsEntity updownGoodsEntity : locationStockListInformation) {
Map<String,Object> map = new HashMap<>();
map.put("allocation",updownGoodsEntity.getPositionCode());
map.put("num",updownGoodsEntity.getNum());
allocationMapList.add(map);
}
//存在上架数据
//整理数据
}
//查询零担打托信息
List<WarehouseTrayGoodsEntity> trayGoodsEntities = warehouseTrayGoodsClient.findZeroByOrderCode(stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId());
List<Map<String,Object>> trayMapList = new ArrayList<>();
if (!trayGoodsEntities.isEmpty()) {
int sum = trayGoodsEntities.stream().mapToInt(WarehouseTrayGoodsEntity::getNum).sum();
handQuantity = handQuantity - sum;
Iterator<WarehouseTrayGoodsEntity> iterator = trayGoodsEntities.iterator();
while (iterator.hasNext()){
//查询是否进行上架
WarehouseTrayGoodsEntity next = iterator.next();
if (Func.isNotEmpty(warehouseTaryAllocationClient.findAllocationByTrayId(next.getTrayId()))){
iterator.remove();
}else {
//查询托盘名称
BasicdataTrayEntity trayByTrayCode = basicdataTrayClient.getTrayByTrayCode(next.getTrayCode());
Map<String,Object> map = new HashMap<>();
map.put("trayCode",next.getTrayCode());
map.put("trayName",trayByTrayCode.getPalletName());
map.put("num",next.getNum());
trayMapList.add(map);
}
}
}
//整理剩下的数量信息
Map<String,Object> map = new HashMap<>();
map.put("num",handQuantity);
if (!allocationMapList.isEmpty()){
zeroMap.put("allocationList",allocationMapList);
}
//查询订单信息
list.stream().forEach(i -> {
DistributionStockArticleEntity byId = distributionStockArticleService.getById(i.getStockArticleId());
i.setOrderCode(byId.getOrderCode());
});
return R.data(list);
if (!trayMapList.isEmpty()){
zeroMap.put("trayList",trayMapList);
}
if (!map.isEmpty()){
zeroMap.put("other",map);
}
return R.data(zeroMap);
}
@Override

12
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java

@ -2826,15 +2826,25 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl<Distrilb
if (list4.isEmpty()) {
return Resp.scanFail(PdaAudioLingoStatus.baojianbucunzai.getName(), PdaAudioLingoStatus.baojianbucunzai.getName());
}
if (list4.size() > 1) {
return Resp.scanFail("包件信息错误", "包件信息错误");
}
DistrilbutionBillStockEntity one2 = distrilbutionBillStockService.getOne(Wrappers.<DistrilbutionBillStockEntity>query().lambda()
.eq(DistrilbutionBillStockEntity::getBillLadingId, billLadingId)
.apply("order_status in (1 , 3)")
.eq(DistrilbutionBillStockEntity::getStockArticleId, list4.get(0).getStockArticleId())
);
if (ObjectUtils.isNull(one2)) {
DistrilbutionBillPackageEntity one3 = distrilbutionBillPackageService.getOne(Wrappers.<DistrilbutionBillPackageEntity>query().lambda()
.eq(DistrilbutionBillPackageEntity::getBillLadingId, billLadingId)
.ne(DistrilbutionBillPackageEntity::getPacketBarStatus, 2)
.eq(DistrilbutionBillPackageEntity::getParceListId, list4.get(0).getId())
);
if (ObjectUtils.isNull(one3)) {
return Resp.scanFail("不在本次自提计划!", "不在本次自提计划!");
}
if ("20".equals(one2.getConditions())) {
return Resp.scanFail("当前提货任务," + list4.get(0).getOrderCode() + "已齐套!", "当前提货任务," + list4.get(0).getOrderCode() + "已齐套!");
}

339
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/api/WarehouseUpdownStockupAreaApiController.java

@ -2,6 +2,7 @@ package com.logpm.warehouse.api;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import com.logpm.basicdata.entity.BasicdataGoodsAllocationEntity;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient;
import com.logpm.distribution.vo.UpDownStockupAreaVO;
@ -60,8 +61,8 @@ public class WarehouseUpdownStockupAreaApiController {
}
//查询该库位的货物信息
UpShelfAllocationVO upShelfAllocationVO = warehouseUpdownStockupAreaService.upShelfScanAllocation(allocationId,myCurrentWarehouse.getId());
return R.data(upShelfAllocationVO);
BasicdataGoodsAllocationEntity basicdataGoodsAllocationEntity = warehouseUpdownStockupAreaService.upShelfScanAllocation(allocationId,myCurrentWarehouse.getId());
return R.data(basicdataGoodsAllocationEntity);
}catch (CustomerException e){
log.warn(e.message);
return Resp.scanFail(e.code,e.message,e.message);
@ -72,341 +73,7 @@ public class WarehouseUpdownStockupAreaApiController {
}
@ResponseBody
@PostMapping("/upShelfPackage")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "上架包件维度", notes = "传入trayTypeDTO")
public R upShelfPackage(@RequestBody UpdownTypeDTO updownTypeDTO ) {
String method = "###########upShelfPackage: ";
log.info(method + "上架包件维度 updownTypeDTO={}", updownTypeDTO);
List<UpStockupAreaPackageDTO> upStockupAreaPackageDTOS = updownTypeDTO.getUpStockupAreaPackageDTOS();
Long allocationId = updownTypeDTO.getAllocationId();//库位码
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
int size = upStockupAreaPackageDTOS.size();
if(size == 0 ){
log.warn(method+"没有处理的数据");
return R.fail(403,"无处理数据");
}
if(Objects.isNull(allocationId)){
log.warn(method+"库位信息不能为空 allocationId={}",allocationId);
return R.fail(403,"库位信息不能为空");
}
//查询是否已经上架
//查询该库位的货物信息
return warehouseUpdownStockupAreaService.upStockupAreaPackage(upStockupAreaPackageDTOS,allocationId,myCurrentWarehouse.getId());
}catch (CustomerException e){
log.warn(e.message);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@PostMapping("/upShelfScanPackage")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "备货库位上架包条级别扫描接口", notes = "传入trayTypeDTO")
public R upShelfScanPackage(@RequestBody UpdownTypeDTO updownTypeDTO ) {
String method = "###########upShelfScanPackage: ";
log.info(method + "上架扫描备货库位 updownTypeDTO={}", updownTypeDTO);
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
//查询该库位的货物信息
UpDownStockupAreaVO upDownStockupAreaVO = warehouseUpdownStockupAreaService.upShelfScanPackage(myCurrentWarehouse.getId(), updownTypeDTO.getOrderPackageCode());
//此包件是否已经完成上架了
if (Func.isNotEmpty(upDownStockupAreaVO)){
//查询是否上架,无关打托方式
WarehouseUpdownStockupAreaEntity updownStockupAreaEntity = warehouseUpdownStockupAreaService.getOne(Wrappers.<WarehouseUpdownStockupAreaEntity>query().lambda()
.eq(WarehouseUpdownStockupAreaEntity::getWarehouseId, myCurrentWarehouse.getId())
.eq(WarehouseUpdownStockupAreaEntity::getAssociationValue, upDownStockupAreaVO.getAssociationValue())
.eq(WarehouseUpdownStockupAreaEntity::getAssociationId, upDownStockupAreaVO.getAssociationId())
);
if (Func.isNotEmpty(updownStockupAreaEntity)){
//已经在备货库位进行上架了
return Resp.scanFail("该包件已上架","该包件已上架");
}
if (IsOrNoConstant.no.equals(upDownStockupAreaVO.getIsMay())){
return Resp.scanFail("包件不在库","包件不在库");
}
return R.data(upDownStockupAreaVO);
}else {
return Resp.scanFail("该包件不存在","该包件不存在");
}
}catch (CustomerException e){
log.warn(e.message);
return Resp.scanFail(e.code,e.message,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@GetMapping("/upShelfPackageData")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "查询库位数据", notes = "传入trayTypeDTO")
public R upShelfPackageData(@RequestParam Long allocationId ) {
String method = "###########upShelfScanPackage: ";
log.info(method + "查询库位数据 allocationId={}", allocationId);
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
if(Objects.isNull(allocationId)){
log.warn(method+"库位id不能为空 allocationId={}",allocationId);
return R.fail(403,"请扫描先扫描库位");
}
return warehouseUpdownStockupAreaService.upShelfPackageData(myCurrentWarehouse.getId(),allocationId);
}catch (CustomerException e){
log.warn(e.message);
return Resp.scanFail(e.code,e.message,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@PostMapping("/getStockByParam")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "获取库存品数据", notes = "传入trayTypeDTO")
public R getStockByParam(@RequestBody UpdownTypeDTO updownTypeDTO) {
String method = "###########getStockByParam: ";
log.info(method + "获取库存品数据 updownTypeDTO={}", updownTypeDTO);
Integer stockType = updownTypeDTO.getStockType();
String value = updownTypeDTO.getValue();
Long marketId = updownTypeDTO.getMarketId();
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
if(Objects.isNull(stockType)){
log.warn(method+"查询库存品的类型不明确 stockType={}",stockType);
return R.fail(403,"查询库存品的类型不明确");
}
if(StringUtil.isBlank(value)){
log.warn(method+"查询值不能为空 value={}",value);
return R.fail(403,"查询值不能为空");
}
if(Objects.isNull(marketId)){
log.warn(method+"商场id不能为空 marketId={}",marketId);
return R.fail(403,"商场id不能为空");
}
//查询该库位的货物信息
return R.data(warehouseUpdownStockupAreaService.getStockByParam(stockType,value,marketId,myCurrentWarehouse.getId())) ;
}catch (CustomerException e){
log.warn(e.message);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@PostMapping("/upShelfStockList")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "上架库存品维度", notes = "传入trayTypeDTO")
public R upShelfStockList(@RequestBody UpdownTypeDTO updownTypeDTO ) {
String method = "###########upShelfStockList: ";
log.info(method + "上架库存品维度 updownTypeDTO={}", updownTypeDTO);
Long allocationId = updownTypeDTO.getAllocationId();//库位编码
List<UpShelfStockDTO> upShelfStockList = updownTypeDTO.getUpShelfStockList();
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
int size = upShelfStockList.size();
if(size == 0 ){
log.warn(method+"没有处理的数据");
return R.fail(403,"无处理数据");
}
for (UpShelfStockDTO dto:upShelfStockList){
Integer enterNum = dto.getEnterNum();
if(Objects.isNull(enterNum) || enterNum == 0){
log.warn(method+"请输入正确的数量");
return R.fail(403,"请输入正确的数量");
}
}
if(Objects.isNull(allocationId)){
log.warn(method+"库位信息不能为空 allocationId={}",allocationId);
return R.fail(403,"库位信息不能为空");
}
//查询该库位的货物信息
return warehouseUpdownStockupAreaService.upShelfStockList(upShelfStockList,allocationId,myCurrentWarehouse.getId());
}catch (CustomerException e){
log.warn(e.message);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@PostMapping("/scanZeroStockArticle")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "零担订单扫描接口", notes = "传入trayTypeDTO")
public R scanZeroStockArticle(@RequestBody UpdownTypeDTO updownTypeDTO ) {
String method = "###########scanZeroStockArticle: ";
log.info(method + "零担订单扫描接口 updownTypeDTO={}", updownTypeDTO);
Long allocationId = updownTypeDTO.getAllocationId();//库位编码
String zeroStockArticleCode = updownTypeDTO.getOrderCode();
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
if(StringUtil.isBlank(zeroStockArticleCode)){
log.warn(method+"扫描异常"+zeroStockArticleCode);
return R.fail(403,"无处理数据");
}
//查询该库位的货物信息
return warehouseUpdownStockupAreaService.scanZeroStockArticle(zeroStockArticleCode,myCurrentWarehouse.getId());
}catch (CustomerException e){
log.warn(e.message);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@PostMapping("/upShelfZeroStockArticle")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "上架库存品维度", notes = "传入trayTypeDTO")
public R upShelfZeroStockArticle(@RequestBody UpdownTypeDTO updownTypeDTO ) {
String method = "###########upShelfZeroStockArticle: ";
log.info(method + "上架零担 updownTypeDTO={}", updownTypeDTO);
Long allocationId = updownTypeDTO.getAllocationId();//库位编码
List<UpShelfZeroOrderDTO> upShelfZeroOrderList = updownTypeDTO.getUpShelfZeroOrderList();
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
int size = upShelfZeroOrderList.size();
if(size == 0 ){
log.warn(method+"没有处理的数据");
return R.fail(403,"无处理数据");
}
for (UpShelfZeroOrderDTO dto:upShelfZeroOrderList){
Integer enterNum = dto.getEnterNum();
if(Objects.isNull(enterNum) || enterNum == 0){
log.warn(method+"请输入正确的数量");
return R.fail(403,"请输入正确的数量");
}
}
if(Objects.isNull(allocationId)){
log.warn(method+"库位信息不能为空 allocationId={}",allocationId);
return R.fail(403,"库位信息不能为空");
}
//查询该库位的货物信息
return warehouseUpdownStockupAreaService.upShelfZeroStockeArticle(upShelfZeroOrderList,allocationId,myCurrentWarehouse.getId());
}catch (CustomerException e){
log.warn(e.message);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@PostMapping("/upShelfScanTray")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "备货库位上架扫描托盘", notes = "传入trayTypeDTO")
public R upShelfScanTray(@RequestBody UpdownTypeDTO updownTypeDTO ) {
String method = "###########upShelfScanTray: ";
log.info(method + "备货库位上架扫描托盘 updownTypeDTO={}", updownTypeDTO);
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
//查询托盘货物信息
return warehouseUpdownStockupAreaService.upShelfScanTray(myCurrentWarehouse.getId(), updownTypeDTO.getTrayCode());
}catch (CustomerException e){
log.warn(e.message);
return Resp.scanFail(e.code,e.message,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}
@ResponseBody
@PostMapping("/upShelfTray")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "备货库位上架托盘", notes = "传入trayTypeDTO")
public R upShelfTray(@RequestBody UpdownTypeDTO updownTypeDTO ) {
String method = "###########upShelfScanTray: ";
log.info(method + "备货库位上架托盘 updownTypeDTO={}", updownTypeDTO);
try{
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if(Objects.isNull(myCurrentWarehouse)){
log.warn(method+"仓库信息不能为空");
return R.fail(403,"仓库信息不能为空");
}
//查询托盘货物信息
return warehouseUpdownStockupAreaService.upShelfScanTray(myCurrentWarehouse.getId(), updownTypeDTO.getTrayCode());
}catch (CustomerException e){
log.warn(e.message);
return Resp.scanFail(e.code,e.message,e.message);
}catch (Exception e){
log.error(method+"系统异常,联系管理员",e);
return R.fail(500,"系统异常,联系管理员");
}
}

14
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/feign/WarehouseTrayGoodsClient.java

@ -114,4 +114,18 @@ public class WarehouseTrayGoodsClient implements IWarehouseTrayGoodsClient {
return warehouseTrayGoodsService.getPackageTrayInfo(map);
}
/**
* @param orderCode
* @param warehouseId
* @return
*/
@Override
public List<WarehouseTrayGoodsEntity> findZeroByOrderCode(String orderCode, Long warehouseId) {
QueryWrapper<WarehouseTrayGoodsEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("association_value",orderCode);
queryWrapper.eq("association_type",1);
queryWrapper.eq("warehouse_id",warehouseId);
return warehouseTrayGoodsService.list(queryWrapper);
}
}

43
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/feign/WarehouseUpdownStockupAreaClient.java

@ -0,0 +1,43 @@
package com.logpm.warehouse.feign;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.logpm.warehouse.entity.WarehouseTrayGoodsEntity;
import com.logpm.warehouse.service.IWarehouseTrayGoodsService;
import com.logpm.warehouse.service.IWarehouseTrayTypeService;
import com.logpm.warehouse.service.IWarehouseUpdownStockupAreaService;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore;
import java.util.List;
import java.util.Map;
@ApiIgnore()
@RestController
@AllArgsConstructor
@Slf4j
public class WarehouseUpdownStockupAreaClient implements IWarehouseUpdownStockUpAreaClient {
private IWarehouseUpdownStockupAreaService warehouseUpdownStockupAreaService;
/**
* 备货库位上架
* @param code 包条码库存品码托盘订单
* @param stockUpAllocationId 备货库位ID
* @param warehouseId 仓库ID
* @param type 类型 1 - 包件完成备货库存品 2 - 零担 3 - 托盘
* @return
*/
@Override
public Boolean upStockUpShelf(String code, Long stockUpAllocationId, Long warehouseId, Integer type,Integer num) {
return warehouseUpdownStockupAreaService.upStockUpShelf(code,stockUpAllocationId,warehouseId,type,num);
}
}

85
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/IWarehouseUpdownStockupAreaService.java

@ -18,6 +18,7 @@ package com.logpm.warehouse.service;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.basicdata.entity.BasicdataGoodsAllocationEntity;
import com.logpm.distribution.entity.DistributionParcelListEntity;
import com.logpm.distribution.vo.UpDownStockupAreaVO;
import com.logpm.warehouse.dto.UpShelfPackageDTO;
@ -43,88 +44,16 @@ import java.util.Map;
*/
public interface IWarehouseUpdownStockupAreaService extends BaseService<WarehouseUpdownStockupAreaEntity> {
/**
* 上架备货库位扫描接口
* @param warehouseId
* @param orderPackageCode
* @return
*/
UpDownStockupAreaVO upShelfScanPackage(Long warehouseId, String orderPackageCode);
/**
* 备货库位上架数据保存
* @param upStockupAreaPackageDTOS
* @param allocationId
* @param id
* @return
*/
R upStockupAreaPackage(List<UpStockupAreaPackageDTO> upStockupAreaPackageDTOS, Long allocationId, Long id);
/**
* 备货库位扫描
* @param allocationId
* @param warehouseId
* @return
*/
UpShelfAllocationVO upShelfScanAllocation(Long allocationId, Long warehouseId);
/**
* 查询备货库位数据
* @param id
* @param allocationId
* @return
*/
R upShelfPackageData(Long warehouseId, Long allocationId);
/**
* 物料查询接口
* @param stockType
* @param value
* @param marketId
* @param id
* @return
*/
List<UpdownStockVO> getStockByParam(Integer stockType, String value, Long marketId, Long id);
/**
* 库存品上架
* @param upShelfStockList
* @param allocationId
* 备货库位上架
* @param code
* @param stockUpAllocationId
* @param warehouseId
* @param type
* @return
*/
R upShelfStockList(List<UpShelfStockDTO> upShelfStockList, Long allocationId, Long warehouseId);
/**
* 扫描零担订单
* @param zeroStockArticleCode
* @return
*/
R scanZeroStockArticle(String zeroStockArticleCode,Long warehouseId);
/**
* 零担订单进行备货区库位上架
* @param upShelfZeroOrderDTOS
* @param allocationId
* @param id
* @return
*/
R upShelfZeroOrder(List<UpShelfZeroOrderDTO> upShelfZeroOrderDTOS, Long allocationId, Long id);
Boolean upStockUpShelf(String code, Long stockUpAllocationId, Long warehouseId, Integer type,Integer num);
/**
* 零担订单备货库位上架
* @param upShelfZeroOrderList
* @param allocationId
* @param id
* @return
*/
R upShelfZeroStockeArticle(List<UpShelfZeroOrderDTO> upShelfZeroOrderList, Long allocationId, Long id);
/**
* 扫毛
* @param id
* @param trayCode
* @return
*/
R upShelfScanTray(Long id, String trayCode);
BasicdataGoodsAllocationEntity upShelfScanAllocation(Long allocationId, Long warehouseId);
}

809
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseUpdownStockupAreaServiceImpl.java

@ -16,6 +16,7 @@
*/
package com.logpm.warehouse.service.impl;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.logpm.basicdata.entity.*;
@ -102,731 +103,131 @@ public class WarehouseUpdownStockupAreaServiceImpl extends BaseServiceImpl<Wareh
private final IWarehouseTaryAllocationService warehouseTaryAllocationService;
/**
* @param code
* @param stockUpAllocationId
* @param warehouseId
* @param orderPackageCode
* @param type
* @return
*/
@Override
public UpDownStockupAreaVO upShelfScanPackage(Long warehouseId, String orderPackageCode) {
String method = "###############WarehouseUpdownStockupAreaServiceImpl.upShelfScanPackage,";
//这里有可能会查询出订制品包件和有数据的库存品包件
DistributionParcelListEntity parcelListEntity = parcelListClient.findByPacketBarCodeAndWarehouseId( orderPackageCode,warehouseId);
if (Func.isNotEmpty(parcelListEntity)){
DistributionStockArticleEntity entityByStockArticleId = distributionStockArticleClient.findEntityByStockArticleId(parcelListEntity.getStockArticleId());
UpDownStockupAreaVO stockupAreaVo = Func.copy(parcelListEntity, UpDownStockupAreaVO.class);
stockupAreaVo.setIsMay(1);
if (Func.isNotEmpty(parcelListEntity.getMallId())){
stockupAreaVo.setMarketId(parcelListEntity.getMallId());
}
if (Func.isNotEmpty(parcelListEntity.getMallName())){
stockupAreaVo.setMarketName(parcelListEntity.getMallName());
}
if (!OrderPackageStatusConstant.yiruku.getValue().equals(parcelListEntity.getOrderPackageStatus())){
stockupAreaVo.setIsMay(0);
}
stockupAreaVo.setGoodsType("1");
stockupAreaVo.setOrderId(parcelListEntity.getStockArticleId());
stockupAreaVo.setAssociationId(parcelListEntity.getId());
stockupAreaVo.setAssociationValue(parcelListEntity.getOrderPackageCode());
stockupAreaVo.setNum(parcelListEntity.getQuantity());
stockupAreaVo.setMarketId(entityByStockArticleId.getMallId());
stockupAreaVo.setMarketName(entityByStockArticleId.getMallName());
if (1==parcelListEntity.getConditions()){
stockupAreaVo.setAssociationType("2");
}else {
stockupAreaVo.setAssociationType("3");
stockupAreaVo.setIncomingBatch(parcelListEntity.getOrderCode());
stockupAreaVo.setMaterielCode(parcelListEntity.getMaterialCode());
stockupAreaVo.setMaterielName(parcelListEntity.getMaterialName());
}
return stockupAreaVo;
}
if (Func.isEmpty(parcelListEntity)){
//查询无数据已备货库存品包件
UpDownStockupAreaVO stockupAreaVo =disStockListDetailClient.findByPacketBarCodeAndWarehouseId(warehouseId,orderPackageCode);
//按照无数据进行上架数据整理
if (Func.isNotEmpty(stockupAreaVo)){
return stockupAreaVo;
}
}
log.warn(method+"未查询到数据");
return null;
}
/**
* @param upStockupAreaPackageDTOS
* @param allocationId
* @param warehouseId
* @return
*/
@Override
@Transactional
public R upStockupAreaPackage(List<UpStockupAreaPackageDTO> upStockupAreaPackageDTOS, Long allocationId, Long warehouseId) {
String method = "###############WarehouseUpdownStockupAreaServiceImpl.upStockupAreaPackage,";
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId);
if(Objects.isNull(goodsAllocationEntity)){
log.warn("##############upShelfPackage: 库位不存在 allocationId={}",allocationId);
return R.fail(403,"库位不存在");
}
String enableStatus = goodsAllocationEntity.getEnableStatus();
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId();
if("2".equals(enableStatus)){
log.warn("##############upShelfPackage: 库位已被禁用 allocationId={}",allocationId);
return R.fail(403,"库位已被禁用");
}
BasicdataGoodsShelfEntity goodsShelfEntity = basicdataGoodsShelfClient.getEntityByGoodsShelfId(goodsShelfId);
if(Objects.isNull(goodsShelfEntity)){
log.warn("##############upShelfPackage: 货架不存在 goodsShelfId={}",goodsShelfId);
return R.fail(403,"货架不存在");
}
Long goodsAreaId = goodsShelfEntity.getGoodsAreaId();
BasicdataGoodsAreaEntity goodsAreaEntity = basicdataGoodsAreaClient.getEntityByGoodsAreaId(goodsAreaId);
if(Objects.isNull(goodsAreaEntity)){
log.warn("##############upShelfPackage: 货区不存在 goodsAreaId={}",goodsAreaId);
return R.fail(403,"货区不存在");
}
String areaType = goodsAreaEntity.getAreaType();
if(!"1".equals(areaType)){
log.warn("#################upShelfPackage: 备货区不能上下架 goodsAreaId={}",goodsAreaId);
throw new CustomerException(403,"请扫描备货库位");
}
Long wid = goodsAreaEntity.getWarehouseId();
BasicdataWarehouseEntity warehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(wid);
if(Objects.isNull(warehouseEntity)){
log.warn("##############upShelfPackage: 仓库不存在 warehouseId={}",wid);
return R.fail(403,"仓库不存在");
}
if(!wid.equals(warehouseId)){
log.warn("##############upShelfPackage: 库位不属于本仓库 wid={}",wid);
return R.fail(403,"库位不属于本仓库");
}
List<UpShelfPackageDTO> waitUpShelfPackageDTO = new ArrayList<>();
List<WarehouseUpdownStockupAreaEntity> waitSaveWarehouseUpdownStockupAreaEntity = new ArrayList<>();
List<WarehouseUpdownStockupAreaLogEntity> waitSaveWarehouseUpdownStockupAreaLogEntity = new ArrayList<>();
for (UpStockupAreaPackageDTO upStockupAreaPackageDTO : upStockupAreaPackageDTOS) {
if ("1".equals(upStockupAreaPackageDTO.getGoodsType())){
//查询是否存在上架操作
WarehouseUpdownGoodsEntity updownGoodsEntity = warehouseUpdownGoodsService.getOne(Wrappers.<WarehouseUpdownGoodsEntity>query().lambda()
.eq(WarehouseUpdownGoodsEntity::getWarehouseId, warehouseId)
.eq(WarehouseUpdownGoodsEntity::getAssociationValue, upStockupAreaPackageDTO.getAssociationValue())
public Boolean upStockUpShelf(String code, Long stockUpAllocationId, Long warehouseId, Integer type,Integer num) {
String method = "######################WarehouseUpdownStockupAreaServiceImpl.upStockUpShelf";
//查询备货库位
BasicdataGoodsAllocationEntity allocationEntity = basicdataGoodsAllocationClient.findStockUpAllocationById(warehouseId,stockUpAllocationId);
if (Func.isEmpty(allocationEntity)){
log.error(method+ "备货库位不存在");
return false;
}
WarehouseUpdownStockupAreaEntity warehouseUpdownStockupArea = new WarehouseUpdownStockupAreaEntity();
warehouseUpdownStockupArea.setWarehouseId(warehouseId);
warehouseUpdownStockupArea.setUpdownType("1");
warehouseUpdownStockupArea.setAreaId(allocationEntity.getGoodsAreaId());
warehouseUpdownStockupArea.setAreaTitle(allocationEntity.getGoodsAllocationName());
warehouseUpdownStockupArea.setShelfId(allocationEntity.getGoodsShelfId());
warehouseUpdownStockupArea.setAllocationId(allocationEntity.getId());
warehouseUpdownStockupArea.setAllocationTitle(allocationEntity.getGoodsAllocationName());
warehouseUpdownStockupArea.setPositionCode(allocationEntity.getQrCode());
switch (type) {
case 1:
//包条
DistributionParcelListEntity parcelListEntity = parcelListClient.findByPacketBarCodeAndWarehouseId(code, warehouseId);
if (Func.isEmpty(parcelListEntity)){
//查询订制品包件
log.error(method+"订制品包件查询失败");
return false;
}
//查询订单
DistributionStockArticleEntity entityByStockArticleId = distributionStockArticleClient.findEntityByStockArticleId(parcelListEntity.getStockArticleId());
warehouseUpdownStockupArea.setAssociationValue(parcelListEntity.getOrderPackageCode());
warehouseUpdownStockupArea.setAssociationId(parcelListEntity.getId());
warehouseUpdownStockupArea.setAssociationType("2");
warehouseUpdownStockupArea.setNum(parcelListEntity.getQuantity());
warehouseUpdownStockupArea.setMarketName(entityByStockArticleId.getMallName());
warehouseUpdownStockupArea.setMarketId(entityByStockArticleId.getMallId());
warehouseUpdownStockupArea.setGoodsType("1");
this.save(warehouseUpdownStockupArea);
break;
case 2:
UpDownStockupAreaVO byPacketBarCodeAndWarehouseId = disStockListDetailClient.findByPacketBarCodeAndWarehouseId(warehouseId, code);
warehouseUpdownStockupArea.setAssociationValue(byPacketBarCodeAndWarehouseId.getAssociationValue());
warehouseUpdownStockupArea.setAssociationId(byPacketBarCodeAndWarehouseId.getAssociationId());
warehouseUpdownStockupArea.setAssociationType("2");
warehouseUpdownStockupArea.setNum(byPacketBarCodeAndWarehouseId.getNum());
warehouseUpdownStockupArea.setGoodsName(byPacketBarCodeAndWarehouseId.getGoodsName());
warehouseUpdownStockupArea.setMarketName(byPacketBarCodeAndWarehouseId.getMarketName());
warehouseUpdownStockupArea.setMarketId(byPacketBarCodeAndWarehouseId.getMarketId());
warehouseUpdownStockupArea.setIncomingBatch(byPacketBarCodeAndWarehouseId.getIncomingBatch());
warehouseUpdownStockupArea.setMaterielCode(byPacketBarCodeAndWarehouseId.getMaterielCode());
warehouseUpdownStockupArea.setMaterielName(byPacketBarCodeAndWarehouseId.getMaterielName());
warehouseUpdownStockupArea.setGoodsType("2");
this.save(warehouseUpdownStockupArea);
//库存品
break;
case 3:
//查询是否存在有上架数据
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(code, warehouseId);
WarehouseUpdownStockupAreaEntity updownStockupAreaEntity = this.getOne(Wrappers.<WarehouseUpdownStockupAreaEntity>query().lambda()
.eq(WarehouseUpdownStockupAreaEntity::getWarehouseId, warehouseId)
.eq(WarehouseUpdownStockupAreaEntity::getAssociationId, stockArticleEntity.getId())
.eq(WarehouseUpdownStockupAreaEntity::getAssociationValue, stockArticleEntity.getOrderCode())
.eq(WarehouseUpdownStockupAreaEntity::getAssociationValue, "3")
);
if (!Objects.isNull(updownGoodsEntity)){
//进行下架解托操作
UpShelfPackageDTO upShelfPackageDTO = new UpShelfPackageDTO();
upShelfPackageDTO.setOrderPackageCode(updownGoodsEntity.getAssociationValue());
waitUpShelfPackageDTO.add(upShelfPackageDTO);
if (Func.isEmpty(updownStockupAreaEntity)){
warehouseUpdownStockupArea.setAssociationValue(stockArticleEntity.getOrderCode());
warehouseUpdownStockupArea.setAssociationId(stockArticleEntity.getId());
warehouseUpdownStockupArea.setAssociationType("2");
warehouseUpdownStockupArea.setNum(num);
warehouseUpdownStockupArea.setGoodsName(stockArticleEntity.getDescriptionGoods());
warehouseUpdownStockupArea.setMarketName(stockArticleEntity.getMallName());
warehouseUpdownStockupArea.setMarketId(stockArticleEntity.getMallId());
warehouseUpdownStockupArea.setGoodsType("2");
this.save(warehouseUpdownStockupArea);
}else {
int newNum = updownStockupAreaEntity.getNum() + num;
updownStockupAreaEntity.setNum(newNum);
this.updateById(updownStockupAreaEntity);
}
}
//查询是否已经进行上架了 如果进行上架了则不需要进行重复添加
WarehouseUpdownStockupAreaEntity isHave = this.getOne(Wrappers.<WarehouseUpdownStockupAreaEntity>query().lambda()
.eq(WarehouseUpdownStockupAreaEntity::getWarehouseId, warehouseId)
.eq(WarehouseUpdownStockupAreaEntity::getAssociationValue, upStockupAreaPackageDTO.getAssociationValue())
.eq(WarehouseUpdownStockupAreaEntity::getAssociationType, upStockupAreaPackageDTO.getAssociationType())
.eq(WarehouseUpdownStockupAreaEntity::getAssociationId, upStockupAreaPackageDTO.getAssociationId())
.eq(WarehouseUpdownStockupAreaEntity::getGoodsType, upStockupAreaPackageDTO.getGoodsType())
);
if (Objects.isNull(isHave)){
WarehouseUpdownStockupAreaEntity updownStockupAreaEntity = BeanUtil.copy(upStockupAreaPackageDTO, WarehouseUpdownStockupAreaEntity.class);
updownStockupAreaEntity.setAreaTitle(goodsAreaEntity.getHeadline());
updownStockupAreaEntity.setAreaId(goodsAreaEntity.getId());
updownStockupAreaEntity.setShelfId(goodsShelfEntity.getId());
updownStockupAreaEntity.setShelfTitle(goodsShelfEntity.getGoodsShelfName());
updownStockupAreaEntity.setAllocationId(goodsAllocationEntity.getId());
updownStockupAreaEntity.setAllocationTitle(goodsAllocationEntity.getGoodsAllocationName());
updownStockupAreaEntity.setPositionCode(goodsAllocationEntity.getQrCode());
updownStockupAreaEntity.setWarehouseId(warehouseId);
updownStockupAreaEntity.setUpdownType("包条");
waitSaveWarehouseUpdownStockupAreaEntity.add(updownStockupAreaEntity);
WarehouseUpdownStockupAreaLogEntity warehouseUpdownStockupAreaLogEntity = BeanUtil.copy(updownStockupAreaEntity, WarehouseUpdownStockupAreaLogEntity.class);
warehouseUpdownStockupAreaLogEntity.setRemark("扫描上架:包条上架");
warehouseUpdownStockupAreaLogEntity.setBindingType(1);
waitSaveWarehouseUpdownStockupAreaLogEntity.add(warehouseUpdownStockupAreaLogEntity);
}else {
return Resp.scanFail("包件已上架","包件已上架");
}
//查询是否进行了上架,如果进行了上架需要进行对原库位进行下架,
}
if (Func.isNotEmpty(waitUpShelfPackageDTO)){
//存在需要进行下架操作的包件
R r = warehouseUpdownTypeService.downPackageOrDelTray(waitUpShelfPackageDTO, warehouseId,"备货下架解托");
if (200 !=r.getCode()){
//进行异常保证事务回滚
log.warn(method+"执行下架失败");
throw new RuntimeException("执行下架失败");
}
}
if (!waitSaveWarehouseUpdownStockupAreaLogEntity.isEmpty()){
warehouseUpdownStockupAreaLogService.saveBatch(waitSaveWarehouseUpdownStockupAreaLogEntity);
}
return R.status(this.saveBatch(waitSaveWarehouseUpdownStockupAreaEntity));
}
/**
* @param allocationId
* @param warehouseId
* @return
*/
@Override
public UpShelfAllocationVO upShelfScanAllocation(Long allocationId, Long warehouseId) {
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId);
if(Objects.isNull(goodsAllocationEntity)){
log.warn("#############upShelfScanAllocation: 库位信息不存在 allocationId={}",allocationId);
throw new CustomerException(403,"库位信息不存在");
}
String goodsAllocationName = goodsAllocationEntity.getGoodsAllocationName();
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId();
BasicdataGoodsShelfEntity basicdataGoodsShelfEntity = basicdataGoodsShelfClient.getEntityByGoodsShelfId(goodsShelfId);
if(Objects.isNull(basicdataGoodsShelfEntity)){
log.warn("#################upShelfScanAllocation: 货架信息不存在 goodsShelfId={}",goodsShelfId);
throw new CustomerException(403,"货架信息不存在");
}
String goodsShelfName = basicdataGoodsShelfEntity.getGoodsShelfName();
Long goodsAreaId = basicdataGoodsShelfEntity.getGoodsAreaId();//货区id
BasicdataGoodsAreaEntity basicdataGoodsAreaEntity = basicdataGoodsAreaClient.getEntityByGoodsAreaId(goodsAreaId);
if(Objects.isNull(basicdataGoodsAreaEntity)){
log.warn("#################upShelfScanAllocation: 货区信息不存在 goodsAreaId={}",goodsAreaId);
throw new CustomerException(403,"货区信息不存在");
}
String areaType = basicdataGoodsAreaEntity.getAreaType();
if(!"1".equals(areaType)){
log.warn("#################upShelfScanAllocation: 备货区不能上下架 goodsAreaId={}",goodsAreaId);
throw new CustomerException(403,"请扫描备货库位");
}
Long wid = basicdataGoodsAreaEntity.getWarehouseId();
String goodsAreaName = basicdataGoodsAreaEntity.getHeadline();//货区名称
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(wid);
if(Objects.isNull(basicdataWarehouseEntity)){
log.warn("#################upShelfScanAllocation: 仓库信息不存在 wid={}",wid);
throw new CustomerException(403,"仓库信息不存在");
}
if(!wid.equals(warehouseId)){
log.warn("#################upShelfScanAllocation: 库位不在当前仓");
throw new CustomerException(403,"库位不在当前仓");
}
String warehouseName = basicdataWarehouseEntity.getName();//仓库名称
UpShelfAllocationVO upShelfAllocationVO = new UpShelfAllocationVO();
upShelfAllocationVO.setWarehouseId(warehouseId);
upShelfAllocationVO.setWarehouseName(warehouseName);
upShelfAllocationVO.setAreaId(goodsAreaId);
upShelfAllocationVO.setAreaTitle(goodsAreaName);
upShelfAllocationVO.setShelfId(goodsShelfId);
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);
}
//查询无数据零担订单信息
List<WarehouseUpdownStockupAreaEntity> notSourceOrderData = warehouseUpdownStockupAreaEntities.stream().filter(f -> "2".equals(f.getGoodsType())&& "1".equals(f.getAssociationType())).collect(Collectors.toList());
if (Func.isNotEmpty(notSourceOrderData)){
List<Map<String,Object>> zeroStockArticleMap = baseMapper.selectStockUpAreaZeroStockArticle(warehouseId,allocationId);
maps.addAll(zeroStockArticleMap);
}
}
return R.data(maps);
}
/**
* @param stockType
* @param value
* @param marketId
* @param warehouseId
* @return
*/
@Override
public List<UpdownStockVO> 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);
//订单
break;
case 4:
//托盘
//查询托盘
QueryWrapper<WarehouseTrayTypeEntity> trayTypeEntityQueryWrapper = new QueryWrapper<>();
trayTypeEntityQueryWrapper.eq("tray_code",code)
.eq("is_deleted",0);
WarehouseTrayTypeEntity trayTypeEntity = warehouseTrayTypeService.getOne(trayTypeEntityQueryWrapper);
if (Func.isEmpty(trayTypeEntity)){
warehouseUpdownStockupArea.setAssociationValue(trayTypeEntity.getTrayCode());
warehouseUpdownStockupArea.setAssociationId(trayTypeEntity.getTrayId());
warehouseUpdownStockupArea.setAssociationType("4");
warehouseUpdownStockupArea.setNum(trayTypeEntity.getOrderTotalNum());
}
}
}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 ls;
}
this.save(warehouseUpdownStockupArea);
/**
* @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,"库位不存在");
break;
default:
log.error(method+ "未知type:{}",type);
return false;
}
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+"件");
}
/**
* @param zeroStockArticleCode
* @return
*/
@Override
public R scanZeroStockArticle(String zeroStockArticleCode,Long warehouseId) {
String method = "####################WarehouseUpdownStockupAreaServiceImpl.scanZeroStockArticle";
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(zeroStockArticleCode,warehouseId);
if (Func.isEmpty(stockArticleEntity)){
log.error(method+"查询订单失败");
return R.fail("请扫描正确订单");
}
if (stockArticleEntity.getIsZero().equals(IsOrNoConstant.no.getValue())){
log.error(method+"此订单不是零担类型");
return R.fail("此订单不是零担类型,请扫描包条进行上架");
}
//满足条件的零担订单,这里需要进行零担信息整理后返回
UpDownStockupAreaVO upDownStockupZeroByOrderCodeAndWarehouseId = distributionStockArticleClient.findUpDownStockupZeroByOrderCodeAndWarehouseId(zeroStockArticleCode, warehouseId);
if (Func.isEmpty(upDownStockupZeroByOrderCodeAndWarehouseId)){
log.error(method+"查询零担订单失败");
return R.fail("请扫描正确订单");
}
//查询该零担订单是否具备有在备货库位上架的条件
Integer a = warehouseTrayTypeService.getZeroOrderByOrderId(upDownStockupZeroByOrderCodeAndWarehouseId.getOrderId(),warehouseId);
if (a > 0){
return R.data(upDownStockupZeroByOrderCodeAndWarehouseId);
}else if (a == 0){
return R.fail(403,"请先对该订单进行下架操作");
}else {
log.error(method+"此订单数量异常");
return R.fail(403,"数据异常");
}
WarehouseUpdownStockupAreaLogEntity warehouseUpdownStockupAreaLogEntity = Func.copy(warehouseUpdownStockupArea, WarehouseUpdownStockupAreaLogEntity.class);
warehouseUpdownStockupAreaLogEntity.setBindingType(1);
warehouseUpdownStockupAreaLogEntity.setNum(num);
warehouseUpdownStockupAreaLogService.save(warehouseUpdownStockupAreaLogEntity);
}
/**
* @param upShelfZeroOrderDTOS
* @param allocationId
* @param id
* @return
*/
@Override
public R upShelfZeroOrder(List<UpShelfZeroOrderDTO> upShelfZeroOrderDTOS, Long allocationId, Long id) {
//这里目前的上架方式仅仅是进行订单自编码的上架方式和托盘暂时没有绑定关系
//这里进行上架需要进行上架
return null;
}
/**
* @param upShelfZeroOrderList
* @param allocationId
* @return
*/
@Override
public R upShelfZeroStockeArticle(List<UpShelfZeroOrderDTO> upShelfZeroOrderList, Long allocationId, Long warehouseId) {
String collected = upShelfZeroOrderList.stream().filter(f -> f.getEnterNum() <= 0).map(UpShelfZeroOrderDTO::getOrderCode).collect(Collectors.joining(","));
if (Func.isNotBlank(collected)){
return Resp.scanFail(collected+"请输入正确的上架数量" , "请输入正确的上架数量, 物料编码为");
}
List<UpShelfZeroOrderDTO> upShelfZeroOrderDTOS = upShelfZeroOrderList;
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,"库位不在本仓库中");
}
List<WarehouseUpdownStockupAreaEntity> warehouseUpdownStockupAreaEntities = new ArrayList<>();
List<WarehouseUpdownStockupAreaLogEntity> warehouseUpdownStockupAreaLogEntities = new ArrayList<>();
QueryWrapper<WarehouseUpdownStockupAreaEntity> updownTypeQueryWrapper = new QueryWrapper<>();
updownTypeQueryWrapper
.eq("allocation_id",allocationId)
.eq("shelf_id",goodsShelfId)
.eq("area_id",goodsAreaId)
.eq("is_deleted",0);
for (UpShelfZeroOrderDTO upShelfZeroOrderDTO : upShelfZeroOrderDTOS) {
updownTypeQueryWrapper.eq("association_value",upShelfZeroOrderDTO.getAssociationValue());
updownTypeQueryWrapper.eq("association_type",upShelfZeroOrderDTO.getAssociationType());
updownTypeQueryWrapper.eq("association_id",upShelfZeroOrderDTO.getAssociationId());
updownTypeQueryWrapper.eq("goods_type",upShelfZeroOrderDTO.getGoodsType());
WarehouseUpdownStockupAreaEntity updownStockupAreaEntity = this.getOne(updownTypeQueryWrapper);
if (Func.isNotEmpty(updownStockupAreaEntity)){
//备货库位上数量增加
//存在,需要进行新的上架数量维护
int updateNum = updownStockupAreaEntity.getNum() + upShelfZeroOrderDTO.getEnterNum();
updownStockupAreaEntity.setNum(updateNum);
this.updateById(updownStockupAreaEntity);
WarehouseUpdownStockupAreaLogEntity warehouseUpdownStockupAreaLogEntity = Func.copy(updownStockupAreaEntity, WarehouseUpdownStockupAreaLogEntity.class);
warehouseUpdownStockupAreaLogEntity.setBindingType(1);
warehouseUpdownStockupAreaLogEntity.setId(null);
warehouseUpdownStockupAreaLogEntity.setNum(upShelfZeroOrderDTO.getEnterNum());
warehouseUpdownStockupAreaLogEntities.add(warehouseUpdownStockupAreaLogEntity);
}else {
//在该备货库位上第一次进行上架操作
WarehouseUpdownStockupAreaEntity warehouseUpdownStockupArea = createdNewUpShelfZeroOrder(allocationId, warehouseId, upShelfZeroOrderDTO, goodsAreaId, goodsAreaEntity, goodsShelfId, goodsShelfEntity, goodsAllocationEntity);
warehouseUpdownStockupAreaEntities.add(warehouseUpdownStockupArea);
WarehouseUpdownStockupAreaLogEntity warehouseUpdownStockupAreaLogEntity = Func.copy(warehouseUpdownStockupArea, WarehouseUpdownStockupAreaLogEntity.class);
warehouseUpdownStockupAreaLogEntity.setBindingType(1);
warehouseUpdownStockupAreaLogEntities.add(warehouseUpdownStockupAreaLogEntity);
}
}
warehouseUpdownStockupAreaLogService.saveBatch(warehouseUpdownStockupAreaLogEntities);
return R.status(this.saveBatch(warehouseUpdownStockupAreaEntities));
}
/**
* @param warehouseId
* @param trayCode
* @return
*/
@Override
@Transactional
public R upShelfScanTray(Long warehouseId, String trayCode) {
List<WarehouseTrayGoodsEntity> entityList = warehouseTrayGoodsService.list(Wrappers.<WarehouseTrayGoodsEntity>query().lambda()
.eq(WarehouseTrayGoodsEntity::getTrayCode, trayCode)
.eq(WarehouseTrayGoodsEntity::getWarehouseId, warehouseId)
);
Map<String,Object> map = new HashMap<>();
TrayTypeDataVO trayData = warehouseTrayTypeService.getEntityByTrayCode(trayCode,warehouseId);
if(!Objects.isNull(trayData)){
map.put("trayData",trayData);
}
if (!entityList.isEmpty()){
//存在托盘,进行托盘货物查询
Map<String, List<WarehouseTrayGoodsEntity>> collect = entityList.stream().filter(f -> Func.isNotEmpty(f.getAssociationType())).collect(Collectors.groupingBy(WarehouseTrayGoodsEntity::getAssociationType));
if (!collect.isEmpty()){
collect.forEach((k,v)->{
switch (k){
case "1":
//零担
List<UpDownStockupAreaVO> zeroOrder = handelZeroOrder(v,warehouseId);
if (!zeroOrder.isEmpty()){
map.put("zeroOrder",zeroOrder);
}
break;
case "2":
//运单号
break;
case "3":
//包件
//组装包件数据进行上架
List<UpDownStockupAreaVO> packageData = handelPackage(v,warehouseId);
if (!packageData.isEmpty()){
map.put("packageData",packageData);
}
break;
case "4":
//库存品
List<UpdownStockVO> inventoryData =handelInventory(v,warehouseId);
if (!inventoryData.isEmpty()){
map.put("inventoryData",inventoryData);
}
break;
default:
log.info("##################未知打托方式,k:{}",k);
break;
}
});
}
}
return R.data(map);
}
private List<UpDownStockupAreaVO> handelZeroOrder(List<WarehouseTrayGoodsEntity> zeroOrderGoods, Long warehouseId) {
List<UpDownStockupAreaVO> zeroOrderData = new ArrayList<>();
for (WarehouseTrayGoodsEntity zeroOrderGood : zeroOrderGoods) {
UpDownStockupAreaVO upDownStockupZeroByOrderCodeAndWarehouseId = distributionStockArticleClient.findUpDownStockupZeroByOrderCodeAndWarehouseId(zeroOrderGood.getAssociationValue(), warehouseId);
if (Func.isNotEmpty(upDownStockupZeroByOrderCodeAndWarehouseId)){
Integer a = warehouseTrayTypeService.getZeroOrderByOrderId(upDownStockupZeroByOrderCodeAndWarehouseId.getOrderId(),warehouseId);
if (a> 0) {
zeroOrderData.add(upDownStockupZeroByOrderCodeAndWarehouseId);
}
}
}
return zeroOrderData;
}
private List<UpdownStockVO> handelInventory(List<WarehouseTrayGoodsEntity> inventoryGoods, Long warehouseId) {
List<UpdownStockVO> inventoryData = new ArrayList<>();
for (WarehouseTrayGoodsEntity warehouseTrayGoodsEntity : inventoryGoods) {
List<UpdownStockVO> stockByParam = this.getStockByParam(1, warehouseTrayGoodsEntity.getAssociationValue(), warehouseTrayGoodsEntity.getMarketId(), warehouseId);
if (!stockByParam.isEmpty()){
inventoryData.addAll(stockByParam);
}
}
return inventoryData;
}
private List<UpDownStockupAreaVO> handelPackage(List<WarehouseTrayGoodsEntity> packageGoods,Long warehouseId) {
List<UpDownStockupAreaVO> packageData = new ArrayList<>();
for (WarehouseTrayGoodsEntity packageGood : packageGoods) {
UpDownStockupAreaVO upDownStockupAreaVO = this.upShelfScanPackage(warehouseId, packageGood.getAssociationValue());
if (Func.isNotEmpty(upDownStockupAreaVO)){
packageData.add(upDownStockupAreaVO);
}
}
return packageData;
}
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("2");
updownStockupAreaEntity.setNum(upShelfStockDTO.getEnterNum());
updownStockupAreaEntity.setMarketId(upShelfStockDTO.getMarketId());
updownStockupAreaEntity.setMaterielCode(upShelfStockDTO.getMaterialCode());
updownStockupAreaEntity.setMaterielName(upShelfStockDTO.getMaterialName());
return updownStockupAreaEntity;
}
private WarehouseUpdownStockupAreaEntity createdNewUpShelfZeroOrder(Long allocationId, Long warehouseId,UpShelfZeroOrderDTO upShelfZeroOrderDTO, 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(upShelfZeroOrderDTO.getAssociationValue());
updownStockupAreaEntity.setAssociationId(Long.parseLong(upShelfZeroOrderDTO.getAssociationId()));
updownStockupAreaEntity.setAssociationType("1");
updownStockupAreaEntity.setUpdownType("订单");
updownStockupAreaEntity.setGoodsType("2");
updownStockupAreaEntity.setGoodsName(upShelfZeroOrderDTO.getGoodsName());
updownStockupAreaEntity.setNum(upShelfZeroOrderDTO.getEnterNum());
updownStockupAreaEntity.setMarketId(Long.parseLong(upShelfZeroOrderDTO.getMarketId()));
updownStockupAreaEntity.setMarketName(upShelfZeroOrderDTO.getMarketName());
return updownStockupAreaEntity;
}
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;
public BasicdataGoodsAllocationEntity upShelfScanAllocation(Long allocationId, Long warehouseId) {
BasicdataGoodsAllocationEntity stockUpAllocationById = basicdataGoodsAllocationClient.findStockUpAllocationById(warehouseId, allocationId);
return stockUpAllocationById;
}
}

Loading…
Cancel
Save