优化校验,计划出库数量为0数据不推送

This commit is contained in:
lihao 2025-10-10 09:20:29 +08:00
parent 8173ab1319
commit df793c0539
2 changed files with 6 additions and 0 deletions

View File

@ -244,6 +244,9 @@ public class PickmToBuyingreqAction implements ICommonAction {
continue;
}
}
if(child.getNplanoutnum().compareTo(UFDouble.ZERO_DBL)==0){
continue;
}
// 是否转为通用件若为Y不下达请购单
BaseDAO dao = new BaseDAO();
// String mrlsql = " select def29 from bd_material where pk_material='" + child.getCbmaterialvid() + "' and dr=0";

View File

@ -285,6 +285,9 @@ public class PickmToPmo implements ICommonAction {
continue;
}
}
if(child.getNplanoutnum().compareTo(UFDouble.ZERO_DBL)==0){
continue;
}
// 物料类型过滤逻辑仅当不是来自cpickmbids时才执行过滤
String materalType = child.getVbdef14();