Browse Source

付款提醒

shish 1 year ago
parent
commit
8e80e7ca9f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      app-ghs/controllers/OrderController.php

+ 4 - 0
app-ghs/controllers/OrderController.php

@@ -817,6 +817,10 @@ class OrderController extends BaseController
 
                 $msg = $response['msg'] ?? '';
                 $retCode = $response['code'] ?? '';
+                if ($retCode == 'BBS10000' || $retCode == 'BBS11105') {
+                    $shopId = $order->shopId;
+                    ShopExtClass::remindInputPassword($shopId);
+                }
                 $fullMsg = $msg . "(付款码:{$authCode})" . '(' . $name . ')';
                 noticeUtil::push($fullMsg . ' ' . $retCode . ' 编号007', '15280215347');
                 util::success(['returnStatus' => 'FAILURE', 'returnCode' => $retCode], $msg);