|
@@ -12,9 +12,11 @@ import com.tourism.common.core.object.MyPageData;
|
|
|
import com.tourism.common.core.object.ResponseResult;
|
|
|
import com.tourism.common.core.util.MyModelUtil;
|
|
|
import com.tourism.common.core.util.MyPageUtil;
|
|
|
+import com.tourism.webadmin.app.wechat.dto.BestNewShopDto;
|
|
|
import com.tourism.webadmin.app.wechat.dto.PageInfo;
|
|
|
import com.tourism.webadmin.app.wechat.dto.ShopFoodDto;
|
|
|
import com.tourism.webadmin.app.wechat.vo.shopfood.*;
|
|
|
+import com.tourism.webadmin.back.dto.RestaurantInfoDto;
|
|
|
import com.tourism.webadmin.back.model.JobProject;
|
|
|
import com.tourism.webadmin.back.model.RestaurantFoodInfo;
|
|
|
import com.tourism.webadmin.back.model.RestaurantInfo;
|
|
@@ -89,7 +91,7 @@ public class WechatFoodIndexController {
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * 超火美食首页3条
|
|
|
+ * 超火美食首页4条
|
|
|
* @return 应答结果对象。
|
|
|
*/
|
|
|
@GetMapping("/queryIndexHotFood")
|
|
@@ -98,8 +100,13 @@ public class WechatFoodIndexController {
|
|
|
filter.setDataState(1);
|
|
|
filter.setEnable(1);
|
|
|
filter.setIsHotFood(1);
|
|
|
+
|
|
|
+ MyOrderParam myOrderParam = new MyOrderParam();
|
|
|
+ myOrderParam.add(new MyOrderParam.OrderInfo("totalSales",false,null));
|
|
|
+ String orderBy = MyOrderParam.buildOrderBy(myOrderParam, RestaurantInfo.class);
|
|
|
+
|
|
|
PageMethod.startPage(1, 4, true);
|
|
|
- List<RestaurantFoodInfo> foodInfoList = restaurantFoodInfoService.getRestaurantFoodInfoList(filter, null);
|
|
|
+ List<RestaurantFoodInfo> foodInfoList = restaurantFoodInfoService.getRestaurantFoodInfoList(filter, orderBy);
|
|
|
MyPageData<RestaurantFoodInfoVo> pageData = MyPageUtil.makeResponseData(foodInfoList, RestaurantFoodInfoVo.class);
|
|
|
List<RestaurantFoodInfoVo> list = pageData.getDataList();
|
|
|
list.stream().forEach(o->{
|
|
@@ -144,7 +151,12 @@ public class WechatFoodIndexController {
|
|
|
filter.setDataState(1);
|
|
|
filter.setEnable(1);
|
|
|
filter.setIsDeliciousShop(1);
|
|
|
- List<RestaurantInfo> list = restaurantInfoService.getRestaurantInfoList(filter, null);
|
|
|
+
|
|
|
+ MyOrderParam myOrderParam = new MyOrderParam();
|
|
|
+ myOrderParam.add(new MyOrderParam.OrderInfo("recommendationRate",false,null));
|
|
|
+ String orderBy = MyOrderParam.buildOrderBy(myOrderParam, RestaurantInfo.class);
|
|
|
+
|
|
|
+ List<RestaurantInfo> list = restaurantInfoService.getRestaurantInfoList(filter, orderBy);
|
|
|
List<RestaurantInfoVo> voList = MyPageUtil.makeResponseData(list,RestaurantInfoVo.class).getDataList();
|
|
|
voList.stream().forEach(o-> {
|
|
|
List<String> strings = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), o.getUrl());
|
|
@@ -159,46 +171,68 @@ public class WechatFoodIndexController {
|
|
|
* @return 应答结果对象。
|
|
|
*/
|
|
|
@GetMapping("/queryIndexSelectShop")
|
|
|
- public ResponseResult<WechatSelectShopVo> queryIndexSelectShop() {
|
|
|
+ public ResponseResult<MyPageData<WechatSelectShopVo>> queryIndexSelectShop(BestNewShopDto bestNewShopVoDto) {
|
|
|
|
|
|
RestaurantInfo filter = new RestaurantInfo();
|
|
|
filter.setDataState(1);
|
|
|
filter.setEnable(1);
|
|
|
- filter.setIsSelectShop(1);
|
|
|
+
|
|
|
+ Integer orderNum = 0;
|
|
|
+ if (bestNewShopVoDto.getIsSelectShop()!=null &&bestNewShopVoDto.getIsSelectShop()==1){
|
|
|
+ filter.setIsSelectShop(1);
|
|
|
+ orderNum = 1;
|
|
|
+ }
|
|
|
+ if (bestNewShopVoDto.getIsBestNewShop()!=null &&bestNewShopVoDto.getIsBestNewShop()==1){
|
|
|
+ filter.setIsBestNewShop(1);
|
|
|
+ orderNum = 2;
|
|
|
+ }
|
|
|
+
|
|
|
//店铺
|
|
|
- List<RestaurantInfo> list = restaurantInfoService.getRestaurantInfoList(filter, null);
|
|
|
- List<WechatSelectShopVo> wechatSelectShopVos = MyModelUtil.copyCollectionTo(list, WechatSelectShopVo.class);
|
|
|
- if (wechatSelectShopVos == null || wechatSelectShopVos.isEmpty()) {
|
|
|
+ if (bestNewShopVoDto.getPageNum() != null && bestNewShopVoDto.getPageSize() != null && bestNewShopVoDto.getCount() != null) {
|
|
|
+ PageMethod.startPage(bestNewShopVoDto.getPageNum(), bestNewShopVoDto.getPageSize(), bestNewShopVoDto.getCount());
|
|
|
+ }
|
|
|
+
|
|
|
+ MyOrderParam myOrderParam = new MyOrderParam();
|
|
|
+ if (orderNum==1) myOrderParam.add(new MyOrderParam.OrderInfo("totalSales",false,null));
|
|
|
+ if (orderNum==2) myOrderParam.add(new MyOrderParam.OrderInfo("createTime",false,null));
|
|
|
+ String orderBy = MyOrderParam.buildOrderBy(myOrderParam, RestaurantInfo.class);
|
|
|
+
|
|
|
+ List<RestaurantInfo> list = restaurantInfoService.getRestaurantInfoList(filter, orderBy);
|
|
|
+ MyPageData<WechatSelectShopVo> pageData = MyPageUtil.makeResponseData(list, WechatSelectShopVo.class);
|
|
|
+ if (pageData.getDataList() == null || pageData.getDataList().isEmpty()) {
|
|
|
return ResponseResult.success(null);
|
|
|
}
|
|
|
- WechatSelectShopVo shopVo = wechatSelectShopVos.get(0);
|
|
|
- String[] tags = shopVo.getTag().split("&");
|
|
|
- shopVo.setTags(tags);
|
|
|
- //json->图片
|
|
|
- List<String> strings = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), shopVo.getUrl());
|
|
|
- shopVo.setUrlAfterConvert(strings);
|
|
|
- //美食列表
|
|
|
- PageMethod.startPage(1,3,null);
|
|
|
- RestaurantFoodInfo filter1 = new RestaurantFoodInfo();
|
|
|
- filter1.setEnable(1);
|
|
|
- filter1.setDataState(1);
|
|
|
- filter1.setRestaurantId(shopVo.getId());
|
|
|
- List<RestaurantFoodInfo> infoList = restaurantFoodInfoService.getRestaurantFoodInfoList(filter1, null);
|
|
|
- List<SelectShopFoodVo> foodVos = MyPageUtil.makeResponseData(infoList, SelectShopFoodVo.class).getDataList();
|
|
|
-
|
|
|
- foodVos.stream().forEach(o->{
|
|
|
+ List<WechatSelectShopVo> dataList = pageData.getDataList();
|
|
|
+ for (WechatSelectShopVo shopVo : dataList) {
|
|
|
+ String[] tags = shopVo.getTag().split("&");
|
|
|
+ shopVo.setTags(tags);
|
|
|
+ //json->图片
|
|
|
+ List<String> strings = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), shopVo.getUrl());
|
|
|
+ shopVo.setUrlAfterConvert(strings);
|
|
|
+ //美食列表
|
|
|
+ PageMethod.startPage(1,3,null);
|
|
|
+ RestaurantFoodInfo filter1 = new RestaurantFoodInfo();
|
|
|
+ filter1.setEnable(1);
|
|
|
+ filter1.setDataState(1);
|
|
|
+ filter1.setRestaurantId(shopVo.getId());
|
|
|
+ List<RestaurantFoodInfo> infoList = restaurantFoodInfoService.getRestaurantFoodInfoList(filter1, null);
|
|
|
+ List<SelectShopFoodVo> foodVos = MyPageUtil.makeResponseData(infoList, SelectShopFoodVo.class).getDataList();
|
|
|
+
|
|
|
+ foodVos.stream().forEach(o->{
|
|
|
+
|
|
|
+ List<String> strings1 = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), o.getUrl());
|
|
|
+ o.setUrlAfterConvert(strings1);
|
|
|
+ });
|
|
|
+ foodVos.sort(new Comparator<SelectShopFoodVo>() {
|
|
|
+ @Override
|
|
|
+ public int compare(SelectShopFoodVo o1, SelectShopFoodVo o2) {
|
|
|
+ return o2.getSales().compareTo(o1.getSales());
|
|
|
+ }
|
|
|
+ });
|
|
|
+ shopVo.setFoodList(foodVos);
|
|
|
+ }
|
|
|
|
|
|
- List<String> strings1 = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), o.getUrl());
|
|
|
- o.setUrlAfterConvert(strings1);
|
|
|
- });
|
|
|
- foodVos.sort(new Comparator<SelectShopFoodVo>() {
|
|
|
- @Override
|
|
|
- public int compare(SelectShopFoodVo o1, SelectShopFoodVo o2) {
|
|
|
- return o2.getSales().compareTo(o1.getSales());
|
|
|
- }
|
|
|
- });
|
|
|
- shopVo.setFoodList(foodVos);
|
|
|
- return ResponseResult.success(shopVo);
|
|
|
+ return ResponseResult.success(pageData);
|
|
|
}
|
|
|
|
|
|
|