|
|
|
@ -232,68 +232,75 @@ public class InvProductsTrService {
|
|
|
|
|
List<WarehouseEntity> warehouseEntities = codesService.findByReceiptId(orderEntity.getId());
|
|
|
|
|
List<WarehouseEntity> inList = new ArrayList<>();
|
|
|
|
|
List<WarehouseEntity> preiInList = new ArrayList<>();
|
|
|
|
|
for (WarehouseEntity warehouseEntity : warehouseEntities) {
|
|
|
|
|
/**
|
|
|
|
|
* 如果出库单据需要缺量自动补录入库单据?
|
|
|
|
|
* if(出库单据的当前仓库为1级库,仓库等级=1)
|
|
|
|
|
* {可能需要补录的入库单据有两种:《供应商入库》《寄售转入库》}
|
|
|
|
|
* else(仓库等级>1)
|
|
|
|
|
* {可能需要补录的入库单据有一种:《调拨入库》}
|
|
|
|
|
*/
|
|
|
|
|
InvWarehouseEntity locWarehouseEntity = invWarehouseService.selectByCode(warehouseEntity.getLocStorageCode());
|
|
|
|
|
|
|
|
|
|
if (locWarehouseEntity.getLevel() == 1 && isAdavnce(warehouseEntity)) {//补寄售转入
|
|
|
|
|
|
|
|
|
|
//获取当前条码实际数量
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
|
int count = 0;
|
|
|
|
|
UdiInfoEntity udiInfoEntity = getMinDi(warehouseEntity);
|
|
|
|
|
String code = warehouseEntity.getCode();
|
|
|
|
|
count = actCount * warehouseEntity.getCount();
|
|
|
|
|
//缺量补单时是否全量补单
|
|
|
|
|
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("ullage_supplement_all");
|
|
|
|
|
if (systemParamConfigEntity != null && systemParamConfigEntity.getParamValue().equals("1")) {
|
|
|
|
|
for (WarehouseEntity warehouseEntity : warehouseEntities) {
|
|
|
|
|
inList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
for (WarehouseEntity warehouseEntity : warehouseEntities) {
|
|
|
|
|
/**
|
|
|
|
|
* 《寄售转入库》往来单位:
|
|
|
|
|
* 单据类型的当前仓库(如果当前仓库有设置,则判断该当前仓库是否为1级库并且仓库类型=寄售,如果没设置,那么往来单位自动为默认寄售仓库),当前仓库:出库单据的当前仓库
|
|
|
|
|
* 如果出库单据需要缺量自动补录入库单据?
|
|
|
|
|
* if(出库单据的当前仓库为1级库,仓库等级=1)
|
|
|
|
|
* {可能需要补录的入库单据有两种:《供应商入库》《寄售转入库》}
|
|
|
|
|
* else(仓库等级>1)
|
|
|
|
|
* {可能需要补录的入库单据有一种:《调拨入库》}
|
|
|
|
|
*/
|
|
|
|
|
BussinessTypeEntity bussinessTypeEntity = bussinessTypeService.findBTByAction(advChangeTypeEntity.getScAction());
|
|
|
|
|
InvWarehouseEntity invWarehouseEntity;
|
|
|
|
|
if (!StrUtil.isEmpty(bussinessTypeEntity.getStorageCode())) {
|
|
|
|
|
invWarehouseEntity = invWarehouseService.selectByCode(bussinessTypeEntity.getStorageCode());
|
|
|
|
|
if (!invWarehouseEntity.getAdvanceType() || invWarehouseEntity.getLevel() > 1) {
|
|
|
|
|
//todo 补单失败,当前仓库设置错误
|
|
|
|
|
orderEntity.setRemark("该补录单,单据类型" + bussinessTypeEntity.getName() + "当前仓库设置错误,无法补单");
|
|
|
|
|
orderEntity.setError(true);
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
invWarehouseEntity = invWarehouseService.findDefault(true, true);
|
|
|
|
|
InvWarehouseEntity locWarehouseEntity = invWarehouseService.selectByCode(warehouseEntity.getLocStorageCode());
|
|
|
|
|
|
|
|
|
|
if (locWarehouseEntity.getLevel() == 1 && isAdavnce(warehouseEntity)) {//补寄售转入
|
|
|
|
|
|
|
|
|
|
int invCount = getCountByOrder(null, warehouseEntity);
|
|
|
|
|
warehouseEntity.setFromCorpId(invWarehouseEntity.getCode());
|
|
|
|
|
warehouseEntity.setFromCorp(invWarehouseEntity.getName());
|
|
|
|
|
if (invCount > 0) {//仓库已存在该产品
|
|
|
|
|
if (count > invCount) { //当前数量>结余数量,说明该产品是无序列号或者是多级包装
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(warehouseEntity.getCode());
|
|
|
|
|
if (actCount > invCount) { //该产品实际数量大于结余数量,说明是多级包装,直接补
|
|
|
|
|
preiInList.add(warehouseEntity);
|
|
|
|
|
} else if (udiEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
|
|
|
|
|
int lea = count - invCount;
|
|
|
|
|
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
|
|
|
|
|
preiInList.add(warehouseEntity);
|
|
|
|
|
//获取当前条码实际数量
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
|
int count = 0;
|
|
|
|
|
UdiInfoEntity udiInfoEntity = getMinDi(warehouseEntity);
|
|
|
|
|
String code = warehouseEntity.getCode();
|
|
|
|
|
count = actCount * warehouseEntity.getCount();
|
|
|
|
|
/**
|
|
|
|
|
* 《寄售转入库》往来单位:
|
|
|
|
|
* 单据类型的当前仓库(如果当前仓库有设置,则判断该当前仓库是否为1级库并且仓库类型=寄售,如果没设置,那么往来单位自动为默认寄售仓库),当前仓库:出库单据的当前仓库
|
|
|
|
|
*/
|
|
|
|
|
BussinessTypeEntity bussinessTypeEntity = bussinessTypeService.findBTByAction(advChangeTypeEntity.getScAction());
|
|
|
|
|
InvWarehouseEntity invWarehouseEntity;
|
|
|
|
|
if (!StrUtil.isEmpty(bussinessTypeEntity.getStorageCode())) {
|
|
|
|
|
invWarehouseEntity = invWarehouseService.selectByCode(bussinessTypeEntity.getStorageCode());
|
|
|
|
|
if (!invWarehouseEntity.getAdvanceType() || invWarehouseEntity.getLevel() > 1) {
|
|
|
|
|
//todo 补单失败,当前仓库设置错误
|
|
|
|
|
orderEntity.setRemark("该补录单,单据类型" + bussinessTypeEntity.getName() + "当前仓库设置错误,无法补单");
|
|
|
|
|
orderEntity.setError(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else { //结余数量《=0直接补
|
|
|
|
|
} else
|
|
|
|
|
invWarehouseEntity = invWarehouseService.findDefault(true, true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int invCount = getCountByOrder(null, warehouseEntity);
|
|
|
|
|
warehouseEntity.setFromCorpId(invWarehouseEntity.getCode());
|
|
|
|
|
warehouseEntity.setFromCorp(invWarehouseEntity.getName());
|
|
|
|
|
if (invCount > 0) {//仓库已存在该产品
|
|
|
|
|
if (count > invCount) { //当前数量>结余数量,说明该产品是无序列号或者是多级包装
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(warehouseEntity.getCode());
|
|
|
|
|
if (actCount > invCount) { //该产品实际数量大于结余数量,说明是多级包装,直接补
|
|
|
|
|
preiInList.add(warehouseEntity);
|
|
|
|
|
} else if (udiEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
|
|
|
|
|
int lea = count - invCount;
|
|
|
|
|
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
|
|
|
|
|
preiInList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else { //结余数量《=0直接补
|
|
|
|
|
// warehouseEntity.setCount(count);
|
|
|
|
|
preiInList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = filterInvByCode(invProductDetailEntities, warehouseEntity.getCode());
|
|
|
|
|
insetInvSingle(false, invProductDetailEntity);
|
|
|
|
|
warehouseEntity.setCode(code);
|
|
|
|
|
preiInList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = filterInvByCode(invProductDetailEntities, warehouseEntity.getCode());
|
|
|
|
|
insetInvSingle(false, invProductDetailEntity);
|
|
|
|
|
warehouseEntity.setCode(code);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
|
UdiInfoEntity udiInfoEntity = getMinDi(warehouseEntity);
|
|
|
|
|
String code = warehouseEntity.getCode();
|
|
|
|
|
int count = actCount * warehouseEntity.getCount();
|
|
|
|
|
} else {
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
|
UdiInfoEntity udiInfoEntity = getMinDi(warehouseEntity);
|
|
|
|
|
String code = warehouseEntity.getCode();
|
|
|
|
|
int count = actCount * warehouseEntity.getCount();
|
|
|
|
|
// if (udiInfoEntity.getDiType() == ConstantStatus.DITYPE_PACK || udiInfoEntity.getDiType() == ConstantStatus.DITYPE_SYDY
|
|
|
|
|
// || (udiInfoEntity.getSjcpbm() != null && !"".equals(udiInfoEntity.getSjcpbm()))) {
|
|
|
|
|
// warehouseEntity.setNameCode(udiInfoEntity.getNameCode());
|
|
|
|
@ -303,53 +310,53 @@ public class InvProductsTrService {
|
|
|
|
|
// count = warehouseEntity.getCount();
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
int invCount = 0;
|
|
|
|
|
if (locWarehouseEntity.getLevel() > 1) {//补调拨入库
|
|
|
|
|
/**
|
|
|
|
|
* 调拨入库》往来单位:出库单据的当前仓库的父级仓库,当前仓库:出库单据的当前仓库;
|
|
|
|
|
*/
|
|
|
|
|
InvWarehouseEntity pInWarehouseEntity = invWarehouseService.selectByCode(locWarehouseEntity.getPcode());
|
|
|
|
|
warehouseEntity.setFromCorp(pInWarehouseEntity.getName());
|
|
|
|
|
warehouseEntity.setFromCorpId(pInWarehouseEntity.getCode());
|
|
|
|
|
int invCount = 0;
|
|
|
|
|
if (locWarehouseEntity.getLevel() > 1) {//补调拨入库
|
|
|
|
|
/**
|
|
|
|
|
* 调拨入库》往来单位:出库单据的当前仓库的父级仓库,当前仓库:出库单据的当前仓库;
|
|
|
|
|
*/
|
|
|
|
|
InvWarehouseEntity pInWarehouseEntity = invWarehouseService.selectByCode(locWarehouseEntity.getPcode());
|
|
|
|
|
warehouseEntity.setFromCorp(pInWarehouseEntity.getName());
|
|
|
|
|
warehouseEntity.setFromCorpId(pInWarehouseEntity.getCode());
|
|
|
|
|
|
|
|
|
|
invCount = getCountByOrder(null, warehouseEntity);
|
|
|
|
|
invCount = getCountByOrder(null, warehouseEntity);
|
|
|
|
|
// invCount = getCountByOrder(null, warehouseEntity.getCode(), warehouseEntity.getSupId(), locWarehouseEntity.getPcode());
|
|
|
|
|
// if (invCount <= 0) {
|
|
|
|
|
// invCount = getCountByOrder(null, code, warehouseEntity.getSupId(), locWarehouseEntity.getPcode());
|
|
|
|
|
// }
|
|
|
|
|
norChangeTypeEntity = innorChangeTypeEntity;
|
|
|
|
|
} else { //补供应商入库
|
|
|
|
|
/**
|
|
|
|
|
* 供应商入库》往来单位:根据产品指定的供应商,当前仓库:出库单据的当前仓库;
|
|
|
|
|
*/
|
|
|
|
|
//供应商
|
|
|
|
|
warehouseEntity.setFromCorpId(warehouseEntity.getSupId());
|
|
|
|
|
BasicUnitMaintainEntity basicUnitMaintainEntity = basicUnitMaintainService.selectByErpId(warehouseEntity.getSupId());
|
|
|
|
|
warehouseEntity.setFromCorp(basicUnitMaintainEntity.getName());
|
|
|
|
|
invCount = getCountByOrder(null, warehouseEntity);
|
|
|
|
|
norChangeTypeEntity = innorChangeTypeEntity;
|
|
|
|
|
} else { //补供应商入库
|
|
|
|
|
/**
|
|
|
|
|
* 供应商入库》往来单位:根据产品指定的供应商,当前仓库:出库单据的当前仓库;
|
|
|
|
|
*/
|
|
|
|
|
//供应商
|
|
|
|
|
warehouseEntity.setFromCorpId(warehouseEntity.getSupId());
|
|
|
|
|
BasicUnitMaintainEntity basicUnitMaintainEntity = basicUnitMaintainService.selectByErpId(warehouseEntity.getSupId());
|
|
|
|
|
warehouseEntity.setFromCorp(basicUnitMaintainEntity.getName());
|
|
|
|
|
invCount = getCountByOrder(null, warehouseEntity);
|
|
|
|
|
|
|
|
|
|
// invCount = getCountByOrder(null, warehouseEntity.getCode(), warehouseEntity.getSupId(), null);
|
|
|
|
|
// if (invCount <= 0) {
|
|
|
|
|
// invCount = getCountByOrder(null, code, warehouseEntity.getSupId(), null);
|
|
|
|
|
// }
|
|
|
|
|
norChangeTypeEntity = outChangeTypeEntity;
|
|
|
|
|
}
|
|
|
|
|
norChangeTypeEntity = outChangeTypeEntity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (invCount > 0) {//仓库已存在该产品
|
|
|
|
|
if (count > invCount) { //当前数量>结余数量,说明该产品是无序列号或者是多级包装
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(warehouseEntity.getCode());
|
|
|
|
|
if (actCount > invCount) { //该产品实际数量大于结余数量,说明是多级包装,直接补
|
|
|
|
|
inList.add(warehouseEntity);
|
|
|
|
|
} else if (udiEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
|
|
|
|
|
int lea = count - invCount;
|
|
|
|
|
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
|
|
|
|
|
inList.add(warehouseEntity);
|
|
|
|
|
if (invCount > 0) {//仓库已存在该产品
|
|
|
|
|
if (count > invCount) { //当前数量>结余数量,说明该产品是无序列号或者是多级包装
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(warehouseEntity.getCode());
|
|
|
|
|
if (actCount > invCount) { //该产品实际数量大于结余数量,说明是多级包装,直接补
|
|
|
|
|
inList.add(warehouseEntity);
|
|
|
|
|
} else if (udiEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
|
|
|
|
|
int lea = count - invCount;
|
|
|
|
|
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
|
|
|
|
|
inList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else { //结余数量《=0直接补
|
|
|
|
|
} else { //结余数量《=0直接补
|
|
|
|
|
// warehouseEntity.setCount(count);
|
|
|
|
|
inList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
inList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
// if (invCount > 0) {
|
|
|
|
|
// if (count > invCount) {
|
|
|
|
|
// int lea = count - invCount;
|
|
|
|
@ -360,13 +367,15 @@ public class InvProductsTrService {
|
|
|
|
|
// warehouseEntity.setCount(count);
|
|
|
|
|
// inList.add(warehouseEntity);
|
|
|
|
|
// }
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = filterInvByCode(invProductDetailEntities, warehouseEntity.getCode());
|
|
|
|
|
insetInvSingle(false, invProductDetailEntity);
|
|
|
|
|
warehouseEntity.setCode(code);
|
|
|
|
|
}
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = filterInvByCode(invProductDetailEntities, warehouseEntity.getCode());
|
|
|
|
|
insetInvSingle(false, invProductDetailEntity);
|
|
|
|
|
warehouseEntity.setCode(code);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (inList.size() > 0) {
|
|
|
|
|
List<WarehouseEntity> temps = filterMapCodes(inList);
|
|
|
|
|
buildInOrder(norChangeTypeEntity, temps, orderEntity); //3.生成采购入库流转单据
|
|
|
|
@ -379,45 +388,6 @@ public class InvProductsTrService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// public List<WarehouseEntity> addOutOrder(OrderEntity
|
|
|
|
|
// orderEntity, List<InvProductDetailEntity> invProductDetailEntities) {
|
|
|
|
|
// List<WarehouseEntity> warehouseEntities = codesService.findByReceiptId(orderEntity.getId());
|
|
|
|
|
// List<WarehouseEntity> inList = new ArrayList<>();
|
|
|
|
|
// for (WarehouseEntity warehouseEntity : warehouseEntities) {
|
|
|
|
|
// //获取普通出入库结余数量
|
|
|
|
|
// int actCount = getActCount(warehouseEntity);
|
|
|
|
|
// int count = 0;
|
|
|
|
|
// UdiInfoEntity udiInfoEntity = getMinDi(warehouseEntity);
|
|
|
|
|
// String code = warehouseEntity.getCode();
|
|
|
|
|
// if (udiInfoEntity.getDiType() == ConstantStatus.DITYPE_PACK || udiInfoEntity.getDiType() == ConstantStatus.DITYPE_SYDY
|
|
|
|
|
// || (udiInfoEntity.getSjcpbm() != null && !"".equals(udiInfoEntity.getSjcpbm()))) {
|
|
|
|
|
// warehouseEntity.setNameCode(udiInfoEntity.getNameCode());
|
|
|
|
|
// code = FilterUdiUtils.transGlxpNoSerStr(warehouseEntity);
|
|
|
|
|
// count = actCount * warehouseEntity.getCount();
|
|
|
|
|
// } else {
|
|
|
|
|
// count = warehouseEntity.getCount();
|
|
|
|
|
// }
|
|
|
|
|
// int invCount = getCountByOrder(null, warehouseEntity.getCode(), warehouseEntity.getSupId());
|
|
|
|
|
// if (invCount <= 0) {
|
|
|
|
|
// invCount = getCountByOrder(null, code, warehouseEntity.getSupId());
|
|
|
|
|
// }
|
|
|
|
|
// if (invCount > 0) {
|
|
|
|
|
// if (count > invCount) {
|
|
|
|
|
// int lea = count - invCount;
|
|
|
|
|
// warehouseEntity.setCount(lea / actCount);
|
|
|
|
|
// inList.add(warehouseEntity);
|
|
|
|
|
// }
|
|
|
|
|
// } else {
|
|
|
|
|
// warehouseEntity.setCount(count);
|
|
|
|
|
// inList.add(warehouseEntity);
|
|
|
|
|
// }
|
|
|
|
|
// InvProductDetailEntity invProductDetailEntity = filterInvByCode(invProductDetailEntities, warehouseEntity.getCode());
|
|
|
|
|
// insetInvSingle(false, invProductDetailEntity);
|
|
|
|
|
// warehouseEntity.setCode(code);
|
|
|
|
|
// }
|
|
|
|
|
// return inList;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
//普通入库补单
|
|
|
|
|
public List<WarehouseEntity> addPutOrder(OrderEntity
|
|
|
|
|
orderEntity, List<InvProductDetailEntity> invProductDetailEntities) {
|
|
|
|
@ -440,11 +410,18 @@ public class InvProductsTrService {
|
|
|
|
|
|
|
|
|
|
List<WarehouseEntity> warehouseEntities = codesService.findByReceiptId(orderEntity.getId());
|
|
|
|
|
List<WarehouseEntity> prePutList = new ArrayList<>();
|
|
|
|
|
for (WarehouseEntity warehouseEntity : warehouseEntities) {
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
|
int count = actCount * warehouseEntity.getCount();
|
|
|
|
|
|
|
|
|
|
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("ullage_supplement_all");
|
|
|
|
|
if (systemParamConfigEntity != null && systemParamConfigEntity.getParamValue().equals("1")) {
|
|
|
|
|
for (WarehouseEntity warehouseEntity : warehouseEntities) {
|
|
|
|
|
prePutList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
for (WarehouseEntity warehouseEntity : warehouseEntities) {
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
|
int count = actCount * warehouseEntity.getCount();
|
|
|
|
|
// String code = warehouseEntity.getCode();
|
|
|
|
|
UdiInfoEntity udiInfoEntity = getMinDi(warehouseEntity);
|
|
|
|
|
UdiInfoEntity udiInfoEntity = getMinDi(warehouseEntity);
|
|
|
|
|
// if (udiInfoEntity.getDiType() == ConstantStatus.DITYPE_PACK || udiInfoEntity.getDiType() == ConstantStatus.DITYPE_SYDY
|
|
|
|
|
// || (udiInfoEntity.getSjcpbm() != null && !"".equals(udiInfoEntity.getSjcpbm()))) {
|
|
|
|
|
// warehouseEntity.setNameCode(udiInfoEntity.getNameCode());
|
|
|
|
@ -453,26 +430,29 @@ public class InvProductsTrService {
|
|
|
|
|
// } else {
|
|
|
|
|
// count = warehouseEntity.getCount();
|
|
|
|
|
// }
|
|
|
|
|
//获取寄售出入库结余数量
|
|
|
|
|
int invCount = getPreCountByOrder(null, udiInfoEntity.getRelId(), warehouseEntity.getBatchNo(), warehouseEntity.getSupId(), warehouseEntity.getLocStorageCode());
|
|
|
|
|
if (invCount > 0) {//仓库已存在该产品
|
|
|
|
|
if (count > invCount) { //当前数量>结余数量,说明该产品是无序列号或者是多级包装
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(warehouseEntity.getCode());
|
|
|
|
|
if (actCount > invCount) { //该产品实际数量大于结余数量,说明是多级包装,直接补
|
|
|
|
|
prePutList.add(warehouseEntity);
|
|
|
|
|
} else if (udiEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
|
|
|
|
|
int lea = count - invCount;
|
|
|
|
|
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
|
|
|
|
|
prePutList.add(warehouseEntity);
|
|
|
|
|
//获取寄售出入库结余数量
|
|
|
|
|
int invCount = getPreCountByOrder(null, udiInfoEntity.getRelId(), warehouseEntity.getBatchNo(), warehouseEntity.getSupId(), warehouseEntity.getLocStorageCode());
|
|
|
|
|
if (invCount > 0) {//仓库已存在该产品
|
|
|
|
|
if (count > invCount) { //当前数量>结余数量,说明该产品是无序列号或者是多级包装
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(warehouseEntity.getCode());
|
|
|
|
|
if (actCount > invCount) { //该产品实际数量大于结余数量,说明是多级包装,直接补
|
|
|
|
|
prePutList.add(warehouseEntity);
|
|
|
|
|
} else if (udiEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
|
|
|
|
|
int lea = count - invCount;
|
|
|
|
|
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
|
|
|
|
|
prePutList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else { //结余数量《=0直接补
|
|
|
|
|
} else { //结余数量《=0直接补
|
|
|
|
|
// warehouseEntity.setCount(count);
|
|
|
|
|
prePutList.add(warehouseEntity);
|
|
|
|
|
prePutList.add(warehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = filterInvByCode(invProductDetailEntities, warehouseEntity.getCode());
|
|
|
|
|
insetInvSingle(true, invProductDetailEntity);
|
|
|
|
|
}
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = filterInvByCode(invProductDetailEntities, warehouseEntity.getCode());
|
|
|
|
|
insetInvSingle(true, invProductDetailEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return prePutList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -516,7 +496,7 @@ public class InvProductsTrService {
|
|
|
|
|
outOrder.setErpFk(null);
|
|
|
|
|
outOrder.setCustomerId(Constant.SYSTEM_CUSTOMER_ID);
|
|
|
|
|
outOrder.setId("SM" + CustomUtil.getId());
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId()+"x");
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId() + "x");
|
|
|
|
|
outOrder.setFromCorp(invWarehouseEntity.getName());
|
|
|
|
|
outOrder.setFromCorpId(invWarehouseEntity.getCode());
|
|
|
|
|
outOrder.setLocStorageCode(defaultWarehouseEntity.getCode());
|
|
|
|
@ -586,7 +566,7 @@ public class InvProductsTrService {
|
|
|
|
|
outOrder.setFromCorp(basicUnitMaintainEntity.getName());
|
|
|
|
|
outOrder.setFromCorpId(corpName);
|
|
|
|
|
outOrder.setLocStorageCode(orderEntity.getLocStorageCode());
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId()+"x");
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId() + "x");
|
|
|
|
|
//互填单号
|
|
|
|
|
orderEntity.setUllageSupNo(outOrder.getId());
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
@ -691,7 +671,7 @@ public class InvProductsTrService {
|
|
|
|
|
outOrder.setId("SM" + CustomUtil.getId());
|
|
|
|
|
outOrder.setFromCorpId(corpName);
|
|
|
|
|
outOrder.setFromCorp(temps.get(0).getFromCorp());
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId()+"x");
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId() + "x");
|
|
|
|
|
outOrder.setLocStorageCode(orderEntity.getLocStorageCode());
|
|
|
|
|
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("additional_auto_submit");
|
|
|
|
|
if ("1".equals(systemParamConfigEntity.getParamValue())) {
|
|
|
|
@ -764,7 +744,7 @@ public class InvProductsTrService {
|
|
|
|
|
outOrder.setCustomerId(Constant.SYSTEM_CUSTOMER_ID);
|
|
|
|
|
outOrder.setFromCorp(temps.get(0).getFromCorp());
|
|
|
|
|
outOrder.setFromCorpId(temps.get(0).getFromCorpId());
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId()+"x");
|
|
|
|
|
outOrder.setCorpOrderId(CustomUtil.getId() + "x");
|
|
|
|
|
outOrder.setLocStorageCode(orderEntity.getLocStorageCode());
|
|
|
|
|
outOrder.setErpFk(null);
|
|
|
|
|
outOrder.setFromType(ConstantStatus.FROM_CHANGE);
|
|
|
|
@ -803,7 +783,6 @@ public class InvProductsTrService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//生成库存
|
|
|
|
|
private InvProductEntity buildInvProduct(String relId, ErpOrderEntity erpOrderEntity, OrderEntity
|
|
|
|
|
orderEntity, WarehouseEntity warehouseEntity) {
|
|
|
|
|