记得上下班打卡 | 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
a301e849
Commit
a301e849
authored
Jun 24, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
演出订单
parent
1155f6f1
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
58 additions
and
38 deletions
+58
-38
PerformanceExpressSearchAdminParam.java
...e/kylin/dto/param/PerformanceExpressSearchAdminParam.java
+5
-1
performanceOrderList.html
...ngzai/kylin/performancesExpress/performanceOrderList.html
+36
-12
performancesList.html
.../zhengzai/kylin/performancesExpress/performancesList.html
+1
-1
PerformancesExpressServiceImpl.java
...ai/kylin/service/impl/PerformancesExpressServiceImpl.java
+0
-2
PerformanceExpressPerformanceOrderListAdminDao.java
...n/dao/PerformanceExpressPerformanceOrderListAdminDao.java
+11
-16
KylinOrderTicketsMapper.xml
...iquidnet.service.kylin.mapper/KylinOrderTicketsMapper.xml
+3
-4
KylinPerformancesMapper.xml
...iquidnet.service.kylin.mapper/KylinPerformancesMapper.xml
+2
-2
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/PerformanceExpressSearchAdminParam.java
View file @
a301e849
...
...
@@ -16,8 +16,12 @@ public class PerformanceExpressSearchAdminParam {
// 订单搜索
private
String
orderCode
;
private
String
orderTicketsId
;
private
String
userMobile
;
private
String
orderStatus
;
private
String
userMobile
;
private
String
expressStatus
;
private
String
expressContacts
;
private
String
expressPhone
;
}
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/performancesExpress/performanceOrderList.html
View file @
a301e849
...
...
@@ -27,6 +27,14 @@
<label>
购买人姓名:
</label>
<input
type=
"text"
name=
"userName"
/>
</li>
<li>
<label>
收货人电话:
</label>
<input
type=
"text"
name=
"expressContacts"
/>
</li>
<li>
<label>
收货人姓名:
</label>
<input
type=
"text"
name=
"expressPhone"
/>
</li>
<li>
<label>
订单状态:
</label>
<select
name=
"orderStatus"
th:with=
"type=${@dict.getType('zhengzai_order_status')}"
>
...
...
@@ -87,24 +95,40 @@
}
},
{
field
:
'priceActual'
,
title
:
'总价格'
},
{
field
:
'number'
,
title
:
'购票量'
field
:
'priceExpress'
,
title
:
'快递费'
},
{
field
:
'userId'
,
title
:
'用户ID'
field
:
''
,
title
:
'快递方式'
,
formatter
:
function
(
value
,
row
,
index
)
{
if
(
row
.
expressType
==
1
)
{
return
"寄付"
;
}
else
{
return
"到付"
;
}
}
},
{
field
:
'userMobile'
,
title
:
'账户名'
field
:
''
,
title
:
'购买用户'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
userId
=
row
.
userId
;
var
userMobile
=
row
.
userMobile
;
var
userName
=
row
.
userName
;
return
'ID:'
+
userId
+
'<br>'
+
'姓名:'
+
userName
+
'<br>'
+
'手机号:'
+
userMobile
;
}
},
{
field
:
'userMobile'
,
title
:
'手机号'
field
:
''
,
title
:
'收获用户'
,
formatter
:
function
(
value
,
row
,
index
)
{
console
.
log
(
row
)
var
expressContacts
=
row
.
expressContacts
;
var
expressAddress
=
row
.
expressAddress
;
var
expressPhone
=
row
.
expressPhone
;
return
'姓名:'
+
expressContacts
+
'<br>'
+
'手机号:'
+
expressPhone
+
'<br>'
+
'地址:'
+
expressPhone
;
}
},
{
title
:
'操作'
,
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/performancesExpress/performancesList.html
View file @
a301e849
...
...
@@ -16,7 +16,7 @@
</li>
<li>
<label>
演出ID:
</label>
<input
type=
"text"
name=
"performanceId"
/>
<input
type=
"text"
name=
"performance
s
Id"
/>
</li>
<li>
<a
class=
"btn btn-primary btn-rounded btn-sm"
onclick=
"$.table.search()"
><i
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/kylin/service/impl/PerformancesExpressServiceImpl.java
View file @
a301e849
...
...
@@ -41,7 +41,6 @@ public class PerformancesExpressServiceImpl extends ServiceImpl<KylinPerformance
Map
<
String
,
Object
>
map
=
BeanUtil
.
convertBeanToMap
(
performanceExpressSearchAdminParam
);
voList
=
performancesMapper
.
performanceExpressPerformanceList
(
map
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
return
null
;
}
return
voList
;
...
...
@@ -53,7 +52,6 @@ public class PerformancesExpressServiceImpl extends ServiceImpl<KylinPerformance
Map
<
String
,
Object
>
map
=
BeanUtil
.
convertBeanToMap
(
performanceExpressSearchAdminParam
);
voList
=
kylinOrderTicketsMapper
.
performanceExpressPerformanceOrderList
(
map
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
return
null
;
}
return
voList
;
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/dao/PerformanceExpressPerformanceOrderListAdminDao.java
View file @
a301e849
...
...
@@ -2,29 +2,24 @@ package com.liquidnet.service.kylin.dao;
import
lombok.Data
;
import
java.math.BigDecimal
;
@Data
public
class
PerformanceExpressPerformanceOrderListAdminDao
{
String
orderTicketsId
;
String
sponsor
;
String
orderCode
;
String
title
;
String
status
;
String
getTicketType
;
String
payType
;
String
paymentType
;
String
tied
;
String
price
;
String
number
;
String
priceMember
;
String
priceTotal
;
String
priceVoucher
;
String
priceActual
;
String
priceExpress
;
String
priceRefund
;
String
refundNumber
;
Integer
status
;
BigDecimal
priceExpress
;
String
userId
;
String
userName
;
String
userMobile
;
String
express_contacts
;
String
express_address
;
String
express_phone
;
Integer
expressType
;
}
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinOrderTicketsMapper.xml
View file @
a301e849
...
...
@@ -219,7 +219,7 @@
kot.express_address,
kot.express_phone,
kots.status
kots.status
,
kots.express_type
FROM kylin_order_tickets kot
...
...
@@ -232,14 +232,13 @@
AND kots.pay_status = 1
<if
test=
"orderCode != null and orderCode != ''"
>
AND kot.order_code = #{orderCode}
</if>
<if
test=
"orderTicketsId != null and orderTicketsId != ''"
>
AND kot.order_tickets_id = #{orderTicketsId}
</if>
<if
test=
"orderStatus!=null and orderStatus!=''"
>
AND kots.status = #{orderStatus}
</if>
<if
test=
"userMobile != null and userMobile != ''"
>
AND kot.user_mobile = #{userMobile}
</if>
<if
test=
"userName != null and userName != ''"
>
AND kot.user_name like concat('%', #{userName}, '%')
</if>
<if
test=
"orderCode != null and orderCode != ''"
>
AND kot.order_code = #{orderCode}
</if>
<if
test=
"expressContacts != null and expressContacts != ''"
>
AND kot.express_contacts = #{expressContacts}
</if>
<if
test=
"expressContacts != null and expressContacts != ''"
>
AND kot.express_contacts = like concat('%', #{expressContacts}, '%')
</if>
<if
test=
"expressPhone != null and expressPhone != ''"
>
AND kot.express_phone = #{expressPhone}
</if>
<if
test=
"orderStatus!=null and orderStatus!=''"
>
AND kots.status = #{orderStatus}
</if>
</where>
</select>
</mapper>
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinPerformancesMapper.xml
View file @
a301e849
...
...
@@ -463,8 +463,8 @@
<if
test=
"title!=''"
>
AND title LIKE concat('%', #{title}, '%')
</if>
<if
test=
"performanceId!=''"
>
AND performance
_id = #{performance
Id}
<if
test=
"performance
s
Id!=''"
>
AND performance
s_id = #{performances
Id}
</if>
</where>
ORDER BY created_at DESC
...
...
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