物料推送箱变qms增加过滤
This commit is contained in:
parent
8b7a962810
commit
5899b6049a
|
|
@ -99,6 +99,16 @@ public class MaterialToQmsListener implements IBusinessListener {
|
|||
String mrlTypeName = MyHelper.getStrValByCondition(MarBasClassVO.getDefaultTableName(), MarBasClassVO.CODE,
|
||||
"pk_marbasclass = '" + pk_marbasclass + "'");
|
||||
|
||||
// 过滤物料分类
|
||||
String isPushtoQms = MyHelper.getStrValByCondition(MarBasClassVO.getDefaultTableName(), MarBasClassVO.DEF3,
|
||||
"pk_marbasclass = '" + pk_marbasclass + "'");
|
||||
// 计量单位
|
||||
if(null != isPushtoQms && "Y".equals(isPushtoQms)) {
|
||||
continue;
|
||||
}
|
||||
// if(null == isPushtoQms || !"Y".equals(isPushtoQms)) {
|
||||
// continue;
|
||||
// }
|
||||
// 过滤物料分类
|
||||
if(checkMrlType(mrlTypeName,configParams)){
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in New Issue