优化校验,计划出库数量为0数据不推送
This commit is contained in:
parent
8173ab1319
commit
df793c0539
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -285,6 +285,9 @@ public class PickmToPmo implements ICommonAction {
|
|||
continue;
|
||||
}
|
||||
}
|
||||
if(child.getNplanoutnum().compareTo(UFDouble.ZERO_DBL)==0){
|
||||
continue;
|
||||
}
|
||||
|
||||
// 物料类型过滤逻辑:仅当不是来自cpickmbids时才执行过滤
|
||||
String materalType = child.getVbdef14();
|
||||
|
|
|
|||
Loading…
Reference in New Issue