Browse Source

YT-1928:批量打印去掉已生成发料记录的数据

intex_online20250224
songguoqiang 1 month ago
parent
commit
f1d1bf98ca
  1. 2
      src/views/wms/issueManage/preparetoissueplan/preparetoissueMain/index.vue

2
src/views/wms/issueManage/preparetoissueplan/preparetoissueMain/index.vue

@ -768,7 +768,7 @@ let masterIds = new Set();
const handleSelectionPoint = () => { const handleSelectionPoint = () => {
masterIds = new Set(); masterIds = new Set();
selectionRows.value.forEach(obj=>{ selectionRows.value.forEach(obj=>{
if (obj.masterId) { if (obj.masterId && obj.isIssueRecord == '0') {//
masterIds.add(obj.masterId); masterIds.add(obj.masterId);
} }
}) })

Loading…
Cancel
Save