Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
f66a0cba
Commit
f66a0cba
authored
Nov 22, 2022
by
huhaiqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复缺陷单
parent
820a2803
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
7 deletions
+35
-7
query.vue
src/views/ecw/box/query.vue
+11
-1
cusDeclaration.vue
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
+3
-1
updateError.vue
src/views/ecw/box/updateError.vue
+21
-5
No files found.
src/views/ecw/box/query.vue
View file @
f66a0cba
...
...
@@ -191,7 +191,7 @@
<costForm
v-if=
"dialogConfig.visible"
@
closeDialog=
"closeDialog"
:shipmentObj=
"shipmentObj"
:costDetail=
"costDetail"
/>
</
template
>
<
template
v-if=
"dialogConfig.type === 'error'"
>
<regError
v-if=
"dialogConfig.visible"
@
closeDialog=
"closeDialog"
:shipmentObj=
"shipmentObj"
/>
<regError
v-if=
"dialogConfig.visible"
@
closeDialog=
"closeDialog"
:shipmentObj=
"shipmentObj"
:allUsers=
"allUsers"
/>
</
template
>
<
template
v-if=
"dialogConfig.type === 'updateError'"
>
<updateError
v-if=
"dialogConfig.visible"
@
closeDialog=
"closeDialog"
:shipmentObj=
"shipmentObj"
:errorInfo=
"errorInfo"
/>
...
...
@@ -225,6 +225,7 @@ import costForm from "./costForm.vue";
import
regError
from
"
./regError.vue
"
;
import
editForm
from
"
./editForm.vue
"
;
import
updateError
from
"
./updateError.vue
"
;
import
{
listUser
}
from
"
@/api/system/user
"
;
export
default
{
name
:
"
boxDetail
"
,
...
...
@@ -243,6 +244,11 @@ export default {
).
filter
((
item
)
=>
item
.
value
==
"
1
"
||
item
.
value
==
"
2
"
);
this
.
initData
();
this
.
queryAllData
();
// 用户
listUser
({
pageNo
:
"
1
"
,
pageSize
:
"
10000
"
}).
then
((
res
)
=>
{
const
{
data
}
=
res
;
this
.
allUsers
=
data
.
list
??
[];
});
},
data
()
{
return
{
...
...
@@ -256,6 +262,7 @@ export default {
warehouseList
:
[],
// 供应商
allSupplier
:
[],
allUsers
:
[],
// 部分list
sectionList
:
[],
// 单证数组
...
...
@@ -312,6 +319,8 @@ export default {
// 修改异常
errorInfo
:
{
orderList
:
[],
errorType
:
""
,
operate
:
""
,
},
};
},
...
...
@@ -347,6 +356,7 @@ export default {
}
this
.
getErrorType
();
this
.
$set
(
this
.
errorInfo
,
"
orderList
"
,
orders
);
this
.
$set
(
this
.
errorInfo
,
"
operate
"
,
type
);
// 判断异常类型
this
.
handleCommand
(
"
updateError
"
);
},
...
...
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
View file @
f66a0cba
...
...
@@ -542,6 +542,7 @@ export default {
"
cusDeclarationObj.dcCustomsStatus
"
(
val
)
{
if
(
val
!==
"
3
"
)
{
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcCheckStatus
"
,
""
);
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcPassTime
"
,
""
);
}
else
{
const
{
customsInfo
=
{}
}
=
this
.
shipmentObj
;
this
.
$set
(
...
...
@@ -574,7 +575,8 @@ export default {
},
// 查验状态
"
cusDeclarationObj.dcCheckStatus
"
(
val
)
{
if
(
val
!==
this
.
cusDeclarationObj
.
dcCheckStatus
)
{
const
{
customsInfo
=
{}
}
=
this
.
shipmentObj
;
if
(
val
!=
customsInfo
.
dcCheckStatus
)
{
this
.
$set
(
this
.
cusDeclarationObj
,
"
dcPassTime
"
,
""
);
}
},
...
...
src/views/ecw/box/updateError.vue
View file @
f66a0cba
...
...
@@ -83,11 +83,27 @@ export default {
watch
:
{
errorInfo
:
{
handler
:
function
(
val
)
{
const
{
errorType
,
orderList
}
=
val
;
this
.
headerTitle
=
this
.
$t
(
"
确定给{selfNo}下的{orderNos}更新状态吗?
"
,
{
selfNo
:
this
.
shipmentObj
.
selfNo
,
orderNos
:
orderList
.
map
((
item
)
=>
item
.
orderNo
).
join
(
"
,
"
)
??
""
,
});
const
{
errorType
,
orderList
,
operate
}
=
val
;
if
(
operate
===
"
single
"
)
{
this
.
headerTitle
=
this
.
$t
(
"
确定给{selfNo}下的{orderNos}更新状态吗?
"
,
{
selfNo
:
this
.
shipmentObj
.
selfNo
,
orderNos
:
orderList
.
map
((
item
)
=>
item
.
orderNo
).
join
(
"
,
"
)
??
""
,
}
);
}
else
{
this
.
headerTitle
=
this
.
$t
(
`确定给{selfNo}下的
${
operate
===
"
all
"
?
"
所有订单
"
:
"
所选订单
"
}
更新状态吗?`
,
{
selfNo
:
this
.
shipmentObj
.
selfNo
,
}
);
}
switch
(
errorType
)
{
// 报关异常
case
"
customs
"
:
...
...
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