Browse Source

fix修复

master
weigang 5 years ago
parent
commit
33bcaad633
  1. 2
      app/Service/v3/Implementations/PaymentService.php

2
app/Service/v3/Implementations/PaymentService.php

@ -199,7 +199,7 @@ class PaymentService implements PaymentServiceInterface
if (!$redis->exists($refuseReasonForSpecialKey)) { // 当天如果没发过就发
$res = $this->smsAliSendService->doWithdrawFail($desc, $money, $result['err_code'], $result['err_code_des']);
if (isset($res['result']['Code']) && $res['result']['Code'] == 'OK') {
if (isset($res['Code']) && $res['Code'] == 'OK') {
$redis->set($refuseReasonForSpecialKey, $result['err_code'].'/'.$result['err_code_des']);
}
}

Loading…
Cancel
Save