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
18b22a43
Commit
18b22a43
authored
Jun 06, 2025
by
qinjianhui
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into 'master'
Dev See merge request
!19
parents
67bae872
d3cf6971
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
src/views/order/podUs/PodMakeOrder.vue
+4
-1
src/views/order/podUs/index.vue
+24
-1
No files found.
src/views/order/podUs/PodMakeOrder.vue
View file @
18b22a43
...
...
@@ -800,7 +800,10 @@ const handlePrinterChange = (value: string) => {
const
print
=
(
data
:
OrderData
,
forcePrint
=
false
,
callback
?:
()
=>
void
)
=>
{
const
_boxIndex
=
boxIndex
.
value
if
(
!
forcePrint
&&
data
.
printResult
)
return
if
(
!
forcePrint
&&
data
.
printResult
)
{
callback
&&
callback
()
return
}
props
.
printOrder
(
data
,
(
status
:
boolean
)
=>
{
callback
&&
callback
()
...
...
src/views/order/podUs/index.vue
View file @
18b22a43
...
...
@@ -1321,6 +1321,7 @@ const handleUpdateRemark = async (item: ProductList) => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
updateRemarkApi
(
item
.
id
,
value
)
...
...
@@ -1358,6 +1359,7 @@ const submitConfirm = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
confirmOrderApi
(
...
...
@@ -1393,6 +1395,7 @@ const updateOrder = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
updateExceptionOrderApi
(
ids
)
...
...
@@ -1414,6 +1417,7 @@ const printProductionOrder = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
printProductionOrderApi
(
orderIds
)
...
...
@@ -1434,6 +1438,7 @@ const printPickingOrder = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
printPrintOrderApi
(
orderIds
)
...
...
@@ -1463,6 +1468,7 @@ const pickingComplete = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
printPickingOrderApi
(
orderIds
)
...
...
@@ -1491,6 +1497,7 @@ const changeExceptionOrder = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
changeExceptionOrderApi
(
orderIds
,
value
)
...
...
@@ -1519,6 +1526,7 @@ const cancelOrder = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
cancelOrderApi
(
orderIds
,
value
)
...
...
@@ -1601,6 +1609,7 @@ const downloadMaterial = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
downloadMaterialApi
(
selectedIds
)
...
...
@@ -1750,7 +1759,8 @@ const stockOutCheck = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
}
)
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
selectedIds
=
selection
.
value
.
map
((
item
)
=>
item
.
id
)
const
res
=
await
stockOutCheckApi
(
selectedIds
)
...
...
@@ -1813,6 +1823,7 @@ const toBePicking = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'操作中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
toBePickingApi
(
selection
.
value
.
map
((
item
)
=>
item
.
id
))
...
...
@@ -1995,6 +2006,7 @@ const openDetail = async (id: number) => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'加载中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
getOrderDetailById
(
id
)
...
...
@@ -2045,6 +2057,7 @@ const refreshMaterial = async () => {
const
loading
=
ElLoading
.
service
({
fullscreen
:
true
,
text
:
'刷新中...'
,
background
:
'rgba(0, 0, 0, 0.3)'
,
}
)
try
{
const
res
=
await
refreshMaterialApi
(
...
...
@@ -2184,6 +2197,16 @@ onMounted(() => {
gap
:
10
px
;
font
-
size
:
12
px
;
margin
-
top
:
10
px
;
.
grid
-
item
{
display
:
flex
;
overflow
:
hidden
;
.
grid
-
item
-
value
{
flex
:
1
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
.
factory
-
sub
-
order
-
number
{
...
...
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