|
|
|
@ -64,6 +64,8 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.logging.log4j.util.Strings; |
|
|
|
|
import org.springblade.common.constant.DictBizConstant; |
|
|
|
|
import org.springblade.common.constant.WorkNodeEnums; |
|
|
|
|
import org.springblade.common.constant.orderpackage.OrderPackageLoadingStatusConstant; |
|
|
|
|
import org.springblade.common.constant.orderpackage.OrderPackageStatusConstant; |
|
|
|
|
import org.springblade.common.constant.orderpackage.OrderPackageStockupStatusConstant; |
|
|
|
|
import org.springblade.common.constant.printTemplate.PrintTemplateStatusConstant; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
@ -567,7 +569,33 @@ public class DistributionStockListServiceImpl extends BaseServiceImpl<Distributi
|
|
|
|
|
one.setUnpackingQuantity(one.getUnpackingQuantity() + distributionStockListDTO.getUnpackingQuantity()); |
|
|
|
|
one.setUnpack(true); |
|
|
|
|
one.setOutboundQuantity(one.getOutboundQuantity() + distributionStockListDTO.getUnpackingQuantity()); |
|
|
|
|
|
|
|
|
|
int num = one.getQuantityStock() - distributionStockListDTO.getUnpackingQuantity(); |
|
|
|
|
if (one.getSourceType().equals("1")){ |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = distributionParcelListService.list(Wrappers.<DistributionParcelListEntity>query().lambda() |
|
|
|
|
.eq(DistributionParcelListEntity::getWarehouseId, one.getWarehouseId()) |
|
|
|
|
.eq(DistributionParcelListEntity::getOrderCode, one.getIncomingBatch()) |
|
|
|
|
.eq(DistributionParcelListEntity::getConditions, 2) |
|
|
|
|
.eq(DistributionParcelListEntity::getIsTransfer, 0) |
|
|
|
|
.orderByDesc(DistributionParcelListEntity::getCreateTime) |
|
|
|
|
); |
|
|
|
|
if (!parcelListEntities.isEmpty()){ |
|
|
|
|
if (num>parcelListEntities.size()){ |
|
|
|
|
log.error("库存品包件数量不足拆包"); |
|
|
|
|
}else { |
|
|
|
|
List<DistributionParcelListEntity> updateData = new ArrayList<>(); |
|
|
|
|
for (int i = 0; i < num; i++) { |
|
|
|
|
DistributionParcelListEntity parcelListEntity = new DistributionParcelListEntity(); |
|
|
|
|
parcelListEntity.setId(parcelListEntities.get(i).getId()); |
|
|
|
|
parcelListEntity.setOrderPackageLoadingStatus(OrderPackageLoadingStatusConstant.yizhuangche.getValue()); |
|
|
|
|
parcelListEntity.setOrderPackageStatus(OrderPackageStatusConstant.yichuku.getValue()); |
|
|
|
|
updateData.add(parcelListEntity); |
|
|
|
|
} |
|
|
|
|
if (!updateData.isEmpty()) { |
|
|
|
|
distributionParcelListService.updateBatchById(updateData); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.updateById(one); |
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
|
|
|
|
|