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
c60c5e0b
Commit
c60c5e0b
authored
Jul 27, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善订单列表详情打印
parent
cd5759cf
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
206 additions
and
143 deletions
+206
-143
order.js
src/api/ecw/order.js
+17
-2
PrintLadingBill.vue
src/views/ecw/order/components/PrintLadingBill.vue
+25
-27
PrintTag.vue
src/views/ecw/order/components/PrintTag.vue
+7
-4
detail.vue
src/views/ecw/order/detail.vue
+79
-57
index.vue
src/views/ecw/order/index.vue
+75
-52
edit.vue
src/views/ecw/productPrice/edit.vue
+3
-1
No files found.
src/api/ecw/order.js
View file @
c60c5e0b
...
...
@@ -22,7 +22,7 @@ export function updateOrder(data) {
// 删除订单
export
function
deleteOrder
(
id
)
{
return
request
({
url
:
'
/ecw/order/delete?
i
d=
'
+
id
,
url
:
'
/ecw/order/delete?
orderI
d=
'
+
id
,
method
:
'
delete
'
})
}
...
...
@@ -139,7 +139,6 @@ export function orderWarehouseIn(data){
}
// 入仓完成
export
function
orderWarehouseInFinish
(
data
){
return
request
({
url
:
'
/order/order-warehouse-in/finish
'
,
...
...
@@ -148,3 +147,19 @@ export function orderWarehouseInFinish(data){
})
}
//取消订单
export
function
cancelOrder
(
orderId
){
return
request
({
url
:
`/ecw/order/cancel/
${
orderId
}
`
,
method
:
'
put
'
,
})
}
// 恢复订单
export
function
recoveryOrder
(
orderId
){
return
request
({
url
:
`/ecw/order/recovery/
${
orderId
}
`
,
method
:
'
put
'
,
})
}
src/views/ecw/order/components/PrintLadingBill.vue
View file @
c60c5e0b
<
template
>
<el-dialog
:title=
"title"
visible
:before-close=
"closeDialog"
width=
"1000px"
>
<el-result
sub-title=
"加载中"
v-if=
"loading"
>
<i
class=
"el-icon-loading"
slot=
"icon"
style=
"font-size: 40px"
/>
</el-result>
<pdf-viewer
id=
"pdfViewer"
ref=
"viewer"
v-if=
"pdfData"
:url=
"pdfData"
style=
"display:block; margin: 0 auto; max-height: 80vh; overflow:auto;"
/>
<p
class=
"subs"
style=
"text-align:center"
>
<el-button
type=
"primary"
@
click=
"download"
:disabled=
"!pdfData"
>
下载
</el-button>
...
...
@@ -13,43 +16,37 @@ import {getLadingBill} from '@/api/ecw/order'
import
lodop
from
'
@/utils/lodop
'
import
PdfViewer
from
'
@/components/PdfViewer
'
import
FileSaver
from
'
file-saver
'
const
GetBASE64
=
(
dataArray
)
=>
{
var
digits
=
"
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=
"
;
var
strData
=
""
;
for
(
var
i
=
0
,
ii
=
dataArray
.
length
;
i
<
ii
;
i
+=
3
)
{
if
(
isNaN
(
dataArray
[
i
]))
break
;
var
b1
=
dataArray
[
i
]
&
0xFF
,
b2
=
dataArray
[
i
+
1
]
&
0xFF
,
b3
=
dataArray
[
i
+
2
]
&
0xFF
;
var
d1
=
b1
>>
2
,
d2
=
((
b1
&
3
)
<<
4
)
|
(
b2
>>
4
);
var
d3
=
i
+
1
<
ii
?
((
b2
&
0xF
)
<<
2
)
|
(
b3
>>
6
)
:
64
;
var
d4
=
i
+
2
<
ii
?
(
b3
&
0x3F
)
:
64
;
strData
+=
digits
.
substring
(
d1
,
d1
+
1
)
+
digits
.
substring
(
d2
,
d2
+
1
)
+
digits
.
substring
(
d3
,
d3
+
1
)
+
digits
.
substring
(
d4
,
d4
+
1
);
}
return
strData
;
}
window
.
GetBASE64
=
GetBASE64
export
default
{
components
:
{
PdfViewer
},
filters
:
{
parseTime
},
props
:{
orderId
:
[
String
,
Number
]
transportType
:
Number
,
tidanNO
:
[
String
,
Number
]
},
data
(){
return
{
show
:
false
,
detail
:
null
,
/*
detail: null,
preview: false,
billLadingNo: 'TD20220717',
type
:
1
,
pdfData
:
null
type: 1, */
pdfData
:
null
,
loading
:
false
}
},
computed
:{
title
(){
let
t
=
'
提货单
'
if
(
this
.
detail
){
t
+=
'
-
'
+
this
.
detail
.
orderNo
if
(
this
.
tidanNO
){
t
+=
'
-
'
+
this
.
tidanNO
}
return
t
},
type
(){
if
(
this
.
transportType
<=
2
)
return
1
if
(
this
.
transportType
==
3
)
return
3
if
(
this
.
transportType
==
4
)
return
2
}
},
created
(){
...
...
@@ -58,13 +55,17 @@ export default {
},
methods
:{
loadData
(){
this
.
loading
=
true
getLadingBill
({
billLadingNo
:
this
.
billLading
No
,
billLadingNo
:
this
.
tidan
No
,
type
:
this
.
type
})
.
then
(
arrayBuffer
=>
{
this
.
pdfData
=
arrayBuffer
})
.
then
(
arrayBuffer
=>
{
this
.
pdfData
=
arrayBuffer
})
.
finally
(()
=>
{
this
.
loading
=
false
})
},
closeDialog
(){
this
.
show
=
false
...
...
@@ -92,12 +93,9 @@ export default {
LODOP
.
PREVIEW
();
// LODOP.ADD_PRINT_PDF(0,0,"100%","100%",data);
this
.
$alert
(
'
已发起打印任务
'
);
// LODOP.PREVIEW(); // 预览
/* LODOP.PRINTA(); // 选择打印机
// 直接打印 */
console
.
log
(
'
打印哦
'
)
}).
catch
(
err
=>
{
console
.
error
(
'
lodop异常
'
,
err
)
alert
(
'
请检查LODOP打印控件是否安装并启动
'
);
...
...
src/views/ecw/order/components/PrintTag.vue
View file @
c60c5e0b
...
...
@@ -122,13 +122,16 @@ export default {
LODOP
.
SET_PRINT_STYLE
(
"
FontSize
"
,
18
);
LODOP
.
SET_PRINT_STYLE
(
"
Bold
"
,
1
);
// LODOP.ADD_PRINT_TEXT(50,231,260,39,"打印页面部分内容");
LODOP
.
SET_PRINT_PAGESIZE
(
0
,
800
,
600
,
"
TAG
"
);
for
(
let
i
=
this
.
form
.
start
;
i
<=
this
.
form
.
end
;
i
++
){
LODOP
.
ADD_PRINT_HTM
(
88
,
200
,
350
,
600
,
document
.
getElementById
(
"
order-print-tag
"
).
innerHTML
);
LODOP
.
PRINT
();
LODOP
.
ADD_PRINT_HTM
(
0
,
0
,
800
,
600
,
document
.
getElementById
(
"
order-print-tag
"
).
innerHTML
);
if
(
i
<
this
.
form
.
end
){
LODOP
.
NewPage
()
}
}
this
.
$alert
(
'
已发起打印任务
'
);
LODOP
.
PREVIEW
(
);
//
LODOP.PREVIEW();
// 预览
// // 预览
/* LODOP.PRINTA(); // 选择打印机
// 直接打印 */
console
.
log
(
'
打印哦
'
)
...
...
src/views/ecw/order/detail.vue
View file @
c60c5e0b
<
template
>
<div
class=
"app-container"
>
<el-card
class=
"card"
>
<div
slot=
"header"
class=
"card-title"
>
订单详情:
{{
list
.
orderNo
}}
-
{{
list
.
orderId
}}
</div>
<div
slot=
"header"
class=
"card-title"
>
订单编号:
{{
list
.
orderNo
}}
</div>
<div
slot=
"header"
class=
"card-title"
>
订单编号:
{{
order
.
orderNo
}}
<template
v-if=
"order.containerNumber"
>
-
{{
order
.
containerNumber
}}
</
template
>
</div>
<el-row
:gutter=
"20"
>
<el-col
:span=
"12"
>
<el-descriptions
class=
"margin-top"
border
title=
"发货人"
:column=
"
2
"
>
<el-descriptions-item
label=
"发货人"
>
{{
list
.
consignorVO
.
name
}}
</el-descriptions-item>
<el-descriptions-item
label=
"发货人电话"
>
{{
list
.
consignorVO
.
phone
}}
</el-descriptions-item>
<el-descriptions-item
label=
"发货人邮箱"
>
{{
list
.
consignorVO
.
email
}}
</el-descriptions-item>
<el-descriptions
class=
"margin-top"
border
title=
"发货人"
:column=
"
1"
labelStyle=
"width:150px
"
>
<el-descriptions-item
label=
"发货人"
>
{{
order
.consignorVO.name}}
</el-descriptions-item>
<el-descriptions-item
label=
"发货人电话"
>
{{
order
.consignorVO.phone}}
</el-descriptions-item>
<el-descriptions-item
label=
"发货人邮箱"
>
{{
order
.consignorVO.email}}
</el-descriptions-item>
<el-descriptions-item
label=
"发货人公司名称"
>
<el-tag
size=
"small"
>
{{
list
.
consignorVO
.
company
}}
</el-tag>
{{order.consignorVO.company}}
</el-descriptions-item>
</el-descriptions>
</el-col>
<el-col
:span=
"12"
>
<el-descriptions
class=
"margin-top"
border
title=
"收货人"
:column=
"
2
"
>
<el-descriptions-item
label=
"收货人"
>
{{
list
.
consigneeVO
.
name
}}
</el-descriptions-item>
<el-descriptions-item
label=
"收货人电话"
>
{{
list
.
consigneeVO
.
phone
}}
</el-descriptions-item>
<el-descriptions-item
label=
"收货人邮箱"
>
{{
list
.
consigneeVO
.
email
}}
</el-descriptions-item>
<el-descriptions
class=
"margin-top"
border
title=
"收货人"
:column=
"
1"
labelStyle=
"width:150px
"
>
<el-descriptions-item
label=
"收货人"
>
{{
order
.consigneeVO.name}}
</el-descriptions-item>
<el-descriptions-item
label=
"收货人电话"
>
{{
order
.consigneeVO.phone}}
</el-descriptions-item>
<el-descriptions-item
label=
"收货人邮箱"
>
{{
order
.consigneeVO.email}}
</el-descriptions-item>
<el-descriptions-item
label=
"收货人公司名称"
>
<el-tag
size=
"small"
>
{{
list
.
consigneeVO
.
company
}}
</el-tag>
{{order.consigneeVO.company}}
</el-descriptions-item>
</el-descriptions>
</el-col>
...
...
@@ -30,24 +32,38 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"12"
>
<el-descriptions
class=
"margin-top"
border
title=
"物流信息"
:column=
"2"
>
<el-descriptions-item
label=
"始发仓"
>
{{
list
.
logisticsInfoDto
.
startTitleZh
}}
</el-descriptions-item>
<el-descriptions-item
label=
"目的仓"
>
{{
list
.
logisticsInfoDto
.
destTitleZh
}}
</el-descriptions-item>
<el-descriptions-item
label=
"地址"
:span=
"2"
>
{{
list
.
logisticsInfoDto
.
startAddressZh
}}
</el-descriptions-item>
<el-descriptions-item
label=
"运输方式"
>
{{
list
.
logisticsInfoDto
.
transportId
|
transportFilter
(
transportList
)
}}
</el-descriptions-item>
<el-descriptions-item
label=
"出货渠道"
>
{{
list
.
logisticsInfoDto
.
startTitleZh
}}
</el-descriptions-item>
<el-descriptions-item
label=
"始发仓"
>
{{order.logisticsInfoDto.startTitleZh}}
</el-descriptions-item>
<el-descriptions-item
label=
"目的仓"
>
{{order.logisticsInfoDto.destTitleZh}}
</el-descriptions-item>
<el-descriptions-item
label=
"地址"
:span=
"2"
>
{{order.logisticsInfoDto.startAddressZh}}
</el-descriptions-item>
<el-descriptions-item
label=
"运输方式"
:span=
"2"
>
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"order.transportId"
/>
</el-descriptions-item>
<el-descriptions-item
label=
"出货渠道"
:span=
"2"
>
{{order.logisticsInfoDto.startTitleZh}}
</el-descriptions-item>
</el-descriptions>
</el-col>
<el-col
:span=
"12"
>
<el-descriptions
class=
"margin-top"
border
title=
"基础信息"
:column=
"2"
>
<el-descriptions-item
label=
"唛头"
>
{{
list
.
marks
}}
</el-descriptions-item>
<el-descriptions-item
label=
"唛头"
>
{{
order
.marks}}
</el-descriptions-item>
<el-descriptions-item
label=
"送货时间"
></el-descriptions-item>
<el-descriptions-item
label=
"是否控货"
>
{{
list
.
isCargoControl
?
'
是
'
:
'
否
'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"填单信息"
>
{{
list
.
sumNum
}}
箱
{{
list
.
sumWeight
}}
Kg
{{
list
.
sumVolume
}}
m³
</el-descriptions-item>
<el-descriptions-item
label=
"仓库实测"
></el-descriptions-item>
<el-descriptions-item
label=
"收款数据"
></el-descriptions-item>
<el-descriptions-item
label=
"入仓类型"
></el-descriptions-item>
<el-descriptions-item
label=
"单证报关"
>
{{
list
.
customsType
|
customsTypeFilter
(
customsTypeList
)
}}
</el-descriptions-item>
<el-descriptions-item
label=
"代收货款"
>
{{
list
.
isCollection
?
'
是
'
:
'
否
'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"是否控货"
>
{{order.isCargoControl?'是':'否'}}
</el-descriptions-item>
<el-descriptions-item
label=
"填单信息"
>
{{order.costVO.totalNum}}箱 {{order.costVO.totalWeight}}Kg {{order.costVO.totalVolume}}m³
</el-descriptions-item>
<el-descriptions-item
label=
"仓库实测"
>
{{order.sumNum}}箱 {{order.sumWeight}}Kg {{order.sumVolume}}m³
</el-descriptions-item>
<el-descriptions-item
label=
"收款数据"
>
{{order.entryNum}}箱 {{order.entryWeight}}Kg {{order.entryVolume}}m³
</el-descriptions-item>
<el-descriptions-item
label=
"入仓类型"
>
<dict-tag
:type=
"DICT_TYPE.ECW_WAREHOUSING_TYPE"
:value=
"order.warehouseType"
/>
</el-descriptions-item>
<el-descriptions-item
label=
"单证报关"
>
<dict-tag
:type=
"DICT_TYPE.ECW_CUSTOMS_TYPE"
:value=
"order.customsType"
/>
</el-descriptions-item>
<el-descriptions-item
label=
"代收货款"
>
<dict-tag
:type=
"DICT_TYPE.INFRA_BOOLEAN_STRING"
:value=
"order.isCollection"
/>
</el-descriptions-item>
</el-descriptions>
</el-col>
</el-row>
...
...
@@ -55,63 +71,63 @@
<el-card
class=
"card"
>
<el-tabs
v-model=
"activeName"
>
<el-tab-pane
label=
"货物详情"
name=
"first"
>
<el-table
:data=
"
list
.orderItemVOList"
border
style=
"width: 100%"
>
<el-table
:data=
"
order
.orderItemVOList"
border
style=
"width: 100%"
>
<el-table-column
prop=
"prodTitleZh"
label=
"中文品名"
/>
<el-table-column
prop=
"prodTitleEn"
label=
"英文品名"
/>
<el-table-column
prop=
"brand"
label=
"品牌"
/>
<el-table-column
prop=
"brand"
label=
"品牌"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.ECW_IS_BRAND"
:value=
"row.brand"
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"num"
label=
"填单件数"
/>
<el-table-column
prop=
"num"
label=
"入仓件数"
/>
<el-table-column
prop=
"unit"
label=
"单位"
/>
<el-table-column
prop=
"unit"
label=
"单位"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGE_TYPE"
:value=
"row.unit"
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"worth"
label=
"货值"
/>
<el-table-column
prop=
""
label=
"材质"
/>
<el-table-column
prop=
""
label=
"材质"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PRODUCT_MATERIAL"
:value=
"row.material"
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"volume"
label=
"体积(m3)"
/>
<el-table-column
prop=
"weight"
label=
"重量(kg)"
/>
</el-table>
<!-- 分页组件 -->
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.pageNo"
:limit.sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
</el-tab-pane>
<el-tab-pane
label=
"订单动态"
name=
"second"
>
<el-timeline
:reverse=
"true"
>
<el-timeline-item
v-for=
"(activity, index) in
l
ist.orderTimeVOList"
:key=
"index"
:timestamp=
"activity.timestamp"
>
<el-timeline
v-if=
"order.orderTimeVOList && order.orderTimeVOList.length"
:reverse=
"true"
>
<el-timeline-item
v-for=
"(activity, index) in
orderTimeVOL
ist.orderTimeVOList"
:key=
"index"
:timestamp=
"activity.timestamp"
>
{{ activity.titleZh }}
</el-timeline-item>
</el-timeline>
<el-result
v-else
icon=
"info "
title=
"暂无数据"
subTitle=
"暂无订单动态数据"
/>
</el-tab-pane>
<el-tab-pane
label=
"运单资料/提货单"
name=
"three"
>
<el-descriptions
class=
"margin-top"
border
title=
""
:column=
"3"
>
<el-descriptions-item
label=
"单票立即转运"
>
{{
list
.
isSingleTicketTransport
?
'
是
'
:
'
否
'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"包装类型"
></el-descriptions-item>
<el-descriptions-item
label=
"包装要求备注"
>
{{
list
.
remarks
}}
</el-descriptions-item>
</el-descriptions>
<el-button
type=
"text"
>
查看入仓单
</el-button>
<el-button
type=
"text"
disabled
>
<el-dropdown>
<span
class=
"el-dropdown-link"
>
查看提货单
<i
class=
"el-icon-arrow-down el-icon--right"
></i>
</span>
<el-dropdown-menu
slot=
"dropdown"
>
<el-dropdown-item>
海运提货单
</el-dropdown-item>
<el-dropdown-item>
空运提货单
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</el-button>
<el-button
type=
"text"
@
click=
"showWarehouseReceipt=true"
>
查看入仓单
</el-button>
<el-button
type=
"text"
@
click.native=
"showLadingBill=true"
:disabled=
"!order.tidanNo"
>
查看提货单
</el-button>
<el-button
:disabled=
"true"
type=
"text"
>
装箱单未上传
</el-button>
</el-tab-pane>
</el-tabs>
</el-card>
<print-warehouse-receipt
v-if=
"showWarehouseReceipt"
:order-id=
"order.orderId"
@
close=
"showWarehouseReceipt=false"
/>
<print-lading-bill
v-if=
"showLadingBill"
:order-id=
"order.tidanNo"
:transport-type=
"order.transportId"
@
close=
"showLadingBill=false"
/>
</div>
</template>
<
script
>
import
{
getOrder
}
from
'
@/api/ecw/order
'
import
{
getDictDatas
,
DICT_TYPE
}
from
'
@/utils/dict
'
;
import
PrintWarehouseReceipt
from
'
./components/PrintWarehouseReceipt
'
import
PrintLadingBill
from
'
./components/PrintLadingBill
'
export
default
{
name
:
"
detail
"
,
components
:
{
PrintWarehouseReceipt
,
PrintLadingBill
},
filters
:
{
customsTypeFilter
(
e
,
customsTypeList
)
{
...
...
@@ -125,7 +141,7 @@ export default {
return
{
// 遮罩层
loading
:
false
,
list
:
[]
,
order
:
{}
,
activeName
:
'
first
'
,
orderId
:
17
,
tableData
:
[],
...
...
@@ -145,22 +161,24 @@ export default {
}],
customsTypeList
:
getDictDatas
(
DICT_TYPE
.
ECW_CUSTOMS_TYPE
),
//报关类型
transportList
:
getDictDatas
(
DICT_TYPE
.
ECW_TRANSPORT_TYPE
),
//运输方式
showWarehouseReceipt
:
false
,
// 是否显示打印入仓单
showLadingBill
:
false
,
// 是否显示打印提单
}
},
created
()
{
if
(
this
.
$route
.
query
.
orderId
)
{
this
.
orderId
=
this
.
$route
.
query
.
orderId
this
.
get
List
();
this
.
get
Order
();
}
},
methods
:
{
/** 查询列表 */
get
List
()
{
get
Order
()
{
let
that
=
this
that
.
loading
=
true
;
// 执行查询
getOrder
(
that
.
orderId
).
then
(
response
=>
{
that
.
list
=
response
.
data
;
that
.
order
=
response
.
data
;
});
},
}
...
...
@@ -171,6 +189,10 @@ export default {
.card
{
margin-bottom
:
20px
;
}
.card-title
{
font-size
:
18px
;
font-weight
:
bold
;
}
.el-dropdown-link
{
cursor
:
pointer
;
...
...
src/views/ecw/order/index.vue
View file @
c60c5e0b
...
...
@@ -136,28 +136,54 @@
<el-table-column
label=
"订单状态"
align=
"center"
prop=
"status"
>
<
template
slot-scope=
"scope"
>
<
span>
{{
scope
.
row
.
status
|
orderStatusFilter
(
orderStatusList
)
}}
</span
>
<
dict-tag
:type=
"DICT_TYPE.ORDER_STATUS"
:value=
"scope.row.status"
/
>
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
width=
"150px"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
v-hasPermi=
"['ecw:order:update']"
>
编辑
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"$router.push('/order/warehousing?id=' + scope.row.orderId)"
v-hasPermi=
"['ecw:order:update']"
>
入仓
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
v-hasPermi=
"['ecw:order:update']"
>
退仓
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"$router.push('/order/special?id=' + scope.row.orderId)"
<!--操作相关的-->
<el-popover
style=
"margin-left: 10px;"
placement=
"bottom"
width=
"100"
trigger=
"hover"
>
<el-button
type=
"text"
slot=
"reference"
>
操作
</el-button>
<div
style=
" display:flex; flex-direction:column"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
v-hasPermi=
"['ecw:order:update']"
>
编辑
</el-button>
<el-button
v-if=
"[0, 88].indexOf(scope.row.status) > -1"
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"oprateOrder(scope.row.orderId, 'deleteOrder')"
v-hasPermi=
"['ecw:order:delete']"
>
删除
</el-button>
<el-button
v-if=
"scope.row.status
<
5
"
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"oprateOrder(scope.row.orderId, 'cancelOrder')"
>
取消订单
</el-button>
<el-button
v-if=
"scope.row.status == 88"
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"oprateOrder(scope.row.orderId, 'recoveryOrder')"
>
恢复订单
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"$router.push(`/order/fee-application/$
{scope.row.orderId}`)">费用申请
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"orderId = scope.row.orderId;isShow = true"
>
特需
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"$router.push(`/order/associated-order/$
{scope.row.orderId}`)" >关联
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"$router.push(`/order/mutex-order/$
{scope.row.orderId}`)" >互斥
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"$router.push('/order/special?id=' + scope.row.orderId)"
v-hasPermi=
"['ecw:order:update']"
>
特价
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"handleDelete(scope.row)"
v-hasPermi=
"['ecw:order:delete']"
>
删除
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"$router.push(`/order/fee-application/$
{scope.row.orderId}`)">费用申请
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"orderId = scope.row.orderId;isShow = true"
>
特需
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"$router.push(`/order/associated-order/$
{scope.row.orderId}`)" >关联
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"$router.push(`/order/mutex-order/$
{scope.row.orderId}`)" >互斥
</el-button>
</div>
</el-popover>
<!--仓库相关的-->
<el-popover
style=
"margin-left: 10px;"
placement=
"bottom"
width=
"100"
trigger=
"hover"
>
<el-button
type=
"text"
slot=
"reference"
>
仓库
</el-button>
<div
style=
" display:flex; flex-direction:column"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"$router.push('/order/warehousing?id=' + scope.row.orderId)"
v-hasPermi=
"['ecw:order:update']"
>
入仓
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
v-hasPermi=
"['ecw:order:update']"
>
退仓
</el-button>
</div>
</el-popover>
<!--打印相关的-->
<el-popover
style=
"margin-left: 10px;"
placement=
"bottom"
...
...
@@ -166,7 +192,7 @@
<div
style=
" display:flex; flex-direction:column"
>
<el-button
size=
"mini"
type=
"text"
@
click=
"printTagOrderId=scope.row.orderId"
>
打印标签
</el-button>
<el-button
size=
"mini"
type=
"text"
@
click=
"printWarehouseReceiptOrderId=scope.row.orderId"
>
打印入仓单
</el-button>
<el-button
size=
"mini"
type=
"text"
@
click=
"printLadingBill
OrderId=scope.row.orderId
"
>
打印提单
</el-button>
<el-button
size=
"mini"
type=
"text"
@
click=
"printLadingBill
Info=
{tidanNO: scope.row.tidanNo, transportType: scope.row.transportId}" :disabled="!scope.row.tidanNo
">打印提单
</el-button>
</div>
<el-button
type=
"text"
slot=
"reference"
>
打印
</el-button>
</el-popover>
...
...
@@ -178,37 +204,6 @@
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.pageNo"
:limit.sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<!-- 对话框(添加 / 修改) -->
<el-dialog
:title=
"title"
:visible.sync=
"open"
width=
"500px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"110px"
>
<el-form-item
label=
"唛头"
prop=
"marks"
>
<el-input
v-model=
"form.marks"
placeholder=
"请输入唛头"
/>
</el-form-item>
<el-form-item
label=
"产品备案属性"
prop=
"productRecord"
>
<dict-selector
:type=
"DICT_TYPE.PRODUCT_RECORD_ATTRIBUTE"
v-model=
"form.productRecord"
clearable
/>
</el-form-item>
<el-form-item
label=
"控货状态"
prop=
"cargoControlStatus"
>
<dict-selector
:type=
"DICT_TYPE.CONTROL_GOODS_STATUS"
v-model=
"form.cargoControlStatus"
clearable
/>
</el-form-item>
<el-form-item
label=
"报关类别"
prop=
"customsType"
>
<dict-selector
:type=
"DICT_TYPE.ECW_CUSTOMS_TYPE"
v-model=
"form.customsType"
clearable
/>
</el-form-item>
<el-form-item
label=
"入仓箱数"
prop=
"sumNum"
>
<el-input
v-model=
"form.sumNum"
placeholder=
"请输入入仓箱数"
/>
</el-form-item>
<el-form-item
label=
"入仓方数"
prop=
"sumVolume"
>
<el-input
v-model=
"form.sumVolume"
placeholder=
"请输入入仓方数"
/>
</el-form-item>
<el-form-item
label=
"入仓重量"
prop=
"sumWeight"
>
<el-input
v-model=
"form.sumWeight"
placeholder=
"请输入入仓重量"
/>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
<special-needs
:show.sync=
"isShow"
:order-id=
"orderId"
@
determine=
"getList"
></special-needs>
<!-- <el-dialog :title="'打印标签'" visible.sync="showPrintTag">
...
...
@@ -216,7 +211,7 @@
</el-dialog> -->
<print-tag
v-if=
"printTagOrderId !== null"
:order-id=
"printTagOrderId"
@
close=
"printTagOrderId=null"
/>
<print-warehouse-receipt
v-if=
"printWarehouseReceiptOrderId !== null"
:order-id=
"printWarehouseReceiptOrderId"
@
close=
"printWarehouseReceiptOrderId=null"
/>
<print-lading-bill
v-if=
"printLadingBill
OrderId !== null"
:order-id=
"printLadingBillOrderId"
@
close=
"printLadingBillOrderId
=null"
/>
<print-lading-bill
v-if=
"printLadingBill
Info !== null"
v-bind=
"printLadingBillInfo"
@
close=
"printLadingBillInfo
=null"
/>
</div>
</template>
...
...
@@ -234,7 +229,9 @@ import {
getOrder
,
getOrderPage
,
exportOrderExcel
,
orderSpecialNeed
orderSpecialNeed
,
cancelOrder
,
recoveryOrder
}
from
"
@/api/ecw/order
"
;
import
{
getDictDatas
,
DICT_TYPE
}
from
'
@/utils/dict
'
;
import
PrintTag
from
'
./components/PrintTag
'
...
...
@@ -322,7 +319,7 @@ export default {
printTagOrderId
:
null
,
// 显示打印标签的订单ID
printWarehouseReceiptOrderId
:
null
,
// 打印入仓单的订单ID
printLadingBill
OrderId
:
null
,
// 打印提单订单ID
printLadingBill
Info
:
null
,
// 打印提单
isShow
:
false
,
//特殊显示
orderId
:
undefined
,
DICT_TYPE
,
...
...
@@ -351,7 +348,33 @@ export default {
getTradeCityList
().
then
(
res
=>
this
.
tradeCityList
=
res
.
data
)
},
methods
:
{
oprateOrder
(
orderId
,
type
){
let
actions
=
{
cancelOrder
:
{
callable
:
cancelOrder
,
confirm
:
'
确定要取消此订单么?
'
},
recoveryOrder
:
{
callable
:
recoveryOrder
,
confirm
:
'
确定要恢复此订单么?
'
},
deleteOrder
:
{
callable
:
deleteOrder
,
confirm
:
'
确定要删除此订单么?
'
}
}
let
action
=
actions
[
type
]
if
(
!
action
){
return
this
.
$alert
(
'
不支持此操作
'
)
}
this
.
$confirm
(
action
.
confirm
)
.
then
(
res
=>
{
return
action
.
callable
(
orderId
)
})
.
then
(
res
=>
{
this
.
getList
()
})
},
/** 查询列表 */
getList
()
{
this
.
loading
=
true
;
...
...
src/views/ecw/productPrice/edit.vue
View file @
c60c5e0b
...
...
@@ -307,7 +307,8 @@ export default {
}
let
data
=
Object
.
assign
({},
this
.
form
,
{
// lineChannelList: this.selectedRoutes,
specialList
:
this
.
specialProducts
specialList
:
this
.
specialProducts
,
isAllProduct
:
0
})
// 修改的提交
...
...
@@ -333,6 +334,7 @@ export default {
if
(
data
.
lineChannelList
.
length
<
1
){
return
this
.
$message
.
error
(
'
请选择需要修改的路线
'
)
}
data
.
productIdList
=
[
this
.
form
.
productId
]
batchUpdateProductPrice
(
data
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"
修改成功
"
);
this
.
$router
.
replace
(
'
/product/product-price
'
)
...
...
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