|
@ -830,6 +830,10 @@ const submitForm = async (formType, data) => { |
|
|
message.warning("退货数量不能大于收获数量") |
|
|
message.warning("退货数量不能大于收获数量") |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
if(tableData.value.find(item=>Number(item.returnedQty)>Number(item.inventoryBalance))){ |
|
|
|
|
|
message.warning("退货数量不能大于库存余额") |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
try { |
|
|
try { |
|
|
if (formType === 'create') { |
|
|
if (formType === 'create') { |
|
|