记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
董敬伟
liquidnet-bus-v1
Commits
3c470f16
Commit
3c470f16
authored
Jul 06, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
快递展示
parent
0155a793
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
59 additions
and
17 deletions
+59
-17
performanceOrderList.html
...ngzai/kylin/performancesExpress/performanceOrderList.html
+48
-13
PerformanceExpressPerformanceOrderListAdminDao.java
...n/dao/PerformanceExpressPerformanceOrderListAdminDao.java
+3
-1
KylinOrderTicketsMapper.xml
...iquidnet.service.kylin.mapper/KylinOrderTicketsMapper.xml
+8
-3
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/performancesExpress/performanceOrderList.html
View file @
3c470f16
...
...
@@ -107,19 +107,6 @@
return
$
.
table
.
selectDictLabel
(
orderStatusDic
,
value
);
}
},
{
field
:
''
,
title
:
'快递'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
expressType
=
''
;
if
(
row
.
expressType
==
1
)
{
expressType
=
"寄付"
;
}
else
{
expressType
=
"到付"
;
}
return
'快递方式:'
+
expressType
+
'<br>'
+
'快递费:'
+
row
.
priceExpress
;
}
},
{
field
:
''
,
title
:
'购买用户'
,
...
...
@@ -140,6 +127,54 @@
return
'姓名:'
+
expressContacts
+
'<br>'
+
'地址:'
+
expressAddress
+
'<br>'
+
'手机号:'
+
expressPhone
;
}
},
{
field
:
''
,
title
:
'快递费'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
expressType
=
''
;
if
(
row
.
expressType
==
1
)
{
expressType
=
"寄付"
;
}
else
{
expressType
=
"到付"
;
}
return
'快递方式:'
+
expressType
+
'<br>'
+
'快递费:'
+
row
.
priceExpress
;
}
},
{
field
:
''
,
title
:
'快递信息'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
mailno
=
row
.
mailno
;
var
expressStatus
=
row
.
expressStatus
;
var
expressStatusName
=
''
;
if
(
null
==
mailno
)
{
mailno
=
''
;
}
if
(
null
!=
expressStatus
)
{
switch
(
expressStatus
)
{
case
1
:
expressStatusName
=
'下单失败'
;
break
;
case
2
:
expressStatusName
=
'下单成功'
;
break
;
case
3
:
expressStatusName
=
'下单取消'
;
break
;
case
50
:
expressStatusName
=
'已揽收'
;
break
;
case
80
:
expressStatusName
=
'已签收'
;
break
;
default
:
expressStatusName
=
'运输中'
;
break
;
}
}
return
'快递单号:'
+
mailno
+
'<br>'
+
'快递状态:'
+
expressStatusName
;
}
},
{
title
:
'操作'
,
align
:
'center'
,
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/dao/PerformanceExpressPerformanceOrderListAdminDao.java
View file @
3c470f16
...
...
@@ -19,8 +19,10 @@ public class PerformanceExpressPerformanceOrderListAdminDao {
String
expressContacts
;
String
expressAddress
;
String
expressPhone
;
String
expressStatus
;
Integer
expressType
;
String
mailno
;
Integer
expressStatus
;
}
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinOrderTicketsMapper.xml
View file @
3c470f16
...
...
@@ -221,11 +221,16 @@
kot.express_phone,
kots.status,
kots.express_type
kots.express_type
,
oe.mailno,
oe.express_status
FROM kylin_order_tickets kot
inner join kylin_order_ticket_status kots on kot.order_tickets_id = kots.order_id
inner join kylin_order_ticket_relations kotr on kot.order_tickets_id = kotr.order_id
INNER JOIN kylin_order_ticket_status kots ON kot.order_tickets_id = kots.order_id
INNER JOIN kylin_order_ticket_relations kotr ON kot.order_tickets_id = kotr.order_id
LEFT JOIN (SELECT * FROM kylin_order_express WHERE express_status NOT IN (1, 3)) AS oe ON oe.order_tickets_id = kot.order_tickets_id
LEFT JOIN (SELECT * FROM kylin_order_express_route ORDER BY mid DESC LIMIT 1) AS oer ON oe.order_express_id = oer.order_express_id
<where>
kotr.performance_id = #{performancesId}
AND kot.get_ticket_type = 'express'
...
...
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