Commit 4e37801d by qinjianhui

fix: 库存信息只在接单失败-缺货中展示

parent 731a3d08
......@@ -724,7 +724,9 @@
</div>
<div class="table-pagination-bar">
<div class="selected-count-text">
已选择 <strong style="color: red">{{ selectedRows.length }}</strong> 条数
已选择
<strong style="color: red">{{ selectedRows.length }}</strong>
条数据
</div>
<ElPagination
v-model:current-page="currentPage"
......@@ -1296,7 +1298,7 @@ const mainColumns = computed(() => [
const showProductInventoryColumns = computed(
() =>
status.value !== 'PENDING_RECEIVE' ||
status.value == 'PENDING_RECEIVE' &&
pendingAcceptSubTab.value !== 'PENDING_RECEIVE',
)
......@@ -1956,7 +1958,7 @@ const handleProductionComplete = async () => {
} else {
ElMessage.success('操作成功')
refreshCurrentView({ isRefreshTree: true })
}
}
},
})
}
......
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