yingzi 3 years ago
parent
commit
17269b2622
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Model/Cashier/MCashier.Class.php

+ 2 - 1
Model/Cashier/MCashier.Class.php

@@ -751,6 +751,7 @@ class MCashier
                 ON u.id = c.userCenterId 
                 AND u.mobile = ' . $mobile . ' LIMIT 1';
         $customerInfo = $objDCustomer->query($sql);
+        var_dump($customerInfo);
         if ($customerInfo === false) {
             return ResultWrapper::fail($objDCustomer->error(), ErrorCode::$dberror);
         }
@@ -761,7 +762,7 @@ class MCashier
         if (empty($customerInfo['customerId'])){
             return ResultWrapper::success([]);
         }
-var_dump($customerInfo);
+
         $objMShippingAddress = new MShippingAddress($this->onlineEnterpriseId);
         $addressListsResult = $objMShippingAddress->getAllShippingAddress(['customerId'=>$customerInfo['customerId'],'limit'=>10,'offset'=>0]);
         if (!$addressListsResult->isSuccess()){