记得上下班打卡 | 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
fa51982b
Commit
fa51982b
authored
Jan 07, 2022
by
jiangxiulong
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/jxl_1214_refund' into dev_merchant
parents
81a4830c
f2758142
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
10 deletions
+60
-10
RefundSearchParam.java
.../liquidnet/service/kylin/dto/param/RefundSearchParam.java
+2
-0
refund.html
...ain/resources/templates/zhengzai/kylin/refund/refund.html
+46
-9
OrderRefundDao.java
.../java/com/liquidnet/service/kylin/dao/OrderRefundDao.java
+4
-0
KylinOrderRefundsMapper.xml
...iquidnet.service.kylin.mapper/KylinOrderRefundsMapper.xml
+8
-1
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/RefundSearchParam.java
View file @
fa51982b
...
...
@@ -28,6 +28,8 @@ public class RefundSearchParam implements Serializable {
private
String
getTicketType
;
private
Integer
type
;
private
Integer
expressStatus
;
private
String
status
;
private
List
<
String
>
statusStr
;
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/refund/refund.html
View file @
fa51982b
...
...
@@ -91,6 +91,17 @@
</shiro:hasPermission>
</select>
</li>
<li>
<label>
快递状态:
</label>
<select
name=
"expressStatus"
>
<option
value=
""
>
所有
</option>
<option
value=
"1"
>
下单失败
</option>
<option
value=
"2"
>
已下单
</option>
<option
value=
"3"
>
已取消
</option>
<option
value=
"70"
>
运输中
</option>
<option
value=
"80"
>
已签收
</option>
</select>
</li>
<li>
<a
class=
"btn btn-primary btn-rounded btn-sm"
onclick=
"$.table.search()"
><i
class=
"fa fa-search"
></i>
搜索
</a>
...
...
@@ -363,7 +374,33 @@
},
{
field
:
'mailno'
,
title
:
'运单号'
title
:
'运单信息'
,
formatter
:
function
(
value
,
row
)
{
let
sendExpressTypeName
=
""
;
if
(
row
.
sendExpressType
==
1
)
{
sendExpressTypeName
=
"上门取件"
;
}
else
if
(
row
.
sendExpressType
==
2
)
{
sendExpressTypeName
=
"自主发货"
;
}
else
{
sendExpressTypeName
=
"未知"
;
}
let
expressStatusName
=
""
;
if
(
row
.
expressStatus
==
1
)
{
expressStatusName
=
"下单失败"
;
}
else
if
(
row
.
expressStatus
==
2
)
{
expressStatusName
=
"已下单"
;
}
else
if
(
row
.
expressStatus
==
3
)
{
expressStatusName
=
"已取消"
;
}
else
if
(
row
.
expressStatus
==
80
)
{
expressStatusName
=
"已签收"
;
}
else
if
(
row
.
expressStatus
==
8000
)
{
expressStatusName
=
"已签收"
;
}
else
{
expressStatusName
=
"运输中"
;
}
return
value
+
'<br>'
+
sendExpressTypeName
+
'<br>'
+
expressStatusName
+
'<br>'
+
row
.
remark
}
},
{
field
:
'refundError'
,
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/dao/OrderRefundDao.java
View file @
fa51982b
...
...
@@ -79,6 +79,10 @@ public class OrderRefundDao implements Serializable {
private
String
getTicketType
;
private
String
mailno
;
private
Integer
sendExpressType
;
private
Integer
expressStatus
;
private
String
remark
;
public
void
setStatusName
(
Integer
status
){
this
.
status
=
status
;
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinOrderRefundsMapper.xml
View file @
fa51982b
...
...
@@ -81,10 +81,17 @@
<select
id=
"misRefundList"
resultType=
"com.liquidnet.service.kylin.dao.OrderRefundDao"
resultMap=
"misRefundListResult"
>
select t.*, b.order_code, b.performance_title, b.get_ticket_type from
(select a.*, d.mailno
(select a.*, d.mailno
, d.send_express_type,d.remark,d.express_status
from kylin_order_refunds a
LEFT JOIN kylin_order_express AS d ON d.order_refunds_id = a.order_refunds_id
<where>
<if
test=
"expressStatus != '' and expressStatus != 70 and expressStatus != 80"
>
AND oe.express_status =
${expressStatus}
</if>
<if
test=
"expressStatus == 70"
>
AND (oe.express_status > 3 AND oe.express_status != 80 AND oe.express_status
!= 8000)
</if>
<if
test=
"expressStatus == 80"
>
AND (oe.express_status = 80 OR oe.express_status = 8000)
</if>
<if
test=
"orderTicketsId!=''"
>
AND a.order_tickets_id = #{orderTicketsId}
</if>
...
...
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