|
@@ -1,5 +1,6 @@
|
|
|
package com.tourism.webadmin.app.wechat.controller;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.github.pagehelper.page.PageMethod;
|
|
|
import com.tourism.common.additional.utils.StringUtils;
|
|
|
import com.tourism.common.additional.utils.UrlConvertUtils;
|
|
@@ -196,10 +197,13 @@ public class TakeOutProjectController {
|
|
|
|
|
|
//小程序看到的为启用的店铺
|
|
|
|
|
|
- RestaurantInfo filter = new RestaurantInfo();
|
|
|
- filter.setId(id);
|
|
|
- filter.setEnable(1);
|
|
|
- RestaurantInfo restaurantInfo = restaurantInfoService.getOne(filter);
|
|
|
+// RestaurantInfo filter = new RestaurantInfo();
|
|
|
+// filter.setId(id);
|
|
|
+// filter.setEnable(1);
|
|
|
+ QueryWrapper queryWrapper = new QueryWrapper();
|
|
|
+ queryWrapper.eq("id",id);
|
|
|
+ queryWrapper.eq("enable",1);
|
|
|
+ RestaurantInfo restaurantInfo = restaurantInfoService.getOne(queryWrapper);
|
|
|
RestaurantInfoVo restaurantInfoVo = MyModelUtil.copyTo(restaurantInfo, RestaurantInfoVo.class);
|
|
|
if(StringUtils.isNotEmpty(restaurantInfoVo.getUrl())) {
|
|
|
List<String> arrayList2 = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), restaurantInfoVo.getId(), restaurantInfoVo.getUrl(), "url");
|