Example #1
0
  /**
   * 攻略详情页
   *
   * @param dto
   * @param model
   * @return
   */
  @RequestMapping("/notesDetail")
  public String toNotesDetail(YouSearchDto dto, Model model) {
    logger.info("----toNotesList notesList-----");

    // 攻略详情页数据
    YouGuideNotes detail = guideNotesService.findYouGuideNotesDetail(dto.getClikcId());
    model.addAttribute("detail", detail);

    if (detail != null) {
      // IP热门景点
      List<YouGuideNotes> searchNotes =
          guideNotesService.findGuideNotesBySearchResul(detail.getCity(), "8");
      model.addAttribute("searchNotes", searchNotes);

      // IP热门酒店
      dto.setPageSize(5);
      List<YouHotel> searchHotel = hotelService.findsNotesPageByList(detail.getCity(), dto);
      model.addAttribute("searchHotel", searchHotel);
    }

    model.addAttribute("searchDto", dto);
    model.addAttribute("curPageTag", dto.getAjaxType());
    model.addAttribute("dataCityKey", Constants.XML_CITY_KEY);
    model.addAttribute("loginAndRegisterURL", ucServer);
    return "notesDetail";
  }
Example #2
0
  private void getCtiys(YouSearchDto dto, Model model, String type) {
    // 酒店站点城市
    Map<String, String> hotelMap = hotelService.getHotelCity();
    model.addAttribute("hotelCity", hotelMap);

    // 帮5游站点城市
    Map<String, String> youCity = goodsService.getYouCity(dto);
    model.addAttribute("youCity", youCity);

    // 攻略站点城市
    Map<String, String> notesCity = guideNotesService.findNotesCity();
    model.addAttribute("notesCity", notesCity);

    if (("hotel").equals(type)) {
      String isCity = hotelMap.get(Constants.XML_CITY_KEY.get(dto.getIpLocate()));
      if (null == isCity || ("").equals(isCity)) {
        String shCity = hotelMap.get(Constants.XML_CITY_KEY.get("上海"));
        if ((null == shCity || ("").equals(shCity)) && hotelMap.keySet().size() > 0)
          dto.setIpLocate((String) ((hotelMap.keySet().toArray())[0]));
        else dto.setIpLocate("2");
      }
    } else if (("you").equals(type)) {
      String isCity = youCity.get(Constants.XML_CITY_KEY.get(dto.getIpLocate()));
      if (null == isCity || ("").equals(isCity)) {
        String shCity = youCity.get(Constants.XML_CITY_KEY.get("上海"));
        if ((null == shCity || ("").equals(shCity)) && youCity.keySet().size() > 0)
          dto.setIpLocate((String) ((youCity.keySet().toArray())[0]));
        else dto.setIpLocate("2");
      }
    } else {
      if ("-1".equals(dto.getSelectedCityId())) {
        dto.setIpLocate("全部");
      }
    }
  }
Example #3
0
  // @RequestMapping("/notesList")
  public String toNotesList(YouSearchDto dto, Model model, HttpServletRequest request) {
    logger.info("----toNotesList notesList-----");
    dto.setPageSize(6);
    dto.setKeyWords(DefaultParameterUtil.dealParamters(dto.getKeyWords(), ""));
    B5MPageList<YouGuideNotes> pageList = guideNotesService.findGuideNotesBySearchResult(dto);
    model.addAttribute("pageList", pageList);

    // 相关旅游
    dto.setPageSize(Constants.YOU_LANDING_SZIE - 3);
    dto.setYouType("0");
    List<YouGoods> youList = goodsService.findsIndexSpecialTravelByList(dto, dto.getYouType());
    model.addAttribute("youList", youList);

    // 相关酒店
    dto.setPageSize(Constants.DEFAULT_HOT_COUNT - 7);
    List<YouHotel> hotelList = hotelService.findsNotesPageByList(null, dto);
    model.addAttribute("hotelList", hotelList);

    // 数据源
    Map<String, String> dataSource = taoSourceService.findTaoSource();
    model.addAttribute("dataSource", dataSource);

    model.addAttribute("searchDto", dto);
    model.addAttribute("curPageTag", dto.getAjaxType());
    model.addAttribute("dataCityKey", Constants.XML_CITY_KEY);
    model.addAttribute("loginAndRegisterURL", ucServer);
    return pageList.getAll().size() + "";
  }
Example #4
0
  /**
   * 景点着陆页
   *
   * @return
   */
  @RequestMapping("/youGuideDetailed")
  public String youGuideDetailed(YouSearchDto dto, Model model) {
    logger.info("----pageYouGuideDetailed page006-----");
    YouGuide guide = guideService.findGuide(dto);
    model.addAttribute("guide", guide);

    List<YouGuideNotes> notesList = guideNotesService.findGuideNotes(dto);
    model.addAttribute("notesList", notesList);

    dto.setPageSize(Constants.YOU_LANDING_SZIE);
    if (guide != null) dto.setYouType(guide.getYouType());
    else dto.setYouType("0");
    List<YouGoods> youList = goodsService.findsIndexSpecialTravelByList(dto, dto.getYouType());
    model.addAttribute("youList", youList);
    if ("0".equals(dto.getYouType())) {
      model.addAttribute("currPageTag", "domesticTravel");
    } else if ("1".equals(dto.getYouType())) {
      model.addAttribute("currPageTag", "abroadTravel");
    } else {
      model.addAttribute("currPageTag", "peripheryTravel");
    }

    dto.setPageSize(Constants.YOU_LANDING_SZIE - 2);
    List<YouGuideCircle> circleList = guideCircleService.findGuideCircle(dto);
    model.addAttribute("circleList", circleList);

    // keywords
    List<YouKeyWords> dataKeyWords = keywordsService.findKeyWords();
    model.addAttribute("keyWords", dataKeyWords);

    // 数据源
    Map<String, String> dataSource = taoSourceService.findTaoSource();
    model.addAttribute("dataSource", dataSource);

    model.addAttribute("searchDto", dto);
    model.addAttribute("dataCityKey", Constants.XML_CITY_KEY);
    model.addAttribute("loginAndRegisterURL", ucServer);
    return "youLandingPage";
  }
Example #5
0
  @RequestMapping("/address")
  public String address(YouSearchDto dto, Model model, HttpServletRequest request) {
    String city = request.getParameter("city") == null ? "2" : request.getParameter("city");
    setDtoParameter(dto, request);
    // 攻略hot数据
    List<YouGuideNotes> searchNotes = guideNotesService.findGuideNotesBySearchResul(null, "9");
    model.addAttribute("searchNotes", searchNotes);
    model.addAttribute("curPageTag", "hotelSearchresult");
    getCtiys(dto, model, "hotel");
    dto.setSelectedCityId(city);
    model.addAttribute("dataCityKeyId", Constants.XML_CITY);
    model.addAttribute("searchDto", dto);
    HotelKeyWords hk2 = hotelService.getMetroHotelListByType(dto, "2");
    HotelKeyWords hk3 = hotelService.getMetroHotelListByType(dto, "3");
    HotelKeyWords hk4 = hotelService.getMetroHotelListByType(dto, "4");
    HotelKeyWords hk5 = hotelService.getMetroHotelListByType(dto, "5");

    model.addAttribute("hk2", hk2);
    model.addAttribute("hk3", hk3);
    model.addAttribute("hk4", hk4);
    model.addAttribute("hk5", hk5);
    return "address";
  }
Example #6
0
  /**
   * 查询结果页
   *
   * @param dto
   * @param model
   * @return
   */
  @RequestMapping("/search")
  public String toSearch(YouSearchDto dto, Model model, HttpServletRequest request) {
    logger.info("----search finds-----");
    String pageSize = "-1";
    model.addAttribute("autofillServer", autofillServer);
    setDtoParameter(dto, request);
    // 去掉搜索关键字中所有的空格
    // dto.setKeyWords(dto.getKeyWords().replaceAll(" ", ""));
    // 攻略列表页面无需推荐
    if (!Constants.NOTES_SEARCH.equals(dto.getAjaxType())) {
      // 攻略hot数据
      List<YouGuideNotes> searchNotes = guideNotesService.findGuideNotesBySearchResul(null, "9");
      model.addAttribute("searchNotes", searchNotes);
    }
    dto.setPageSize(Constants.DEFAULT_PAGE_SIZE);
    if (Constants.HOTEL_SEARCH.equals(dto.getAjaxType())
        || "hotelSearchresult".equals(dto.getAjaxType())
        || Constants.INDEX_HOTEL_SEARCH.equals(dto.getAjaxType())) {
      String tempFalg = request.getParameter("f");
      // 酒店下拉框 更多链接地址
      if (tempFalg != null && "map".equals(tempFalg)) {
        return "address";
      }

      getCtiys(dto, model, "hotel");
      B5MPageList<YouHotel> hotelList = hotelService.getYouHotelList(dto);
      boolean hotelSearchFlag =
          (StringUtils.isNotBlank(dto.getHotelPrice())
              || StringUtils.isNotBlank(dto.getHotelStar()));
      String returnRuelt = attributeList(dto, model, hotelList);
      if (!"".equals(returnRuelt) && !hotelSearchFlag) {
        return returnRuelt;
      }
    } else if (Constants.NOTES_SEARCH.equals(dto.getAjaxType())
        || Constants.INDEX_NOTE_SEARCH.equals(dto.getAjaxType())) {
      getCtiys(dto, model, "");
      pageSize = toNotesList(dto, model, request);
    } else {
      // 默认 访问search.html的时候
      if ("".equals(dto.getAjaxType())) {
        dto.setAjaxType("searchresult");
      }
      getCtiys(dto, model, "you");

      // 商品数据查询
      B5MPageList<YouGoods> searchList = goodsService.getYouGoodsSearch(dto);
      model.addAttribute("pageList", searchList);

      String returnRuelt = attributeList(dto, model, searchList);
      boolean searchFlag =
          (StringUtils.isNotBlank(dto.getType0())
              || StringUtils.isNotBlank(dto.getType1())
              || StringUtils.isNotBlank(dto.getDays())
              || StringUtils.isNotBlank(dto.getPriceStart() + "")
              || StringUtils.isNotBlank(dto.getPriceEnd() + "")
              || StringUtils.isNotBlank(dto.getTimeStart())
              || StringUtils.isNotBlank(dto.getTimeEnd()));
      // 搜索无结果页
      if (!"".equals(returnRuelt) && !searchFlag) {
        return returnRuelt;
      }
    }

    // 数据源
    Map<String, String> dataSource = taoSourceService.findTaoSource();
    model.addAttribute("dataSource", dataSource);

    // keywords
    List<YouKeyWords> dataKeyWords = keywordsService.findKeyWords();
    model.addAttribute("keyWords", dataKeyWords);
    // 目的地城市列表
    // model.addAttribute("dcList", goodsService.getCitysByKeyword(dto.getKeyWords()));

    model.addAttribute("searchDto", dto);
    model.addAttribute("curPageTag", dto.getAjaxType());
    model.addAttribute("dataCityKey", Constants.XML_CITY_KEY);
    model.addAttribute("dataCityKeyId", Constants.XML_CITY);
    model.addAttribute("loginAndRegisterURL", ucServer);
    model.addAttribute("autofillFlag", dto.getAjaxType());
    if (Constants.NOTES_SEARCH.equals(dto.getAjaxType())
        || Constants.INDEX_NOTE_SEARCH.equals(dto.getAjaxType())) {
      if (Integer.parseInt(pageSize) <= 0) {
        logger.info("----notes_list---->" + pageSize);
        model.addAttribute("curPageTag", "noNoteResult");
        model.addAttribute("menuCurPageTag", dto.getAjaxType());
        model.addAttribute("keyWords", dto.getKeyWords());
        dto.setKeyWords("");
        B5MPageList<YouGuideNotes> pageList = guideNotesService.findGuideNotesBySearchResult(dto);
        model.addAttribute("hotList", pageList.getAll());
        return "noresult";
      }
      return "notesList";
    }
    return "searchResult";
  }
Example #7
0
  /** 分页数据 */
  @RequestMapping("/taoPage")
  public String findTaoGoodByPage(YouSearchDto searchDto, Model model, HttpServletRequest request) {
    String pageSize = "-1";
    model.addAttribute("autofillServer", autofillServer);
    model.addAttribute("dataCityKeyId", Constants.XML_CITY);
    // 去掉搜索关键字中所有的空格
    // searchDto.setKeyWords(searchDto.getKeyWords().replaceAll(" ", ""));
    // 酒店搜索:INDEX_HOTEL_SEARCH 表示从首页php进入的搜索
    if (Constants.INDEX_HOTEL_SEARCH.equals(searchDto.getAjaxType())
        || "hotelSearchresult".equals(searchDto.getAjaxType())
        || Constants.YOU_HOTEL.equals(searchDto.getAjaxType())
        || Constants.HOTEL_SEARCH.equals(searchDto.getAjaxType())) {
      logger.info("----taoPage page0020-----");

      getCtiys(searchDto, model, "hotel");
      searchDto.setHotelStarChn(Constants.HOTEL_INT_CHN_MAP.get(searchDto.getHotelStar()));
      searchDto.setPageSize(Constants.DEFAULT_PAGE_SIZE);
      if (Constants.HOTEL_SEARCH.equals(searchDto.getAjaxType())) {
        searchDto.setKeyWords(DefaultParameterUtil.dealParamters(searchDto.getKeyWords(), ""));
      }

      B5MPageList<YouHotel> hotelList = hotelService.getYouHotelList(searchDto);
      String returnRuelt = attributeList(searchDto, model, hotelList);
      if (!"".equals(returnRuelt)) {
        return returnRuelt;
      }
      // 攻略搜索:INDEX_NOTE_SEARCH 表示从首页php进入的搜索
    } else if (Constants.INDEX_NOTE_SEARCH.equals(searchDto.getAjaxType())
        || Constants.NOTES_SEARCH.equals(searchDto.getAjaxType())) {
      logger.info("----taoPage page0022-----");
      getCtiys(searchDto, model, "");
      pageSize = toNotesList(searchDto, model, request);
      // 旅游产品搜索
    } else {
      logger.info("----taoPage page0021-----");
      getCtiys(searchDto, model, "you");
      // 获取数据集合
      searchDto.setPageSize(Constants.DEFAULT_PAGE_SIZE);
      B5MPageList<YouGoods> pageList = dealAjaxType(searchDto);

      String returnRuelt = attributeList(searchDto, model, pageList);
      // 针对从“酒店”频道过来时无结果的页面(列表页面),跳回到对应频道的“全部”页面
      if (!"".equals(returnRuelt)) {
        // 仅限于pageMode为list的情况
        if (Constants.PAGE_MODE_LIST.equals(searchDto.getPageMode())) {
          searchDto.setSelectedCityId("-1");
          pageList = dealAjaxType(searchDto);
          model.addAttribute("pageList", pageList);
          if (pageList.getAll().size() == 0) {
            return returnRuelt;
          }
        } else {
          return returnRuelt;
        }
      }
    }

    // true:内页的搜索模式, false:其他
    boolean pageMode =
        ((Constants.DOMESTIC_TRAVEL.equals(searchDto.getAjaxType())
                || Constants.ABROAD_TRAVEL.equals(searchDto.getAjaxType())
                || Constants.PERIPHERY_TRAVEL.equals(searchDto.getAjaxType()))
            && Constants.PAGE_MODE_SEARCH.equals(searchDto.getPageMode()));

    if ("hotelSearchresult".equals(searchDto.getAjaxType())
        || Constants.SEARCH.equals(searchDto.getAjaxType())
        // 从国内游、境外游、周边游内页的搜索框进行搜索
        || pageMode
        || Constants.INDEX_HOTEL_SEARCH.equals(searchDto.getAjaxType())
        || Constants.INDEX_TRIP_SEARCH.equals(searchDto.getAjaxType())) {
      List<YouGuideNotes> searchNotes = guideNotesService.findGuideNotesBySearchResul(null, "9");
      model.addAttribute("searchNotes", searchNotes);
    }

    // 数据源
    Map<String, String> dataSource = taoSourceService.findTaoSource();
    model.addAttribute("dataSource", dataSource);

    // keywords
    List<YouKeyWords> dataKeyWords = keywordsService.findKeyWords();
    model.addAttribute("keyWords", dataKeyWords);

    model.addAttribute("curPageTag", searchDto.getAjaxType());
    model.addAttribute("menuCurPageTag", searchDto.getPageType());
    model.addAttribute("loginAndRegisterURL", ucServer);

    if ("hotelSearchresult".equals(searchDto.getAjaxType())
        || Constants.SEARCH.equals(searchDto.getAjaxType())
        // 从国内游、境外游、周边游内页的搜索框进行搜索,区分列表 和 搜索结果页面,此跳往搜索结果页
        || pageMode
        || Constants.INDEX_HOTEL_SEARCH.equals(searchDto.getAjaxType())
        || Constants.INDEX_TRIP_SEARCH.equals(searchDto.getAjaxType())) {
      return "searchResult";
    } else if (Constants.NOTES_SEARCH.equals(searchDto.getAjaxType())
        || Constants.INDEX_NOTE_SEARCH.equals(searchDto.getAjaxType())) {
      if (Integer.parseInt(pageSize) <= 0) {
        logger.info("----tao_page_notes_list---->" + pageSize);
        model.addAttribute("curPageTag", "noNoteResult");
        model.addAttribute("keyWords", searchDto.getKeyWords());
        model.addAttribute("menuCurPageTag", searchDto.getAjaxType());
        searchDto.setKeyWords("");
        B5MPageList<YouGuideNotes> pageList =
            guideNotesService.findGuideNotesBySearchResult(searchDto);
        model.addAttribute("hotList", pageList.getAll());
        return "noresult";
      }
      return "notesList";
    } else {
      return "taoResult";
    }
  }