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
a9d9a343
Commit
a9d9a343
authored
Nov 18, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【2.0-出货】A2300162NG理货页面,订单查看入仓记录,混箱的没有展示
parent
9cbec865
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
7 deletions
+27
-7
preinstall.vue
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
+3
-3
warehouseDetail.vue
...ws/ecw/box/shippingAir/nodePage/tally/warehouseDetail.vue
+12
-2
warehouseDetail.vue
...ws/ecw/box/shippingSea/nodePage/tally/warehouseDetail.vue
+12
-2
No files found.
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
View file @
a9d9a343
...
...
@@ -39,7 +39,7 @@
<el-form-item
:label=
"$t('品名')"
prop=
"itemName"
>
<el-input
v-model=
"queryParams.itemName"
:placeholder=
"$t('请输入品名')"
clearable
/>
</el-form-item>
<el-form-item
:label=
"$t('
重
货比')"
prop=
"weightRatioMax"
>
<el-form-item
:label=
"$t('
泡
货比')"
prop=
"weightRatioMax"
>
<el-input
v-model=
"queryParams.weightRatioMax"
:placeholder=
"$t('请输入 大')"
clearable
/>
</el-form-item>
<el-form-item
label=
""
prop=
"weightRatioMin"
>
...
...
@@ -177,7 +177,7 @@
<
/template
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('体积') + '/' + $t('重量') + '/' + $t('
重
货比')
"
align
=
"
center
"
width
=
"
140
"
prop
=
"
volumeWeight
"
>
<
el
-
table
-
column
:
label
=
"
$t('体积') + '/' + $t('重量') + '/' + $t('
泡
货比')
"
align
=
"
center
"
width
=
"
140
"
prop
=
"
volumeWeight
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
p
v
-
if
=
"
scope.row.warehouseInInfoVO.volume
"
>
{{
getTotlContent
(
scope
.
row
.
warehouseInInfoVO
,[
'
volume
'
])
}}
<
/p
>
<
p
v
-
if
=
"
scope.row.warehouseInInfoVO.weight
"
>
{{
getTotlContent
(
scope
.
row
.
warehouseInInfoVO
,[
'
weight
'
])
}}
<
/p
>
...
...
@@ -265,7 +265,7 @@
<
p
>
{{
getShipChannelName
(
item
.
channelId
)
}}
<
/p
>
<
/div
>
<
div
>
<
p
>
{{
$t
(
'
重
货比
'
)
}}
:
<
/p
>
<
p
>
{{
$t
(
'
泡
货比
'
)
}}
:
<
/p
>
<
p
>
{{
item
.
weightRatio
}}
<
/p
>
<
/div
>
<
div
v
-
if
=
"
item.isExternalWarehouse === 1
"
style
=
"
color:blue;fontWeight:bold;
"
>
...
...
src/views/ecw/box/shippingAir/nodePage/tally/warehouseDetail.vue
View file @
a9d9a343
...
...
@@ -3,7 +3,14 @@
<el-dialog
:title=
"title"
visible
:before-close=
"closeDialog"
:close-on-click-modal=
"false"
width=
"95%"
append-to-body
>
<el-table
v-if=
"warehouseItem && warehouseItem.orderWarehouseInBackItemDoList"
:data=
"warehouseItem.orderWarehouseInBackItemDoList"
>
<el-table-column
type=
"index"
:label=
"$t('序号')"
/>
<el-table-column
:label=
"$t('箱数')"
prop=
"cartonsNum"
/>
<el-table-column
:label=
"$t('箱数')"
prop=
"cartonsNum"
>
<template
slot-scope=
"
{row}">
<template
v-if=
"row.orderWarehouseInDetailsVOList && row.orderWarehouseInDetailsVOList.length"
>
<WarehouseRecordDetail
v-model=
"row.orderWarehouseInDetailsVOList"
:num=
"row.cartonsNum"
text
readonly
/>
</
template
>
<
template
v-else
>
{{
row
.
cartonsNum
}}
</
template
>
</template>
</el-table-column>
<el-table-column
:label=
"$t('入仓类型')"
prop=
"cartonsNum"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.WAREHOUSING_SPECIFICATION_TYPE"
:value=
"row.specificationType"
/>
...
...
@@ -44,10 +51,13 @@
</template>
<
script
>
import
{
getOrder
,
getOrderWarehouseIn
}
from
"
@/api/ecw/order
"
;
import
{
DICT_TYPE
}
from
"
@/utils/dict
"
;
import
{
parseTime
}
from
"
@/utils/ruoyi
"
;
import
WarehouseRecordDetail
from
'
@/views/ecw/order/warehousing/components/WarehouseRecordDetail.vue
'
export
default
{
filters
:
{
parseTime
},
components
:
{
WarehouseRecordDetail
},
props
:
{
order
:
Object
,
// order 和 orderId 二选一
orderId
:
Number
,
...
...
src/views/ecw/box/shippingSea/nodePage/tally/warehouseDetail.vue
View file @
a9d9a343
...
...
@@ -3,7 +3,14 @@
<el-dialog
:title=
"title"
visible
:before-close=
"closeDialog"
:close-on-click-modal=
"false"
width=
"95%"
append-to-body
>
<el-table
v-if=
"warehouseItem && warehouseItem.orderWarehouseInBackItemDoList"
:data=
"warehouseItem.orderWarehouseInBackItemDoList"
>
<el-table-column
type=
"index"
:label=
"$t('序号')"
/>
<el-table-column
:label=
"$t('箱数')"
prop=
"cartonsNum"
/>
<el-table-column
:label=
"$t('箱数')"
prop=
"cartonsNum"
>
<template
slot-scope=
"
{row}">
<template
v-if=
"row.orderWarehouseInDetailsVOList && row.orderWarehouseInDetailsVOList.length"
>
<WarehouseRecordDetail
v-model=
"row.orderWarehouseInDetailsVOList"
:num=
"row.cartonsNum"
text
readonly
/>
</
template
>
<
template
v-else
>
{{
row
.
cartonsNum
}}
</
template
>
</template>
</el-table-column>
<el-table-column
:label=
"$t('入仓类型')"
prop=
"cartonsNum"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.WAREHOUSING_SPECIFICATION_TYPE"
:value=
"row.specificationType"
/>
...
...
@@ -44,10 +51,13 @@
</template>
<
script
>
import
{
getOrder
,
getOrderWarehouseIn
}
from
"
@/api/ecw/order
"
;
import
{
DICT_TYPE
}
from
"
@/utils/dict
"
;
import
WarehouseRecordDetail
from
'
@/views/ecw/order/warehousing/components/WarehouseRecordDetail.vue
'
import
{
parseTime
}
from
"
@/utils/ruoyi
"
;
export
default
{
filters
:
{
parseTime
},
components
:
{
WarehouseRecordDetail
},
props
:
{
order
:
Object
,
// order 和 orderId 二选一
orderId
:
Number
,
...
...
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