Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Jeepay
Commits
17db78d3
Commit
17db78d3
authored
Mar 30, 2023
by
xiaoyu
Browse files
分账结果查询,定时任务完善
parent
c87405c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
jeepay-payment/src/main/java/com/jeequan/jeepay/pay/task/PayOrderDivisionRecordReissueTask.java
View file @
17db78d3
...
...
@@ -125,13 +125,9 @@ public class PayOrderDivisionRecordReissueTask {
if
(
ChannelRetMsg
.
ChannelState
.
CONFIRM_SUCCESS
==
channelRetMsg
.
getChannelState
()
||
ChannelRetMsg
.
ChannelState
.
CONFIRM_FAIL
==
channelRetMsg
.
getChannelState
())
{
PayOrderDivisionRecord
upDivisionRecord
=
new
PayOrderDivisionRecord
();
upDivisionRecord
.
setRecordId
(
record
.
getRecordId
());
upDivisionRecord
.
setChannelRespResult
(
channelRetMsg
.
getChannelErrMsg
());
upDivisionRecord
.
setState
(
ChannelRetMsg
.
ChannelState
.
CONFIRM_SUCCESS
==
channelRetMsg
.
getChannelState
()
?
PayOrderDivisionRecord
.
STATE_SUCCESS
:
PayOrderDivisionRecord
.
STATE_FAIL
);
// payOrderDivisionRecordService.updateRecordSuccessOrFail(upDivisionRecord);
Byte
state
=
ChannelRetMsg
.
ChannelState
.
CONFIRM_SUCCESS
==
channelRetMsg
.
getChannelState
()
?
PayOrderDivisionRecord
.
STATE_SUCCESS
:
PayOrderDivisionRecord
.
STATE_FAIL
;
// 更新记录状态
payOrderDivisionRecordService
.
updateRecordSuccessOrFailBySingleItem
(
record
.
getRecordId
(),
state
,
channelRetMsg
.
getChannelErrMsg
());
}
});
...
...
Write
Preview
Supports
Markdown
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