fix(pmo):箱变流程生产订单推启源增加批次号判空
This commit is contained in:
parent
00395876f7
commit
7cf85053b1
|
|
@ -93,6 +93,9 @@ public class PmoToQmsAction implements ICommonAction {
|
||||||
}
|
}
|
||||||
for (PMOItemVO itemVO : nowItemVOS) {
|
for (PMOItemVO itemVO : nowItemVOS) {
|
||||||
String vbatchcode = itemVO.getVbatchcode();
|
String vbatchcode = itemVO.getVbatchcode();
|
||||||
|
if (null == vbatchcode) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
vbatchcodeSet.add(vbatchcode);
|
vbatchcodeSet.add(vbatchcode);
|
||||||
}
|
}
|
||||||
// 判断是否存在批次号
|
// 判断是否存在批次号
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,6 @@
|
||||||
<action>mmpac.pmo.queryByCond</action>
|
<action>mmpac.pmo.queryByCond</action>
|
||||||
<action>mmpac.pmo.createDCX55A3</action>
|
<action>mmpac.pmo.createDCX55A3</action>
|
||||||
<action>mmpac.pmo.PmoToPlm</action>
|
<action>mmpac.pmo.PmoToPlm</action>
|
||||||
|
|
||||||
<action>mmpac.pmo.PmoToQms</action>
|
<action>mmpac.pmo.PmoToQms</action>
|
||||||
<action>mmpac.pmo.PmoToMes</action>
|
<action>mmpac.pmo.PmoToMes</action>
|
||||||
</actions>
|
</actions>
|
||||||
|
|
|
||||||
|
|
@ -445,5 +445,5 @@
|
||||||
<label>生产订单手动推MES</label>
|
<label>生产订单手动推MES</label>
|
||||||
<clazz>nccloud.web.mmpac.pmo.action.PmoToEpicMesAction
|
<clazz>nccloud.web.mmpac.pmo.action.PmoToEpicMesAction
|
||||||
</clazz>
|
</clazz>
|
||||||
</action>
|
</action>
|
||||||
</actions>
|
</actions>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue