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

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

@@ -750,7 +750,6 @@ class MCashier
                 LEFT JOIN qianniao_customer_' .$this->onlineEnterpriseId .' AS c 
                 ON u.id = c.userCenterId 
                 AND u.mobile = ' . $mobile . ' LIMIT 1';
-        var_dump($sql);
         $customerInfo = $objDCustomer->query($sql);
         if ($customerInfo === false) {
             return ResultWrapper::fail($objDCustomer->error(), ErrorCode::$dberror);
@@ -762,7 +761,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()){