|
|
|
@ -99,6 +99,7 @@ public class InvProductsTrService {
|
|
|
|
|
, warehouseEntity.getLocStorageCode(), warehouseEntity.getInvWarehouseCode());
|
|
|
|
|
if (invPreProductEntity == null) {
|
|
|
|
|
invPreProductEntity = buildInvProduct(erpOrderEntity.getGoodsid(), erpOrderEntity, orderEntity, warehouseEntity);
|
|
|
|
|
invPreProductEntity.setUpdateTime(new Date());
|
|
|
|
|
invPreInProductService.insertInvProduct(invPreProductEntity);
|
|
|
|
|
} else {
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
@ -111,6 +112,7 @@ public class InvProductsTrService {
|
|
|
|
|
if (erpOrderEntity.getPrice() != null) {
|
|
|
|
|
invPreProductEntity.setPrice(erpOrderEntity.getPrice() + "");
|
|
|
|
|
}
|
|
|
|
|
invPreProductEntity.setUpdateTime(new Date());
|
|
|
|
|
invPreInProductService.updateInvProduct(invPreProductEntity);
|
|
|
|
|
}
|
|
|
|
|
} else if (bussinessTypeEntity.isAdvanceType()) {//预入库,则转存预入库
|
|
|
|
@ -119,6 +121,7 @@ public class InvProductsTrService {
|
|
|
|
|
, warehouseEntity.getInvStorageCode(), warehouseEntity.getInvWarehouseCode());
|
|
|
|
|
if (invPreProductEntity == null) {
|
|
|
|
|
invPreProductEntity = buildInvProduct(erpOrderEntity.getGoodsid(), erpOrderEntity, orderEntity, warehouseEntity);
|
|
|
|
|
invPreProductEntity.setUpdateTime(new Date());
|
|
|
|
|
invPreProductService.insertInvProduct(invPreProductEntity);
|
|
|
|
|
} else {
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
@ -131,6 +134,7 @@ public class InvProductsTrService {
|
|
|
|
|
if (erpOrderEntity.getPrice() != null) {
|
|
|
|
|
invPreProductEntity.setPrice(erpOrderEntity.getPrice() + "");
|
|
|
|
|
}
|
|
|
|
|
invPreProductEntity.setUpdateTime(new Date());
|
|
|
|
|
invPreProductService.updateInvProduct(invPreProductEntity);
|
|
|
|
|
}
|
|
|
|
|
} else { //普通出入库
|
|
|
|
@ -139,6 +143,7 @@ public class InvProductsTrService {
|
|
|
|
|
if (invProductEntity == null) {
|
|
|
|
|
invProductEntity = buildInvProduct(erpOrderEntity.getGoodsid(), erpOrderEntity, orderEntity, warehouseEntity);
|
|
|
|
|
invProductEntity.setUnitFk(orderEntity.getFromCorpId());
|
|
|
|
|
invProductEntity.setUpdateTime(new Date());
|
|
|
|
|
invProductService.insertInvProduct(invProductEntity);
|
|
|
|
|
} else {
|
|
|
|
|
int actCount = getActCount(warehouseEntity);
|
|
|
|
@ -151,6 +156,7 @@ public class InvProductsTrService {
|
|
|
|
|
if (erpOrderEntity.getPrice() != null) {
|
|
|
|
|
invProductEntity.setPrice(erpOrderEntity.getPrice() + "");
|
|
|
|
|
}
|
|
|
|
|
invProductEntity.setUpdateTime(new Date());
|
|
|
|
|
invProductService.updateInvProduct(invProductEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -167,7 +173,7 @@ public class InvProductsTrService {
|
|
|
|
|
preInvEntity.setPrice(erpOrderEntity.getPrice() + "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
preInvEntity.setUpdateTime(new Date());
|
|
|
|
|
invPreInProductService.updateInvProduct(preInvEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -197,6 +203,7 @@ public class InvProductsTrService {
|
|
|
|
|
|
|
|
|
|
if (orderEntity.isPreCheck()) {
|
|
|
|
|
// insetInv(bussinessTypeEntity, invProductDetailEntities);//2.插入当前库存
|
|
|
|
|
|
|
|
|
|
invPreInProductDetailService.insertInvProducts(invProductDetailEntities);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|