You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.7 KiB
78 lines
2.7 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\dao\system\store;
|
|
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\system\store\SystemStore;
|
|
|
|
/**
|
|
* 门店dao
|
|
* Class SystemStoreDao
|
|
* @package app\dao\system\store
|
|
*/
|
|
class SystemStoreDao extends BaseDao
|
|
{
|
|
/**
|
|
* 设置模型
|
|
* @return string
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return SystemStore::class;
|
|
}
|
|
|
|
/**
|
|
* 经纬度排序计算
|
|
* @param string $latitude
|
|
* @param string $longitude
|
|
* @return string
|
|
*/
|
|
public function distance(string $latitude, string $longitude)
|
|
{
|
|
return "(round(6367000 * 2 * asin(sqrt(pow(sin(((latitude * pi()) / 180 - ({$latitude} * pi()) / 180) / 2), 2) + cos(({$latitude} * pi()) / 180) * cos((latitude * pi()) / 180) * pow(sin(((longitude * pi()) / 180 - ({$longitude} * pi()) / 180) / 2), 2))))) AS distance";
|
|
}
|
|
|
|
/**
|
|
* 获取
|
|
* @param array $where
|
|
* @param int $page
|
|
* @param int $limit
|
|
* @param string $latitude
|
|
* @param string $longitude
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getStoreList(array $where, array $field, int $page = 0, int $limit = 0, string $latitude = '', string $longitude = '')
|
|
{
|
|
return $this->search($where)->when($longitude && $latitude, function ($query) use ($longitude, $latitude) {
|
|
$query->field(['*', $this->distance($latitude, $longitude)])->order('distance ASC');
|
|
})->when($page && $limit, function ($query) use ($page, $limit) {
|
|
$query->page($page, $limit);
|
|
})->field($field)->order('id desc')->select()->toArray();
|
|
}
|
|
|
|
/**
|
|
* 获取门店不分页
|
|
* @param array $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getStore(array $where)
|
|
{
|
|
return $this->search($where)->order('add_time DESC')->field(['id', 'name'])->select()->toArray();
|
|
}
|
|
}
|
|
|