|
@@ -83,10 +83,12 @@ public class HyReleaseGoodsInfoServiceImpl extends ServiceImpl<HyReleaseGoodsInf
|
|
|
List<HyReleaseGoodsInfo> hyReleaseGoodsInfoList = new ArrayList<>();
|
|
|
//按时间排序货源列表
|
|
|
List<HyReleaseGoodsInfo> dataList = baseMapper.getListByCondition(pageView);
|
|
|
+ String param = "";
|
|
|
if (!CollectionUtils.isEmpty(dataList)) {
|
|
|
//查询发货地经纬度
|
|
|
for (int i = 0; i < dataList.size(); i++) {
|
|
|
HyReleaseGoodsInfo hyReleaseGoodsInfo1 = dataList.get(i);
|
|
|
+ param += hyReleaseGoodsInfo1.getId()+",";
|
|
|
//发货地经纬度
|
|
|
double lat2 = Math.toRadians(Double.valueOf(hyReleaseGoodsInfo1.getSendLatitude()));
|
|
|
double lng2 = Math.toRadians(Double.valueOf(hyReleaseGoodsInfo1.getSendLongitude()));
|
|
@@ -141,11 +143,6 @@ public class HyReleaseGoodsInfoServiceImpl extends ServiceImpl<HyReleaseGoodsInf
|
|
|
}
|
|
|
//周边信息列表
|
|
|
List<HyReleaseGoodsInfo> dataList1 = baseMapper.getAllListsByCondition(pageView);
|
|
|
-// dataList1.removeAll(dataList);
|
|
|
- String param = "";
|
|
|
- for(HyReleaseGoodsInfo tmp : dataList){
|
|
|
- param += tmp.getId()+",";
|
|
|
- }
|
|
|
if (!CollectionUtils.isEmpty(dataList1)) {
|
|
|
if (!StringUtils.isEmpty(hyReleaseGoodsInfo.getLoadingPlaceCity())) {
|
|
|
//查询发货地经纬度
|