Commit c81b28aa by wusiyi

feat: 工厂订单new新增全部tab下的状态筛选 #1006853

parent afbeb180
......@@ -1114,11 +1114,11 @@ const {
const statusTreeChildren = computed(() => {
const tree = JSON.parse(JSON.stringify(statusTree.value?.[0]?.children))
if (!tree) return []
tree.forEach((item) => {
tree.forEach((item: any) => {
if (item.status === 'PICKING') item.children = []
})
return tree.filter(
(item) =>
(item: any) =>
item.status !== 'AWAITING_RESTOCK' && item.status !== 'BATCH_MANAGE',
)
})
......
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