|
|
|
@ -18,6 +18,8 @@ package com.logpm.distribution.service.impl;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
@ -42,6 +44,7 @@ import com.logpm.warehouse.entity.WarehouseTrayGoodsEntity;
|
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseTrayGoodsClient; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.constant.DictBizConstant; |
|
|
|
|
import org.springblade.common.constant.orderpackage.OrderPackageStockupStatusConstant; |
|
|
|
|
import org.springblade.common.constant.printTemplate.PrintTemplateStatusConstant; |
|
|
|
|
import org.springblade.common.utils.QRCodeUtil; |
|
|
|
|
import org.springblade.common.utils.TemplateUtil; |
|
|
|
@ -102,6 +105,9 @@ public class DistributionStockListServiceImpl extends BaseServiceImpl<Distributi
|
|
|
|
|
@Autowired |
|
|
|
|
@Lazy |
|
|
|
|
private IDistributionParcelListService distributionParcelListService; |
|
|
|
|
@Autowired |
|
|
|
|
@Lazy |
|
|
|
|
private IDistributionStockArticleService distributionStockArticleService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -879,6 +885,74 @@ public class DistributionStockListServiceImpl extends BaseServiceImpl<Distributi
|
|
|
|
|
this.updateById(stockListEntity); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param distributionStockListDTO |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
@Transactional |
|
|
|
|
public R cancelAddStockListByPackage(DistributionStockListDTO distributionStockListDTO) { |
|
|
|
|
String method = "#######################DistributionStockListServiceImpl.cancelAddStockListByPackage"; |
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if (Func.isEmpty(myCurrentWarehouse)){ |
|
|
|
|
log.error(method+"未授权"); |
|
|
|
|
return R.fail(403,"未授权!!!"); |
|
|
|
|
} |
|
|
|
|
Long stockListId = distributionStockListDTO.getStockListId(); |
|
|
|
|
if (Objects.isNull(stockListId)){ |
|
|
|
|
log.error(method+"stockListId参数缺失!!!"); |
|
|
|
|
return R.fail(403,"操作失败"); |
|
|
|
|
} |
|
|
|
|
String packageIds = distributionStockListDTO.getPackageIds(); |
|
|
|
|
if (Objects.isNull(packageIds)){ |
|
|
|
|
log.error(method+"packageIds参数缺失!!!"); |
|
|
|
|
return R.fail(403,"操作失败"); |
|
|
|
|
} |
|
|
|
|
//这里
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = distributionParcelListService.list(Wrappers.<DistributionParcelListEntity>query().lambda() |
|
|
|
|
.in(DistributionParcelListEntity::getId, Func.toLongList(packageIds)) |
|
|
|
|
.eq(DistributionParcelListEntity::getWarehouseId, myCurrentWarehouse.getId()) |
|
|
|
|
); |
|
|
|
|
String collect = parcelListEntities.stream().filter(f -> OrderPackageStockupStatusConstant.yibeihu.getValue().equals(f.getOrderPackageStockupStatus())).map(DistributionParcelListEntity::getOrderPackageCode).collect(Collectors.joining(",")); |
|
|
|
|
if (Func.isNotBlank(collect)){ |
|
|
|
|
log.error(method+"撤销物料存在包件已备货,collect:{}",collect); |
|
|
|
|
return R.fail(collect+"已备货,无法撤销!!!"); |
|
|
|
|
} |
|
|
|
|
if (Func.isEmpty(parcelListEntities)){ |
|
|
|
|
log.error(method+"查询包件失败,packageIds:{}",packageIds); |
|
|
|
|
return R.fail(403,"操作失败"); |
|
|
|
|
} |
|
|
|
|
List<String> orderCode = parcelListEntities.stream().map(DistributionParcelListEntity::getOrderCode).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(orderCode) || orderCode.size()>1){ |
|
|
|
|
log.error(method+"包件数据错误,orderCode:{}",orderCode); |
|
|
|
|
return R.fail(403,"操作失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
LambdaUpdateWrapper<DistributionParcelListEntity> up = new UpdateWrapper<DistributionParcelListEntity>().lambda() |
|
|
|
|
.set(DistributionParcelListEntity::getConditions, 1) |
|
|
|
|
.set(DistributionParcelListEntity::getMaterialId, null) |
|
|
|
|
.set(DistributionParcelListEntity::getMaterialName, null) |
|
|
|
|
.set(DistributionParcelListEntity::getMaterialCode, null) |
|
|
|
|
.set(DistributionParcelListEntity::getMaterialUnit, null) |
|
|
|
|
.in(DistributionParcelListEntity::getId, packageIds); |
|
|
|
|
//清理包件的物料信息
|
|
|
|
|
boolean update = distributionParcelListService.update(up); |
|
|
|
|
//维护订单信息
|
|
|
|
|
distributionStockArticleService.maintenanceOrderInfo(orderCode.get(0),myCurrentWarehouse.getId()); |
|
|
|
|
//维护库存品信息
|
|
|
|
|
DistributionStockListEntity stockListEntity = this.getById(distributionStockListDTO.getStockListId()); |
|
|
|
|
if ((stockListEntity.getQuantityStock() - parcelListEntities.size()) > 0){ |
|
|
|
|
stockListEntity.setQuantityStock(stockListEntity.getQuantityStock() - parcelListEntities.size()); |
|
|
|
|
this.updateById(stockListEntity); |
|
|
|
|
}else if ((stockListEntity.getQuantityStock() - parcelListEntities.size()) <= 0){ |
|
|
|
|
this.removeById(stockListEntity); |
|
|
|
|
} |
|
|
|
|
//清理库存品入库记录
|
|
|
|
|
distributionStockListInfoService.removeBatchByIds(Func.toLongList(distributionStockListDTO.getStockListInfoIds())); |
|
|
|
|
|
|
|
|
|
return R.success("操作成功"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// @Override
|
|
|
|
|