生产订单推送艾普mes

This commit is contained in:
lihao 2025-09-24 11:01:43 +08:00
parent b0f8091557
commit 4d1a88fe07
1 changed files with 15 additions and 0 deletions

View File

@ -670,6 +670,21 @@ export default function clickBtn(props, id, text, record, index) {
let toPlm1 = toPlm.bind(this, props, billId);
return toPlm1(props);
}
case "tomes": {
rowIds = [];
let billId = props.form.getFormItemsValue(formId, HEADATTRCODE.CPMOHID).value;
// 传递设计任务
rowIds[0] = billId;
ajax({
url: '/nccloud/mmpac/pmo/PmoToMes.do',
data: {pks: rowIds},
success: (res) => {
if (res.success) {
toast({content: "传递设计任务成功", color: 'success'});
}
}
});
}
}
}