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
3fbb5b52
Commit
3fbb5b52
authored
Sep 07, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出货反审
parent
0dcd6e52
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
0 deletions
+32
-0
detail.vue
src/views/bpm/processInstance/detail.vue
+5
-0
review.vue
src/views/ecw/box/shippingAir/nodePage/review.vue
+19
-0
seaProcess.vue
src/views/ecw/box/shippingAir/seaProcess.vue
+8
-0
No files found.
src/views/bpm/processInstance/detail.vue
View file @
3fbb5b52
...
...
@@ -432,6 +432,11 @@ export default {
shipment_order_sorting
:
{
component
:
"
shippingDetail
"
,
processId
:
this
.
processInstance
.
businessKey
},
// 出货反审
shipment_review
:
{
component
:
"
shippingDetail
"
,
processId
:
this
.
processInstance
.
businessKey
}
}
console
.
log
(
'
formCustomViewPath
'
,
this
.
processInstance
.
processDefinition
.
formCustomViewPath
.
trim
())
...
...
src/views/ecw/box/shippingAir/nodePage/review.vue
View file @
3fbb5b52
...
...
@@ -6,6 +6,7 @@
</el-form-item>
<span
v-if=
"voKey=='preInstallBackInfo'"
style=
"color: red;margin-left: 120px;"
>
{{
$t
(
'
请注意,分拣反审后,全部提单需重新制作
'
)
}}
</span>
</el-form>
<work-flow
v-if=
"xmlKey"
:xmlkey=
"xmlKey"
v-model=
"copyUserId"
></work-flow>
<el-row
class=
"operate-button"
>
<el-button
type=
"success"
@
click=
"onSubmit"
v-show=
"!isReview"
>
{{
$t
(
'
发起申请
'
)
}}
</el-button>
<el-button
type=
"primary"
@
click=
"jumpReviewDetail"
v-show=
"isReview"
>
{{
$t
(
'
审核中
'
)
}}
</el-button>
...
...
@@ -18,6 +19,7 @@
<
script
>
import
{
approvalCreate
,
approvalCancel
}
from
"
@/api/ecw/boxSea
"
;
import
{
serviceMsg
,
toReviewDetail
}
from
"
../utils
"
;
import
WorkFlow
from
"
@/components/WorkFlow/index.vue
"
;
/**
* 反审
...
...
@@ -25,6 +27,7 @@ import { serviceMsg, toReviewDetail } from "../utils";
export
default
{
name
:
"
review
"
,
inheritAttrs
:
false
,
components
:
{
WorkFlow
},
data
()
{
return
{
// 反审对象
...
...
@@ -32,8 +35,21 @@ export default {
isReview
:
false
,
bpmProcessId
:
""
,
voKey
:
""
,
copyUserId
:
[],
// 抄送人
};
},
computed
:{
type
(){
return
this
.
$attrs
.
currNode
?.
type
},
xmlKey
(){
if
(
!
this
.
type
)
return
null
return
{
// 出货反审核
'
shipment
'
:
'
shipment_audit_no
'
}[
this
.
type
]
}
},
created
()
{
const
{
currNode
,
shipmentObj
}
=
this
.
$attrs
;
...
...
@@ -48,6 +64,8 @@ export default {
case
"
unloading
"
:
voKey
=
"
cabinetUnloadBackApprovalInfo
"
;
break
;
case
"
shipment
"
:
voKey
=
"
airShipmentApprovalInfo
"
;
}
if
(
voKey
)
{
...
...
@@ -95,6 +113,7 @@ export default {
let
approvalType
=
14
;
// 预装反审
if
(
currNode
.
type
===
"
cabinet
"
)
approvalType
=
9
;
// 装柜反审
if
(
currNode
.
type
===
"
unloading
"
)
approvalType
=
16
;
// 到仓反审核
if
(
currNode
.
type
===
"
shipment
"
)
approvalType
=
19
;
// 出货反审核
approvalCreate
({
shipmentId
:
shipmentObj
.
id
,
...
...
src/views/ecw/box/shippingAir/seaProcess.vue
View file @
3fbb5b52
...
...
@@ -162,6 +162,14 @@ export default {
this
.
$set
(
this
.
dialogConfig
,
"
fullscreen
"
,
true
);
this
.
$set
(
this
.
dialogConfig
,
"
title
"
,
this
.
$t
(
"
合包列表
"
));
break
;
// 出货
case
"
shipment
"
:
if
(
this
.
shipmentObj
[
node
.
keyName
]
==
175
)
{
this
.
currentComponent
=
`reviewWidget`
;
this
.
$set
(
this
.
dialogConfig
,
"
width
"
,
"
700px
"
);
this
.
$set
(
this
.
dialogConfig
,
"
title
"
,
this
.
$t
(
"
出货反审
"
));
}
break
;
// 清关文件
case
"
clrDocument
"
:
this
.
$set
(
this
.
dialogConfig
,
"
width
"
,
"
700px
"
);
...
...
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