Commit 0aa0f826 authored by wwccw0591's avatar wwccw0591

pc

parent 4f67073e
......@@ -568,7 +568,6 @@ class OrderServiceModel extends \Business\AbstractModel
if(empty($orderGoods)){
$orderGoods=array();
}
echo json_encode($reciverInfo);exit;
$returnData = array(
'orderId' => $this->order['orderId'],
'storeName' => $this->order['storeName'],
......@@ -582,8 +581,8 @@ class OrderServiceModel extends \Business\AbstractModel
'reciverName' => $this->orderCommon['reciverName'],
'mobPhone' => $reciverInfo['mob_phone'],
'street' => $reciverInfo['street'],
'lng'=>$reciverInfo['lng'],
'lat'=>$reciverInfo['lat'],
'lng'=>isset($reciverInfo['lng'])?$reciverInfo['lng']:ApiConst::zero,
'lat'=>isset($reciverInfo['lat'])?$reciverInfo['lat']:ApiConst::zero,
'subAddress' => isset($reciverInfo['sub_address']) ? $reciverInfo['sub_address'] : '',
'orderGoods' => $orderGoods,
'shippingFee'=>$this->order['shippingFee'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment