|
|
@ -204,12 +204,10 @@ const butttondata = (row) => { |
|
|
|
defaultButtons.mainListPurchasePlanCloBtn({hide:isShowMainButton(row,['1'])}), // 关闭 |
|
|
|
defaultButtons.mainListPurchasePlanOpeBtn({hide:isShowMainButton(row,['2'])}), // 打开 |
|
|
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:purchase-plan-main:update'}), // 编辑 |
|
|
|
defaultButtons.mainListDeleteBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:purchase-plan-main:delete'}), // 删除 |
|
|
|
// defaultButtons.mainListDeleteBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:purchase-plan-main:delete'}), // 删除 |
|
|
|
] |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 列表-操作按钮事件 |
|
|
|
const buttonTableClick = async (val, row) => { |
|
|
|
if (val == 'mainPurPlanOpe') { // 打开 |
|
|
@ -299,13 +297,14 @@ const submitForm = async (formType, data) => { |
|
|
|
for(let item of tableData.value) { |
|
|
|
await PurchaseDetailApi.getPurchaseDetailPage({ |
|
|
|
number: item.poNumber, |
|
|
|
lineNumber: item.poLine |
|
|
|
lineNumber: item.poLine, |
|
|
|
}).then(res => { |
|
|
|
if(item.planQty > res.list[0].orderQty-res.list[0].plannedQty){ |
|
|
|
message.error('要货计划数量不得大于订单数量-已计划数量') |
|
|
|
} else { |
|
|
|
data.subList.push(item) // 拼接子表数据参数 |
|
|
|
} |
|
|
|
// if(item.planQty > res.list[0].orderQty-res.list[0].plannedQty){ |
|
|
|
// message.error('要货计划数量不得大于订单数量-已计划数量') |
|
|
|
// } else { |
|
|
|
// data.subList.push(item) // 拼接子表数据参数 |
|
|
|
// } |
|
|
|
}) |
|
|
|
} |
|
|
|
if(data.subList.length == tableData.value.length){ |
|
|
|