Browse Source

制品上架申请 导入 批次不能为空

master
陈薪名 2 years ago
parent
commit
caedbf9759
  1. 4
      win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/service/productputawayRequest/ProductputawayRequestMainServiceImpl.java

4
win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/service/productputawayRequest/ProductputawayRequestMainServiceImpl.java

@ -366,6 +366,10 @@ public class ProductputawayRequestMainServiceImpl implements ProductputawayReque
}catch (Exception ex) {
message.append(ex.getMessage()).append(",");
}
// 校验 批次
if (detailDo.getBatch().isEmpty()) {
message.append("物料【").append(detailDo.getItemCode()).append("】批次不能为空").append(",");
}
try{
// 校验来源库位
IfInToLocationType(detailDo.getFromLocationCode(),businesstypeDO);

Loading…
Cancel
Save