调整商品列表查询
This commit is contained in:
parent
b2f006f51c
commit
d4094ba1c3
@ -330,12 +330,12 @@ class MerchantDao extends BaseDao
|
||||
->whereNotNull('long')
|
||||
->field("mer_id,st_distance_sphere(point(`long`,`lat`), point({$lng}, {$lat})) as distance")
|
||||
->having("distance <= {$distance}")
|
||||
->limit(50)->select();
|
||||
if (empty($merchant)) {
|
||||
->limit(50)->select()->toArray();
|
||||
if (empty($merchant) && $distance < 5000) {
|
||||
$merchant = $this->getValidMerchantByDistance($lat, $lng, 5000);
|
||||
}
|
||||
if (!empty($merchant)) {
|
||||
return array_column($merchant->toArray(), 'mer_id');
|
||||
return array_column($merchant, 'mer_id');
|
||||
}
|
||||
return [];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user