|
|
|
@ -250,7 +250,7 @@ public class UdiRelevanceController {
|
|
|
|
|
for (int i = 0; i < udiInfoEntities.size(); i++) {
|
|
|
|
|
List<WarehouseEntity> warehouseEntityList = warehouseService.searchCode(udiInfoEntities.get(i).getNameCode());
|
|
|
|
|
if (warehouseEntityList != null && warehouseEntityList.size() > 0) {
|
|
|
|
|
return ResultVOUtils.error(500, "改产品已被" + warehouseEntityList.get(0).getOrderId() + "订单关联不能删除");
|
|
|
|
|
return ResultVOUtils.error(500, "该产品已被" + warehouseEntityList.get(0).getOrderId() + "订单关联不能删除");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -260,7 +260,7 @@ public class UdiRelevanceController {
|
|
|
|
|
if (StrUtil.isNotEmpty(ids)) {
|
|
|
|
|
List<WarehouseEntity> warehouseEntityList = warehouseService.findByOrderId(warehouseQueryRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(warehouseEntityList)) {
|
|
|
|
|
return ResultVOUtils.error(500, "改产品已被" + warehouseEntityList.get(0).getOrderId() + "订单关联不能删除");
|
|
|
|
|
return ResultVOUtils.error(500, "该产品已被" + warehouseEntityList.get(0).getOrderId() + "订单关联不能删除");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -268,7 +268,7 @@ public class UdiRelevanceController {
|
|
|
|
|
|
|
|
|
|
CompanyProductRelevanceEntity companyProductRelevanceEntity = companyProductRelevanceService.findByUdiRlIdUnitFk(ids, null);
|
|
|
|
|
if (companyProductRelevanceEntity != null) {
|
|
|
|
|
return ResultVOUtils.error(500, "改产品已被供应商选入" + "不能删除!");
|
|
|
|
|
return ResultVOUtils.error(500, "该产品已被已被供应商选入" + "不能删除!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|