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
bbd52173
Commit
bbd52173
authored
Mar 26, 2022
by
dingzhiwei
Browse files
修复paypal支付查询问题
parent
c3456cbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
jeepay-payment/src/main/java/com/jeequan/jeepay/pay/channel/pppay/PppayPayOrderQueryService.java
View file @
bbd52173
...
...
@@ -5,6 +5,8 @@ import com.jeequan.jeepay.core.entity.PayOrder;
import
com.jeequan.jeepay.pay.channel.IPayOrderQueryService
;
import
com.jeequan.jeepay.pay.model.MchAppConfigContext
;
import
com.jeequan.jeepay.pay.rqrs.msg.ChannelRetMsg
;
import
com.jeequan.jeepay.pay.service.ConfigContextQueryService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
/**
...
...
@@ -16,13 +18,17 @@ import org.springframework.stereotype.Service;
*/
@Service
public
class
PppayPayOrderQueryService
implements
IPayOrderQueryService
{
@Override
public
String
getIfCode
()
{
return
CS
.
IF_CODE
.
PPPAY
;
}
@Autowired
private
ConfigContextQueryService
configContextQueryService
;
@Override
public
ChannelRetMsg
query
(
PayOrder
payOrder
,
MchAppConfigContext
mchAppConfigContext
)
throws
Exception
{
return
mchAppC
onfigContext
.
getPaypalWrapper
().
processOrder
(
null
,
payOrder
);
return
c
onfigContext
QueryService
.
getPaypalWrapper
(
mchAppConfigContext
).
processOrder
(
null
,
payOrder
);
}
}
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