Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
ee688c69
Commit
ee688c69
authored
Dec 02, 2025
by
linjinhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:【工厂端】【订单-PODCN】:CB类商品订单在待发货状态无法使用【普货拣货】按钮打印拣货单#1000558
parent
6855c54a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
components.d.ts
+1
-0
src/views/order/podCN/index.vue
+10
-5
No files found.
components.d.ts
View file @
ee688c69
...
...
@@ -54,6 +54,7 @@ declare module 'vue' {
ElTag
:
typeof
import
(
'element-plus/es'
)[
'ElTag'
]
ElTimeline
:
typeof
import
(
'element-plus/es'
)[
'ElTimeline'
]
ElTimelineItem
:
typeof
import
(
'element-plus/es'
)[
'ElTimelineItem'
]
ElTimePicker
:
typeof
import
(
'element-plus/es'
)[
'ElTimePicker'
]
ElTooltip
:
typeof
import
(
'element-plus/es'
)[
'ElTooltip'
]
ElTree
:
typeof
import
(
'element-plus/es'
)[
'ElTree'
]
ElUpload
:
typeof
import
(
'element-plus/es'
)[
'ElUpload'
]
...
...
src/views/order/podCN/index.vue
View file @
ee688c69
...
...
@@ -806,7 +806,7 @@
</span>
<span
v-if=
"status === 'WAIT_SHIPMENT'"
class=
"item"
>
<ElButton
type=
"warning"
@
click=
"showPrintSku"
>
打印库存sku标签
</ElButton
>
打印库存sku标签
</ElButton
>
</span>
</ElFormItem>
...
...
@@ -2981,13 +2981,15 @@ const changeExceptionOrder = async () => {
}
const
showPrintSku
=
async
()
=>
{
if
(
!
selection
.
value
.
length
)
{
if
(
!
selection
.
value
.
length
)
{
return
ElMessage
.
warning
(
'请选择数据'
)
}
await
printWarehouseSkuDialogRef
.
value
?.
open
(
1
,
selection
.
value
.
map
((
item
)
=>
item
.
id
).
join
(
','
))
await
printWarehouseSkuDialogRef
.
value
?.
open
(
1
,
selection
.
value
.
map
((
item
)
=>
item
.
id
).
join
(
','
),
)
}
const
handleExceptionConfirm
=
async
()
=>
{
try
{
await
exceptionFormRef
.
value
.
validate
()
...
...
@@ -3034,7 +3036,10 @@ const printNormal = async () => {
}
selection
.
value
.
forEach
((
s
)
=>
{
const
f
=
s
.
productList
&&
s
.
productList
.
find
((
p
)
=>
p
.
productMark
===
'normal'
)
s
.
productList
&&
s
.
productList
.
find
(
(
p
)
=>
p
.
productMark
===
'normal'
||
p
.
productMark
===
'custom_normal'
,
)
if
(
f
)
arr
.
push
(
s
.
id
)
}
)
if
(
!
arr
.
length
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment