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
88b48449
Commit
88b48449
authored
Jun 15, 2026
by
wusiyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复配货分拣扫码切换配货区且配货完成后弹窗提示bug
parent
3938c266
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
src/views/order/podUs/PodMakeOrder.vue
+6
-7
No files found.
src/views/order/podUs/PodMakeOrder.vue
View file @
88b48449
...
...
@@ -216,8 +216,6 @@
>
,不占用播种墙
</div>
<div
class=
"box-top-item-status"
>
{{ isAutoPrint }}
{{ podOrderDetailsData?.printResult }}
<span
v-if=
"
isAutoPrint &&
...
...
@@ -750,7 +748,6 @@ const renderItemBox = (bool: boolean) => {
data
.
printResult
===
'printSuccess'
)
{
submitInspection
(()
=>
{
getPackingData
(
currentCode
)
renderLock
=
false
})
return
...
...
@@ -948,7 +945,7 @@ const getPackingData = async (code: string) => {
(
!!
area
&&
warehouseId
.
value
!=
area
.
warehouseId
)
syncSortingArea
(
packingId
as
number
,
respFactoryNo
??
factoryNo
)
if
(
areaChanged
)
{
await
initOrderDetailBox
()
await
initOrderDetailBox
(
'scan'
)
}
}
...
...
@@ -1027,7 +1024,7 @@ const submitInspection = async (callback: () => void) => {
warehouseId
.
value
,
sortingAreaId
.
value
,
)
if
(
res
.
code
!==
200
)
return
//
if (res.code !== 200) return
ElMessage
.
warning
(
res
.
message
)
isLock
.
value
=
false
coverImage
.
value
=
''
...
...
@@ -1043,7 +1040,7 @@ const submitInspection = async (callback: () => void) => {
}
}
const
isBillLading
=
ref
<
boolean
>
(
false
)
const
initOrderDetailBox
=
async
()
=>
{
const
initOrderDetailBox
=
async
(
type
:
'scan'
|
'manual'
=
'manual'
)
=>
{
const
factoryNo
=
userStore
.
user
?.
factory
.
id
if
(
!
factoryNo
)
{
return
...
...
@@ -1131,8 +1128,10 @@ const initOrderDetailBox = async () => {
const
pickFinished
=
boxList
.
filter
((
item
)
=>
{
return
item
.
data
?.
productList
?.
every
((
product
)
=>
product
.
power
)
})
// 配货分拣 扫码切换配货区且配货完成 不提示
const
boxs
=
pickFinished
.
map
((
item
)
=>
item
.
box
)
if
(
boxs
.
length
>
0
)
{
if
(
type
===
'manual'
&&
boxs
.
length
>
0
)
{
if
(
props
.
wallType
===
'sort'
&&
!
isAutoPrint
.
value
)
{
return
}
...
...
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