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
2ec7f051
Commit
2ec7f051
authored
Oct 22, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
到仓功能优化
parent
0669a303
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
5 deletions
+20
-5
startUnloading.vue
...ecw/box/shippingAir/nodePage/unloading/startUnloading.vue
+18
-4
seaProcess.vue
src/views/ecw/box/shippingAir/seaProcess.vue
+2
-1
No files found.
src/views/ecw/box/shippingAir/nodePage/unloading/startUnloading.vue
View file @
2ec7f051
...
...
@@ -19,6 +19,10 @@
{{
$t
(
'
过机重量异常
'
)
}}
:
{{
$t
(
'
过机放行-已找到重货订单
'
)
}}
:
<span
v-for=
"order in strToArray(pageData.boxCustomsBackVO.overOrders)"
:key=
"order"
>
{{
getOrders
(
order
)
}}
</span>
</p>
</el-row>
<el-row
class=
"number-area"
>
<p
class=
"label-font"
><span
style=
"color:red"
>
*
</span>
{{
$t
(
'
到仓时间
'
)
}}
:
</p>
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"ulWarehouseTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
</el-row>
<el-row
class=
"number-area"
>
<p
class=
"label-font"
>
{{
$t
(
'
自编号
'
)
}}
:
</p>
<p
class=
"label-font"
>
{{
selfNo
}}
</p>
...
...
@@ -127,12 +131,12 @@
<!-- 操作 -->
<div
v-if=
"!isUnderReview"
>
<el-button
type=
"success"
@
click=
"onSubmit"
>
{{$t('提交完成到仓审核')}}
</el-button>
<el-button
plain
type=
"primary"
@
click=
"$emit('close
Start
')"
>
{{$t('返回')}}
</el-button>
<el-button
plain
type=
"primary"
@
click=
"$emit('close
Dialog
')"
>
{{$t('返回')}}
</el-button>
</div>
<div
v-if=
"isUnderReview"
>
<el-button
type=
"primary"
@
click=
"jumpReviewDetail"
>
{{$t('到仓审核中')}}
</el-button>
<el-button
plain
type=
"primary"
@
click=
"canclAudit"
>
{{$t('取消审核')}}
</el-button>
<el-button
plain
type=
"primary"
@
click=
"$emit('close
Start
')"
>
{{$t('返回')}}
</el-button>
<el-button
plain
type=
"primary"
@
click=
"$emit('close
Dialog
')"
>
{{$t('返回')}}
</el-button>
</div>
</el-row>
...
...
@@ -193,7 +197,8 @@ export default {
totalStatistics
:
{},
},
selectedUsers
:
[],
sectionOrderList
:
[]
sectionOrderList
:
[],
ulWarehouseTime
:
null
};
},
created
()
{
...
...
@@ -265,9 +270,14 @@ export default {
this
.
$message
.
error
(
this
.
$t
(
"
请输入订单号
"
));
return
;
}
if
(
!
this
.
ulWarehouseTime
)
{
this
.
$message
.
error
(
this
.
$t
(
"
请选择到仓时间
"
));
return
;
}
batchUnload
({
orderNo
:
this
.
labelNo
,
shipmentId
:
this
.
$attrs
.
shipmentObj
.
id
,
unloadTime
:
this
.
ulWarehouseTime
}).
then
((
res
)
=>
{
serviceMsg
(
res
,
this
).
then
((
res
)
=>
{
this
.
labelNo
=
""
;
...
...
@@ -277,11 +287,15 @@ export default {
},
/* 一键卸柜 */
modifyAllUnload
()
{
if
(
!
this
.
ulWarehouseTime
)
{
this
.
$message
.
error
(
this
.
$t
(
"
请选择到仓时间
"
));
return
;
}
this
.
$confirm
(
this
.
$t
(
"
确认到仓?
"
),
this
.
$t
(
"
提示
"
),
{
type
:
"
warning
"
,
})
.
then
((
_
)
=>
{
allUnload
({
shipmentId
:
this
.
$attrs
.
shipmentObj
.
id
}).
then
((
res
)
=>
{
allUnload
({
shipmentId
:
this
.
$attrs
.
shipmentObj
.
id
,
unloadTime
:
this
.
ulWarehouseTime
}).
then
((
res
)
=>
{
serviceMsg
(
res
,
this
).
then
((
res
)
=>
{
this
.
getLoadGoodsList
();
});
...
...
src/views/ecw/box/shippingAir/seaProcess.vue
View file @
2ec7f051
...
...
@@ -42,7 +42,7 @@ import arrivalWidget from "./nodePage/arrival.vue";
import
cusClearanceWidget
from
"
./nodePage/cusClearance.vue
"
;
import
twoWayTakeoffWidget
from
"
./nodePage/twoWayTakeoff.vue
"
;
import
twoWayArrivalWidget
from
"
./nodePage/twoWayArrival.vue
"
;
import
unloadingWidget
from
"
./nodePage/unloading/
index
.vue
"
;
import
unloadingWidget
from
"
./nodePage/unloading/
startUnloading
.vue
"
;
import
settlementWidget
from
"
./nodePage/settlement.vue
"
;
import
reviewWidget
from
"
./nodePage/review.vue
"
;
import
shipmentWidget
from
"
./nodePage/shipment.vue
"
;
...
...
@@ -216,6 +216,7 @@ export default {
break
;
// 卸柜
case
"
unloading
"
:
this
.
$set
(
this
.
dialogConfig
,
"
fullscreen
"
,
true
);
// 卸柜反审
const
unStatus
=
this
.
shipmentObj
[
node
.
keyName
];
if
([
186
].
includes
(
unStatus
))
{
...
...
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