package com.ruoyi.other.service.impl;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.account.api.feignClient.AppUserClient;
|
import com.ruoyi.account.api.model.AppUser;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.common.core.exception.ServiceException;
|
import com.ruoyi.common.core.utils.GeodesyUtil;
|
import com.ruoyi.common.security.service.TokenService;
|
import com.ruoyi.other.api.domain.Phone;
|
import com.ruoyi.other.api.domain.Shop;
|
import com.ruoyi.other.api.domain.ShopScore;
|
import com.ruoyi.other.mapper.PhoneMapper;
|
import com.ruoyi.other.mapper.ShopMapper;
|
import com.ruoyi.other.mapper.ShopScoreMapper;
|
import com.ruoyi.other.service.ShopScoreService;
|
import com.ruoyi.other.service.ShopService;
|
import com.ruoyi.other.vo.NearbyShopVO;
|
import com.ruoyi.other.vo.SaveWithdrawalAccount;
|
import com.ruoyi.other.vo.ShopDetailVO;
|
import com.ruoyi.system.api.domain.SysUser;
|
import com.ruoyi.system.api.feignClient.SysUserClient;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
import java.math.BigDecimal;
|
import java.math.RoundingMode;
|
import java.util.*;
|
import java.util.stream.Collectors;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author luodangjia
|
* @since 2024-11-20
|
*/
|
@Service
|
public class ShopServiceImpl extends ServiceImpl<ShopMapper, Shop> implements ShopService {
|
@Resource
|
private ShopMapper shopMapper;
|
@Resource
|
private PhoneMapper phoneMapper;
|
@Resource
|
private ShopScoreService shopScoreService;
|
@Resource
|
private AppUserClient appUserClient;
|
@Resource
|
private TokenService tokenService;
|
@Resource
|
private SysUserClient sysUserClient;
|
@Resource
|
private ShopScoreMapper scoreMapper;
|
|
|
/**
|
* 获取门店列表
|
* @param PageNum
|
* @param pageSize
|
* @param shop
|
* @return
|
*/
|
@Override
|
public IPage<Shop> getShopList(Integer PageNum, Integer pageSize, Shop shop) {
|
Page<Shop> page = new Page<>();
|
page.setCurrent(PageNum);
|
page.setSize(pageSize);
|
return shopMapper.selectShopList(page, shop);
|
}
|
|
|
/**
|
* 获取最近的门店
|
* @param longitude
|
* @param latitude
|
* @return
|
*/
|
@Override
|
public List<NearbyShopVO> nearbyShopList(BigDecimal longitude, BigDecimal latitude,Shop shop) {
|
//获取所有店
|
List<NearbyShopVO> nearbyShopVOS = shopMapper.selectNearbyShopList(shop);
|
if (nearbyShopVOS == null || nearbyShopVOS.isEmpty()) {
|
return Collections.emptyList();
|
}
|
//计算距离
|
for (NearbyShopVO nearbyShopVO : nearbyShopVOS) {
|
Double wgs84 = GeodesyUtil.getDistance(nearbyShopVO.getLongitude() + "," + nearbyShopVO.getLatitude(), longitude + "," + latitude).get("WGS84");
|
nearbyShopVO.setDistance(new BigDecimal(wgs84).setScale(2, RoundingMode.HALF_EVEN).doubleValue());
|
}
|
/*//排序
|
nearbyShopVOS.sort(new Comparator<NearbyShopVO>() {
|
@Override
|
public int compare(NearbyShopVO o1, NearbyShopVO o2) {
|
return o1.getDistance().compareTo(o2.getDistance());
|
}
|
});*/
|
|
return sortByDistance(nearbyShopVOS);
|
}
|
|
public static List<NearbyShopVO> sortByDistance(List<NearbyShopVO> nearbyShopVOS) {
|
return nearbyShopVOS.stream()
|
.sorted(Comparator.comparingDouble(NearbyShopVO::getDistance))
|
.collect(Collectors.toList());
|
}
|
|
@Override
|
public ShopDetailVO getShopDetail(Integer shopId, BigDecimal longitude, BigDecimal latitude) {
|
Long userid = null;
|
if (tokenService.isLoginApplet()){
|
userid = tokenService.getLoginUserApplet().getUserid();
|
}
|
// 查询店铺详情
|
ShopDetailVO shopDetailVO = shopMapper.selectShopDetail(shopId);
|
if (shopDetailVO == null) {
|
throw new ServiceException("查询店铺不存在");
|
}
|
//查询客服电话
|
Phone phone = phoneMapper.selectOne(new LambdaQueryWrapper<Phone>().eq(Phone::getShopId, shopDetailVO.getId()));
|
ArrayList<String> phones = new ArrayList<>();
|
if (phone != null) {
|
if (phone.getPhoneOne() != null) {
|
phones.add(phone.getPhoneOne());
|
}
|
if (phone.getPhoneTwo() != null) {
|
phones.add(phone.getPhoneTwo());
|
}
|
}
|
shopDetailVO.setPhones(phones);
|
|
//我的评分
|
if (userid != null){
|
ShopScore one = shopScoreService.getOne(new LambdaQueryWrapper<ShopScore>().eq(ShopScore::getAppUserId, userid).eq(ShopScore::getShopId, shopId).last(" order by create_time desc limit 0, 1"));
|
shopDetailVO.setMyScore(null == one ? BigDecimal.ZERO : one.getScore());
|
}
|
|
// 计算距离
|
if (shopDetailVO.getLongitude() != null && shopDetailVO.getLatitude() != null){
|
String shopLocation = String.format("%s,%s", shopDetailVO.getLongitude(), shopDetailVO.getLatitude());
|
String userLocation = String.format("%s,%s", longitude.toString(), latitude.toString());
|
Map<String, Double> distanceMap = GeodesyUtil.getDistance(userLocation, shopLocation);
|
Double wGs84 = distanceMap.get("WGS84");
|
shopDetailVO.setDistance(wGs84);
|
}
|
return shopDetailVO;
|
}
|
|
|
|
@Override
|
public Boolean cheUserByPhone(String phone) {
|
R<AppUser> r = appUserClient.getAppUserByPhone1(phone);
|
if (R.isError(r)){
|
return false;
|
}
|
return r.getData() != null;
|
}
|
|
|
/**
|
* 保存提现账户
|
* @param saveWithdrawalAccount
|
*/
|
@Override
|
public void saveWithdrawalAccount(SaveWithdrawalAccount saveWithdrawalAccount) {
|
Long userid = tokenService.getLoginUser().getUserid();
|
SysUser sysUser = sysUserClient.getSysUser(userid).getData();
|
Shop shop = this.getById(sysUser.getObjectId());
|
if(null != shop){
|
shop.setReceiverAccountNoEnc(saveWithdrawalAccount.getReceiverAccountNoEnc());
|
shop.setReceiverNameEnc(saveWithdrawalAccount.getReceiverNameEnc());
|
shop.setReceiverAccountType(saveWithdrawalAccount.getReceiverAccountType());
|
shop.setReceiverBankChannelNo(saveWithdrawalAccount.getReceiverBankChannelNo());
|
this.updateById(shop);
|
}
|
}
|
|
|
}
|