fix(pmo):箱变流程生产订单推启源增加批次号判空

This commit is contained in:
mzr 2025-10-25 20:54:07 +08:00
parent 00395876f7
commit 7cf85053b1
3 changed files with 8 additions and 6 deletions

View File

@ -93,6 +93,9 @@ public class PmoToQmsAction implements ICommonAction {
}
for (PMOItemVO itemVO : nowItemVOS) {
String vbatchcode = itemVO.getVbatchcode();
if (null == vbatchcode) {
continue;
}
vbatchcodeSet.add(vbatchcode);
}
// 判断是否存在批次号

View File

@ -110,7 +110,6 @@
<action>mmpac.pmo.queryByCond</action>
<action>mmpac.pmo.createDCX55A3</action>
<action>mmpac.pmo.PmoToPlm</action>
<action>mmpac.pmo.PmoToQms</action>
<action>mmpac.pmo.PmoToMes</action>
</actions>

View File

@ -445,5 +445,5 @@
<label>生产订单手动推MES</label>
<clazz>nccloud.web.mmpac.pmo.action.PmoToEpicMesAction
</clazz>
</action>
</action>
</actions>