Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
bdbf40c9
Commit
bdbf40c9
authored
Oct 28, 2020
by
徐康
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单多次申请退款
parent
d6d37937
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
+7
-1
order-application-service/src/main/java/cn/freemud/adapter/OrderAdapter.java
+7
-1
No files found.
order-application-service/src/main/java/cn/freemud/adapter/OrderAdapter.java
View file @
bdbf40c9
...
@@ -1156,7 +1156,6 @@ public class OrderAdapter {
...
@@ -1156,7 +1156,6 @@ public class OrderAdapter {
responseVo
.
setModifiedTime
(
DateUtil
.
convert2String
(
new
Date
(
ordersBean
.
getGmtModified
()),
"yyyy-MM-dd HH:mm:ss"
));
responseVo
.
setModifiedTime
(
DateUtil
.
convert2String
(
new
Date
(
ordersBean
.
getGmtModified
()),
"yyyy-MM-dd HH:mm:ss"
));
}
}
if
(
ordersBean
.
getHasRefund
()
!=
null
&&
ordersBean
.
getHasRefund
()
&&
CollectionUtils
.
isNotEmpty
(
ordersBean
.
getRefundList
()))
{
if
(
ordersBean
.
getHasRefund
()
!=
null
&&
ordersBean
.
getHasRefund
()
&&
CollectionUtils
.
isNotEmpty
(
ordersBean
.
getRefundList
()))
{
if
(
CollectionUtils
.
isNotEmpty
(
ordersBean
.
getRefundList
()))
{
if
(
mcCafePartnerId
.
equals
(
ordersBean
.
getCompanyId
()))
{
if
(
mcCafePartnerId
.
equals
(
ordersBean
.
getCompanyId
()))
{
responseVo
.
setRefundIntervalTime
(
Long
.
valueOf
(
mccafeRefundInterval
));
responseVo
.
setRefundIntervalTime
(
Long
.
valueOf
(
mccafeRefundInterval
));
...
@@ -1203,7 +1202,14 @@ public class OrderAdapter {
...
@@ -1203,7 +1202,14 @@ public class OrderAdapter {
String
refundCreateTime
=
DateUtil
.
convert2String
(
new
Date
(
Long
.
parseLong
(
refundBean
.
getCreateTime
())),
DateUtil
.
FORMAT_YYYY_MM_DD_HHMMSS
);
String
refundCreateTime
=
DateUtil
.
convert2String
(
new
Date
(
Long
.
parseLong
(
refundBean
.
getCreateTime
())),
DateUtil
.
FORMAT_YYYY_MM_DD_HHMMSS
);
responseVo
.
setRefundCreateTime
(
refundCreateTime
);
responseVo
.
setRefundCreateTime
(
refundCreateTime
);
}
}
}
else
{
responseVo
.
setAfterRefundInterval
(
true
);
}
}
//如果是已取消、拒单、已完成的订单,则设置不能申请取消订单
if
(
OrderStatus
.
REFUSE
.
getCode
().
equals
(
ordersBean
.
getStatus
())
||
OrderStatus
.
CALCEL
.
getCode
().
equals
(
ordersBean
.
getStatus
())
||
OrderStatus
.
COMPLETE
.
getCode
().
equals
(
ordersBean
.
getStatus
()))
{
responseVo
.
setAfterRefundInterval
(
false
);
}
}
//商品信息转换
//商品信息转换
convent2ProductVos
(
ordersBean
.
getProductList
(),
responseVo
);
convent2ProductVos
(
ordersBean
.
getProductList
(),
responseVo
);
...
...
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