Toggle navigation
Toggle navigation
This project
Loading...
Sign in
zyn
/
cjs-site
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
bruce
2019-05-31 11:13:03 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b6da44e61f7438cd37693455869af792c26eddc2
b6da44e6
1 parent
ca986a9d
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
src/main/java/com/cjs/site/biz/user/pick/PickPayBiz.java
src/main/java/com/cjs/site/biz/user/pick/PickPayBiz.java
View file @
b6da44e
...
...
@@ -124,19 +124,17 @@ public class PickPayBiz {
}
}
transactionManager
.
commit
(
status
);
return
true
;
}
catch
(
Exception
e
)
{
transactionManager
.
rollback
(
status
);
}
}
else
if
(
result
.
get
(
"billStatus"
).
equals
(
"REFUND"
))
{
update
.
setStatus
(
"4"
);
//退款
outpropApplyPayDao
.
update
(
update
);
return
true
;
}
else
{
update
.
setStatus
(
"3"
);
//支付失败
outpropApplyPayDao
.
update
(
update
);
return
true
;
}
return
true
;
}
return
false
;
}
...
...
Please
register
or
login
to post a comment