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
47b3ae27
Commit
47b3ae27
authored
Nov 19, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
c4d50811
1322e719
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
11 deletions
+43
-11
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
index.vue
src/views/ecw/order/exception/index.vue
+16
-4
No files found.
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
View file @
47b3ae27
...
...
@@ -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 @
47b3ae27
...
...
@@ -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 @
47b3ae27
...
...
@@ -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
,
...
...
src/views/ecw/order/exception/index.vue
View file @
47b3ae27
...
...
@@ -46,7 +46,16 @@
<el-option
v-for=
"dict in followUpList"
:key=
"parseInt(dict.id)"
:label=
"dict.nickname"
:value=
"parseInt(dict.id)"
/>
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('出货渠道')"
prop=
"channelId"
>
<!--嵌套一个form来脱离disabled控制-->
<selector
:clearable=
"true"
v-model=
"queryParams.channelId"
:options=
"channelList"
value-field=
"channelId"
:label-field=
"$l(null, 'name')"
></selector>
</el-form-item>
</el-row>
<el-row>
<el-form-item
:label=
"$t('控货')+':'"
>
...
...
@@ -284,12 +293,14 @@ import CustomerSelector from '@/components/CustomerSelector'
import
ProductSelector
from
'
@/components/ProductSelector
'
import
{
getWarehouseList
}
from
'
@/api/ecw/warehouse
'
import
Template
from
"
@/views/cms/template/index.vue
"
;
import
{
getChannelList
}
from
'
@/api/ecw/channel
'
import
Selector
from
'
@/components/Selector
'
export
default
{
name
:
"
EcwOrderException
"
,
components
:
{
Template
,
CustomerSelector
,
ProductSelector
CustomerSelector
,
ProductSelector
,
Selector
},
data
()
{
return
{
...
...
@@ -315,14 +326,15 @@ export default {
warehouseList
:[],
totalData
:{},
followUpList
:[],
channelList
:
[],
// 出货取到
};
},
activated
(){
this
.
getList
();
},
created
()
{
async
created
()
{
this
.
getList
();
this
.
channelList
=
(
await
getChannelList
()).
data
getTradeCityList
().
then
(
res
=>
this
.
tradeCityList
=
res
.
data
)
listServiceUser
().
then
(
r
=>
{
this
.
creatorData
=
r
.
data
...
...
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