记得上下班打卡 | 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
35487b7b
Commit
35487b7b
authored
Jun 26, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
退款订单优化展示
parent
181887b1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
18 deletions
+19
-18
RefundSearchParam.java
.../liquidnet/service/kylin/dto/param/RefundSearchParam.java
+2
-0
refund.html
...ain/resources/templates/zhengzai/kylin/refund/refund.html
+7
-11
KylinOrderRefundsServiceImpl.java
...gzai/kylin/service/impl/KylinOrderRefundsServiceImpl.java
+1
-1
OrderRefundDao.java
.../java/com/liquidnet/service/kylin/dao/OrderRefundDao.java
+2
-0
KylinOrderRefundsMapper.xml
...iquidnet.service.kylin.mapper/KylinOrderRefundsMapper.xml
+7
-6
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/RefundSearchParam.java
View file @
35487b7b
...
@@ -22,6 +22,8 @@ public class RefundSearchParam implements Serializable {
...
@@ -22,6 +22,8 @@ public class RefundSearchParam implements Serializable {
private
String
orderRefundCode
;
private
String
orderRefundCode
;
private
String
orderCode
;
private
Integer
status
;
private
Integer
status
;
@ApiModelProperty
(
value
=
"页数"
,
example
=
"0"
)
@ApiModelProperty
(
value
=
"页数"
,
example
=
"0"
)
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/refund/refund.html
View file @
35487b7b
...
@@ -11,12 +11,12 @@
...
@@ -11,12 +11,12 @@
<div
class=
"select-list"
>
<div
class=
"select-list"
>
<ul>
<ul>
<li>
<li>
<label>
票务
订单ID:
</label>
<label>
订单ID:
</label>
<input
type=
"text"
name=
"orderTicketsId"
/>
<input
type=
"text"
name=
"orderTicketsId"
/>
</li>
</li>
<li>
<li>
<label>
退款
编号:
</label>
<label>
订单
编号:
</label>
<input
type=
"text"
name=
"order
Refund
Code"
/>
<input
type=
"text"
name=
"orderCode"
/>
</li>
</li>
<li>
<li>
<label>
退款状态:
</label>
<label>
退款状态:
</label>
...
@@ -197,19 +197,15 @@
...
@@ -197,19 +197,15 @@
},
},
{
{
field
:
'orderRefundsId'
,
field
:
'orderRefundsId'
,
title
:
'退款
id
'
title
:
'退款
ID
'
},
},
{
{
field
:
'orderTicketsId'
,
field
:
'orderTicketsId'
,
title
:
'
票务订单id
'
title
:
'
订单ID
'
},
},
{
{
field
:
'orderRefundCode'
,
field
:
'orderCode'
,
title
:
'退款编号'
title
:
'订单编号'
},
{
field
:
'refundCode'
,
title
:
'退款中心退款编号'
},
},
{
{
field
:
'price'
,
field
:
'price'
,
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/kylin/service/impl/KylinOrderRefundsServiceImpl.java
View file @
35487b7b
...
@@ -354,7 +354,7 @@ public class KylinOrderRefundsServiceImpl extends ServiceImpl<KylinOrderRefundsM
...
@@ -354,7 +354,7 @@ public class KylinOrderRefundsServiceImpl extends ServiceImpl<KylinOrderRefundsM
}
}
pageInfoTmp
=
new
PageInfo
(
voList
);
pageInfoTmp
=
new
PageInfo
(
voList
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
return
new
PageInfo
();
return
new
PageInfo
(
new
ArrayList
()
);
}
}
return
pageInfoTmp
;
return
pageInfoTmp
;
}
}
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/dao/OrderRefundDao.java
View file @
35487b7b
...
@@ -64,6 +64,8 @@ public class OrderRefundDao implements Serializable {
...
@@ -64,6 +64,8 @@ public class OrderRefundDao implements Serializable {
private
String
updatedAt
;
private
String
updatedAt
;
private
String
orderCode
;
public
void
setStatusName
(
Integer
status
){
public
void
setStatusName
(
Integer
status
){
this
.
status
=
status
;
this
.
status
=
status
;
switch
(
status
){
switch
(
status
){
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinOrderRefundsMapper.xml
View file @
35487b7b
...
@@ -34,17 +34,18 @@
...
@@ -34,17 +34,18 @@
<result
column=
"created_at"
property=
"createdAt"
/>
<result
column=
"created_at"
property=
"createdAt"
/>
</resultMap>
</resultMap>
<select
id=
"misRefundList"
resultType=
"com.liquidnet.service.kylin.dao.OrderRefundDao"
resultMap=
"misRefundListResult"
>
<select
id=
"misRefundList"
resultType=
"com.liquidnet.service.kylin.dao.OrderRefundDao"
resultMap=
"misRefundListResult"
>
SELECT *
SELECT a.*, b.order_code
FROM kylin_order_refunds
FROM kylin_order_refunds AS a
JOIN kylin_order_tickets AS b ON a.order_tickets_id = b.order_tickets_id
<where>
<where>
<if
test=
"orderTicketsId!=''"
>
<if
test=
"orderTicketsId!=''"
>
AND order_tickets_id = #{orderTicketsId}
AND
a.
order_tickets_id = #{orderTicketsId}
</if>
</if>
<if
test=
"order
Refund
Code!=''"
>
<if
test=
"orderCode!=''"
>
AND
order_refund_code = #{orderRefund
Code}
AND
b.order_code = #{order
Code}
</if>
</if>
<if
test=
"status!=''"
>
<if
test=
"status!=''"
>
AND status = #{status}
AND
a.
status = #{status}
</if>
</if>
</where>
</where>
</select>
</select>
...
...
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