Commit 102c23f6 by wusiyi

fix: 修复配货完成清空箱子后提示未获取到打印结果bug

parent fee6d6cc
...@@ -851,9 +851,9 @@ const handleSearch = () => { ...@@ -851,9 +851,9 @@ const handleSearch = () => {
} }
productionOrder.value = '' productionOrder.value = ''
isLock.value = true isLock.value = true
const everyPower = podOrderDetailsData.value?.productList?.every( const everyPower =
(item) => item.power, podOrderDetailsData.value &&
) podOrderDetailsData.value?.productList?.every((item) => item.power)
if (props.wallType === 'sort' && !isAutoPrint.value) { if (props.wallType === 'sort' && !isAutoPrint.value) {
getPackingData(code) getPackingData(code)
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment