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
a12ddae7
Commit
a12ddae7
authored
Jan 16, 2025
by
xiaoyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 装柜装箱增加属性
parent
fbe9d15a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
100 additions
and
2 deletions
+100
-2
startPacking.vue
...ews/ecw/box/shippingAir/nodePage/cabinet/startPacking.vue
+29
-0
pkgPage.vue
src/views/ecw/box/shippingAir/nodePage/mergePkg/pkgPage.vue
+21
-1
unPkgPage.vue
...views/ecw/box/shippingAir/nodePage/mergePkg/unPkgPage.vue
+21
-1
startPacking.vue
...ews/ecw/box/shippingSea/nodePage/cabinet/startPacking.vue
+29
-0
No files found.
src/views/ecw/box/shippingAir/nodePage/cabinet/startPacking.vue
View file @
a12ddae7
...
...
@@ -67,6 +67,13 @@
</div>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('包装类型')"
align=
"center"
prop=
""
>
<
template
slot-scope=
"scope"
>
<span
v-for=
"(unit,index) in scope.row.units.split(',')"
:key=
"index"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/><span
v-if=
"index
<scope
.
row
.
units
.
split
(',').
length-1
"
>
,
</span>
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('关联单')"
align=
"center"
prop=
"hasRelationOrder"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<el-link
type=
"primary"
v-if=
"scope.row.hasRelationOrder"
@
click.native=
"showRelatedOrder(scope.row)"
>
{{
$t
(
'
有
'
)
}}
</el-link>
...
...
@@ -93,6 +100,11 @@
{{
getTotlContent
(
scope
.
row
,[
'
weight
'
])
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('储位')"
align=
"center"
prop=
"positionNo"
>
<
template
slot-scope=
"scope"
>
{{
notset
(
scope
.
row
.
positionNo
)
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('操作')"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"text"
size=
"small"
@
click=
"moveOut(scope.row)"
v-if=
"!isUnderReview && scope.row.installNum === 0"
>
{{
$t
(
'
移出
'
)
}}
</el-button>
...
...
@@ -364,6 +376,23 @@ export default {
this
.
newshipmentObj
=
data
??
{};
});
},
//去重
notset
(
string
)
{
if
(
!
string
)
return
string
let
arr
=
string
.
split
(
'
,
'
)
arr
=
arr
.
filter
((
item
,
index
)
=>
{
return
arr
.
indexOf
(
item
)
==
index
})
return
arr
.
toString
()
},
getpositionNo
(
arr
){
if
(
!
arr
)
return
arr
let
data
=
[]
arr
.
forEach
(
item
=>
{
data
.
push
(
item
.
areaName
+
item
.
locationName
)
})
return
data
.
toString
()
},
/* 装柜部分列表 */
getLoadSecGoodsList
()
{
loadSecGoodsList
({
shipmentId
:
this
.
shipmentObj
.
id
}).
then
((
res
)
=>
{
...
...
src/views/ecw/box/shippingAir/nodePage/mergePkg/pkgPage.vue
View file @
a12ddae7
...
...
@@ -87,6 +87,26 @@
/>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('报关方式')"
align=
"center"
prop=
"customsType"
>
<
template
slot-scope=
"scope"
>
<div
:class=
"scope.row.customsType !== 1 ? 'custom_type_red' : ''"
>
<dict-tag
:type=
"DICT_TYPE.ECW_CUSTOMS_TYPE"
:value=
"scope.row.customsType"
/>
</div>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('包装类型')"
align=
"center"
prop=
""
>
<
template
slot-scope=
"scope"
>
<span
v-for=
"(unit,index) in scope.row.units.split(',')"
:key=
"index"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/><span
v-if=
"index
<scope
.
row
.
units
.
split
(',').
length-1
"
>
,
</span>
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('关联单')"
align=
"center"
prop=
"hasRelationOrder"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<el-link
type=
"primary"
v-if=
"scope.row.hasRelationOrder"
@
click.native=
"showRelatedOrder(scope.row)"
>
{{
$t
(
'
有
'
)
}}
</el-link>
<span
v-else
>
{{
$t
(
'
无
'
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('计划/已装')"
align=
"center"
...
...
@@ -94,7 +114,7 @@
>
<
template
slot-scope=
"scope"
>
<el-link
type=
"primary"
@
click.native=
"orderClick(scope.row)"
>
{{
scope
.
row
.
sumNum
}}
/
{{
scope
.
row
.
installNum
}}
{{
scope
.
row
.
sumNum
}}
/
{{
scope
.
row
.
installNum
}}
<span
v-if=
"scope.row.mixStatus === 1"
>
(
{{
$t
(
'
混箱
'
)
}}
)
</span>
</el-link>
</
template
>
</el-table-column>
...
...
src/views/ecw/box/shippingAir/nodePage/mergePkg/unPkgPage.vue
View file @
a12ddae7
...
...
@@ -25,9 +25,29 @@
<dict-tag
:type=
"DICT_TYPE.PRODUCT_RECORD_ATTRIBUTE"
:value=
"row.productRecord"
/>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('报关方式')"
align=
"center"
prop=
"customsType"
>
<
template
slot-scope=
"scope"
>
<div
:class=
"scope.row.customsType !== 1 ? 'custom_type_red' : ''"
>
<dict-tag
:type=
"DICT_TYPE.ECW_CUSTOMS_TYPE"
:value=
"scope.row.customsType"
/>
</div>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('包装类型')"
align=
"center"
prop=
""
>
<
template
slot-scope=
"scope"
>
<span
v-for=
"(unit,index) in scope.row.units.split(',')"
:key=
"index"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/><span
v-if=
"index
<scope
.
row
.
units
.
split
(',').
length-1
"
>
,
</span>
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('关联单')"
align=
"center"
prop=
"hasRelationOrder"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<el-link
type=
"primary"
v-if=
"scope.row.hasRelationOrder"
@
click.native=
"showRelatedOrder(scope.row)"
>
{{
$t
(
'
有
'
)
}}
</el-link>
<span
v-else
>
{{
$t
(
'
无
'
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('箱数')"
align=
"center"
prop=
"sumNum"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
sumNum
}}
{{
scope
.
row
.
sumNum
}}
<span
v-if=
"scope.row.mixStatus === 1"
>
(
{{
$t
(
'
混箱
'
)
}}
)
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('纸箱尺寸')"
align=
"center"
>
...
...
src/views/ecw/box/shippingSea/nodePage/cabinet/startPacking.vue
View file @
a12ddae7
...
...
@@ -67,6 +67,13 @@
</div>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('包装类型')"
align=
"center"
prop=
""
>
<
template
slot-scope=
"scope"
>
<span
v-for=
"(unit,index) in scope.row.units.split(',')"
:key=
"index"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/><span
v-if=
"index
<scope
.
row
.
units
.
split
(',').
length-1
"
>
,
</span>
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('关联单')"
align=
"center"
prop=
"hasRelationOrder"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<el-link
type=
"primary"
v-if=
"scope.row.hasRelationOrder"
@
click.native=
"showRelatedOrder(scope.row)"
>
{{
$t
(
'
有
'
)
}}
</el-link>
...
...
@@ -93,6 +100,11 @@
{{
getTotlContent
(
scope
.
row
,[
'
weight
'
])
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('储位')"
align=
"center"
prop=
"positionNo"
>
<
template
slot-scope=
"scope"
>
{{
notset
(
scope
.
row
.
positionNo
)
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('操作')"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"text"
size=
"small"
@
click=
"moveOut(scope.row)"
v-if=
"!isUnderReview && scope.row.installNum === 0"
>
{{
$t
(
'
移出
'
)
}}
</el-button>
...
...
@@ -364,6 +376,23 @@ export default {
this
.
newshipmentObj
=
data
??
{};
});
},
//去重
notset
(
string
)
{
if
(
!
string
)
return
string
let
arr
=
string
.
split
(
'
,
'
)
arr
=
arr
.
filter
((
item
,
index
)
=>
{
return
arr
.
indexOf
(
item
)
==
index
})
return
arr
.
toString
()
},
getpositionNo
(
arr
){
if
(
!
arr
)
return
arr
let
data
=
[]
arr
.
forEach
(
item
=>
{
data
.
push
(
item
.
areaName
+
item
.
locationName
)
})
return
data
.
toString
()
},
/* 装柜部分列表 */
getLoadSecGoodsList
()
{
loadSecGoodsList
({
shipmentId
:
this
.
shipmentObj
.
id
}).
then
((
res
)
=>
{
...
...
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