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
942a8e41
Commit
942a8e41
authored
Apr 28, 2020
by
ping.wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
automaticRefund String类型改int类型
parent
8bcbba72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
order-application-service/src/main/java/cn/freemud/service/impl/OrderServiceImpl.java
+2
-1
No files found.
order-application-service/src/main/java/cn/freemud/service/impl/OrderServiceImpl.java
View file @
942a8e41
...
@@ -937,7 +937,8 @@ public class OrderServiceImpl implements Orderservice {
...
@@ -937,7 +937,8 @@ public class OrderServiceImpl implements Orderservice {
//48小时自动退款描述
//48小时自动退款描述
if
(
storeInfo
!=
null
&&
storeInfo
.
getBizVO
()
!=
null
&&
storeInfo
.
getBizVO
().
getStoreConfig
()!=
null
if
(
storeInfo
!=
null
&&
storeInfo
.
getBizVO
()
!=
null
&&
storeInfo
.
getBizVO
().
getStoreConfig
()!=
null
&&
queryOrderResponseVo
.
getRefundStatus
()
!=
null
&&
queryOrderResponseVo
.
getRefundStatus
()
==
1
)
{
&&
queryOrderResponseVo
.
getRefundStatus
()
!=
null
&&
queryOrderResponseVo
.
getRefundStatus
()
==
1
)
{
if
(
"1"
.
equals
(
storeInfo
.
getBizVO
().
getStoreConfig
().
getAutomaticRefund
())){
Integer
automaticRefund
=
storeInfo
.
getBizVO
().
getStoreConfig
().
getAutomaticRefund
();
if
(
automaticRefund
!=
null
&&
automaticRefund
==
1
){
queryOrderResponseVo
.
setRefundTips
(
"若48小时后商家未处理,自动同意"
);
queryOrderResponseVo
.
setRefundTips
(
"若48小时后商家未处理,自动同意"
);
}
else
{
}
else
{
queryOrderResponseVo
.
setRefundTips
(
"若48小时后商家未处理,拒绝退款"
);
queryOrderResponseVo
.
setRefundTips
(
"若48小时后商家未处理,拒绝退款"
);
...
...
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