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
03bd642a
Commit
03bd642a
authored
Dec 21, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出仓增加一个计划箱数、实际箱数
合包装箱点击任意一个箱号,展示都是第一次打开箱号的订单列表
parent
8db3465f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
checkout.vue
src/views/ecw/box/shippingAir/nodePage/checkout.vue
+14
-0
index.vue
src/views/ecw/box/shippingAir/nodePage/mergePkg/index.vue
+1
-1
seaProcess.vue
src/views/ecw/box/shippingAir/seaProcess.vue
+8
-0
No files found.
src/views/ecw/box/shippingAir/nodePage/checkout.vue
View file @
03bd642a
...
@@ -60,6 +60,14 @@
...
@@ -60,6 +60,14 @@
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"airCheckoutObj.checkoutTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"airCheckoutObj.checkoutTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('计划箱数')"
prop=
"planNum"
>
<el-input-number
v-model=
"airCheckoutObj.planNum"
:controls=
"false"
:precision=
"0"
disabled
/>
</el-form-item>
<el-form-item
:label=
"$t('出仓箱数')"
prop=
"realNum"
>
<el-input-number
v-model=
"airCheckoutObj.realNum"
:controls=
"false"
:precision=
"0"
/>
</el-form-item>
<el-form-item
:label=
"$t('出仓影像')"
>
<el-form-item
:label=
"$t('出仓影像')"
>
<ImageUpload
:limit=
"1"
:isShowTip=
false
v-model=
"airCheckoutObj.checkoutFiles"
/>
<ImageUpload
:limit=
"1"
:isShowTip=
false
v-model=
"airCheckoutObj.checkoutFiles"
/>
</el-form-item>
</el-form-item>
...
@@ -113,6 +121,8 @@ export default {
...
@@ -113,6 +121,8 @@ export default {
let
oldData
=
{
...
this
.
$attrs
.
shipmentObj
[
voName
]
};
let
oldData
=
{
...
this
.
$attrs
.
shipmentObj
[
voName
]
};
oldData
=
formatDateStr
(
oldData
,
[
"
checkoutTime
"
]);
oldData
=
formatDateStr
(
oldData
,
[
"
checkoutTime
"
]);
this
.
airCheckoutObj
=
oldData
;
this
.
airCheckoutObj
=
oldData
;
this
.
$set
(
this
.
airCheckoutObj
,
'
planNum
'
,
this
.
$attrs
.
shipmentObj
.
planNum
)
this
.
$set
(
this
.
airCheckoutObj
,
'
realNum
'
,
this
.
$attrs
.
shipmentObj
.
realNum
)
let
shipmentdData
=
{
...
this
.
$attrs
.
shipmentObj
[
"
boxAirShipmentBackVO
"
]
};
let
shipmentdData
=
{
...
this
.
$attrs
.
shipmentObj
[
"
boxAirShipmentBackVO
"
]
};
shipmentdData
=
formatDateStr
(
shipmentdData
,
[
"
deliverTime
"
]);
shipmentdData
=
formatDateStr
(
shipmentdData
,
[
"
deliverTime
"
]);
...
@@ -124,6 +134,10 @@ export default {
...
@@ -124,6 +134,10 @@ export default {
onSubmit
(
operateType
)
{
onSubmit
(
operateType
)
{
this
.
$refs
[
"
airCheckoutForm
"
].
validate
((
valid
)
=>
{
this
.
$refs
[
"
airCheckoutForm
"
].
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
valid
)
{
if
(
this
.
airCheckoutObj
.
planNum
!=
this
.
airCheckoutObj
.
realNum
){
this
.
$message
.
error
(
this
.
$t
(
"
出仓件数与计划出仓件数不一致,请检查
"
));
return
;
}
airCheckoutCreate
({
airCheckoutCreate
({
...
this
.
airCheckoutObj
,
...
this
.
airCheckoutObj
,
shipmentId
:
this
.
$attrs
.
shipmentObj
.
id
,
shipmentId
:
this
.
$attrs
.
shipmentObj
.
id
,
...
...
src/views/ecw/box/shippingAir/nodePage/mergePkg/index.vue
View file @
03bd642a
...
@@ -129,7 +129,7 @@
...
@@ -129,7 +129,7 @@
<el-radio-button
:label=
"2"
>
{{ $t('已装箱列表') }}
</el-radio-button>
<el-radio-button
:label=
"2"
>
{{ $t('已装箱列表') }}
</el-radio-button>
</el-radio-group>
</el-radio-group>
</div>
</div>
<pkg-page
:pkgData=
"showPkgData"
:shipmentObj=
"shipmentObj"
flag=
"show"
@
closeDialog=
"closeDialog"
@
reload=
"getList"
/>
<pkg-page
v-if=
"showPagedialogVisible"
:pkgData=
"showPkgData"
:shipmentObj=
"shipmentObj"
flag=
"show"
@
closeDialog=
"closeDialog"
@
reload=
"getList"
/>
</el-dialog>
</el-dialog>
<el-row
style=
"margin-top: 15px"
class=
"operate-button"
>
<el-row
style=
"margin-top: 15px"
class=
"operate-button"
>
...
...
src/views/ecw/box/shippingAir/seaProcess.vue
View file @
03bd642a
...
@@ -186,6 +186,10 @@ export default {
...
@@ -186,6 +186,10 @@ export default {
break
;
break
;
// 清关
// 清关
case
"
cusClearance
"
:
case
"
cusClearance
"
:
if
(
!
this
.
shipmentObj
.
sapStatus
||
this
.
shipmentObj
.
sapStatus
<=
151
){
this
.
$message
.
error
(
this
.
$t
(
"
请先完成到港操作
"
));
return
;
}
this
.
$set
(
this
.
dialogConfig
,
"
width
"
,
"
700px
"
);
this
.
$set
(
this
.
dialogConfig
,
"
width
"
,
"
700px
"
);
break
;
break
;
// AGENT
// AGENT
...
@@ -220,6 +224,10 @@ export default {
...
@@ -220,6 +224,10 @@ export default {
break
;
break
;
// 卸柜
// 卸柜
case
"
unloading
"
:
case
"
unloading
"
:
if
(
!
this
.
shipmentObj
.
sapStatus
||
this
.
shipmentObj
.
sapStatus
<=
151
){
this
.
$message
.
error
(
this
.
$t
(
"
请先完成到港操作
"
));
return
;
}
// 卸柜反审
// 卸柜反审
const
unStatus
=
this
.
shipmentObj
[
node
.
keyName
];
const
unStatus
=
this
.
shipmentObj
[
node
.
keyName
];
if
([
186
].
includes
(
unStatus
))
{
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