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-23 17:10:06 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d20bb52ca127691d460f63b57eb4f554546ad9c7
d20bb52c
1 parent
b360a964
仓管费
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
src/main/java/com/cjs/site/action/user/fund/PickPayAction.java
src/main/java/com/cjs/site/biz/user/pick/PickPayBiz.java
src/main/java/com/cjs/site/action/user/fund/PickPayAction.java
View file @
d20bb52
...
...
@@ -40,7 +40,7 @@ public class PickPayAction {
if
(
pickPayBiz
.
isValidNotify
(
params
)){
return
"SUCCESS"
;
}
return
"
ERROR
"
;
return
"
FAILED
"
;
}
@RequestMapping
(
value
=
"test"
,
method
=
RequestMethod
.
POST
)
...
...
@@ -49,7 +49,7 @@ public class PickPayAction {
if
(
pickPayBiz
.
isValidNotify
(
params
)){
return
"SUCCESS"
;
}
return
"
ERROR
"
;
return
"
FAILED
"
;
}
}
...
...
src/main/java/com/cjs/site/biz/user/pick/PickPayBiz.java
View file @
d20bb52
...
...
@@ -118,6 +118,11 @@ public class PickPayBiz {
}
catch
(
Exception
e
)
{
transactionManager
.
rollback
(
status
);
}
}
else
{
OutpropApplyPayInfo
update
=
new
OutpropApplyPayInfo
();
update
.
setTradeNo
(
result
.
get
(
"billNo"
));
update
.
setStatus
(
"3"
);
outpropApplyPayDao
.
update
(
update
);
}
}
return
false
;
...
...
Please
register
or
login
to post a comment