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
0eeea998
Commit
0eeea998
authored
Dec 11, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出货阶段的入仓修改和订单修改状态节点权限修正,海运是装柜审批完成,空运是已出仓
parent
182b7989
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
index.vue
src/views/ecw/order/index.vue
+4
-3
No files found.
src/views/ecw/order/index.vue
View file @
0eeea998
...
...
@@ -340,7 +340,7 @@
<el-dropdown-menu
slot=
"dropdown"
>
<!--出货订单编辑,shipmentState > 0表示出货后,inWarehouseState == 0 表示预装未审核或者是卸柜到仓 , shipmentState==307 表示已预装,待封柜, shipmentState==407 表示已预装,待封柜)-->
<template
v-if=
"scope.row.shipmentState > 0 && scope.row.inWarehouseState == 0 &&
scope.row.shipmentState != 305 && scope.row.shipmentState != 307 && scope.row.shipmentState != 407
"
v-if=
"scope.row.shipmentState > 0 && scope.row.inWarehouseState == 0 &&
exclude(scope.row.shipmentState, [305, 307, 309, 310, 311, 313, 407,409,411])
"
>
<el-dropdown-item
@
click.native=
"handleUpdate(scope.row)"
...
...
@@ -497,7 +497,7 @@
</
template
>
<!-- 入仓补充 -->
<
template
v-if=
"scope.row.shipmentState > 0 && scope.row.inWarehouseState == 0 &&
scope.row.shipmentState != 305 && scope.row.shipmentState != 307 && scope.row.shipmentState != 407
"
v-if=
"scope.row.shipmentState > 0 && scope.row.inWarehouseState == 0 &&
exclude(scope.row.shipmentState, [305, 307, 309, 310, 311, 313, 407,409,411])
"
>
<el-dropdown-item
@
click.native=
"$router.push('/order/warehousing-add?shipment=1&id=' + scope.row.orderId)"
...
...
@@ -525,7 +525,8 @@
</
template
>
<!-- 入仓修改 -->
<
template
v-if=
"scope.row.shipmentState > 0 && scope.row.inWarehouseState == 0 && scope.row.shipmentState != 305 && scope.row.shipmentState != 307 && scope.row.shipmentState != 407"
v-if=
"scope.row.shipmentState > 0 && scope.row.inWarehouseState == 0
&& exclude(scope.row.shipmentState, [305, 307, 309, 310, 311, 313, 407,409,411])"
>
<el-dropdown-item
@
click.native=
"$router.push('/order/warehousing-update?shipment=1&id=' + scope.row.orderId)"
...
...
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