Commit 92304dda authored by hujun's avatar hujun

site_id

parent 011e82ca
......@@ -37,6 +37,16 @@ class LocationService
return $result;
}
if ($longitude < 53 && $longitude > 2) {
$result['msg'] = '纬度范围错误';
return $result;
}
if ($latitude < 140 && $latitude > 70) {
$result['msg'] = '经度范围错误';
return $result;
}
$m_location = new ALocationListModel();
$position_service = new PositionService();
$s_redis = new RedisCacheService();
......
......@@ -476,7 +476,7 @@ class StoreFee extends Basic
$agent_id = $params["agent_id"];
$store_id = $params["store_id"];
$purpose = $params["purpose"];
$site_id = $params["site_id"];
$site_id = $this->siteId;
$card_name = $params["card_name"];
$bank = $params["bank"];
$card_no = $params["card_no"];
......
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