|
@@ -185,27 +185,26 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
|
|
|
TourTourismProjectTravelNotes tourTourismProjectTravelNotes = new TourTourismProjectTravelNotes();
|
|
|
Long belongTabLong = Long.parseLong(tourismProjectTravelNotesToWebDto.getBelongTab());
|
|
|
- //如果查询的是全部的游记的话
|
|
|
- if(belongTabLong == 1L){
|
|
|
+
|
|
|
+ if(tourismProjectTravelNotesToWebDto.getAreaId() == null && tourismProjectTravelNotesToWebDto.getCountryId() == null){
|
|
|
+ //判断是否为全部的地区
|
|
|
tourTourismProjectTravelNotes.setEnable(1);
|
|
|
tourTourismProjectTravelNotes.setBelongTab(null);
|
|
|
- }else if(belongTabLong > 1000){
|
|
|
- //如果>1000则表明是查询的国家
|
|
|
+ }else if(tourismProjectTravelNotesToWebDto.getAreaId() != null && tourismProjectTravelNotesToWebDto.getCountryId() == null){
|
|
|
+ //判断是否为该地区的所有国家
|
|
|
+ DirectoryInfo directoryInfo = new DirectoryInfo();
|
|
|
+ directoryInfo.setParentId(belongTabLong);
|
|
|
+ directoryInfo.setEnable(1);
|
|
|
+ List<DirectoryInfo> directoryInfoList =
|
|
|
+ directoryInfoService.getDirectoryInfoList(directoryInfo, "");
|
|
|
+ List<Long> directoryIdList =
|
|
|
+ directoryInfoList.stream().map(DirectoryInfo::getId).collect(Collectors.toList());
|
|
|
+ tourTourismProjectTravelNotes.setBelongTab(null);
|
|
|
+ tourTourismProjectTravelNotes.setDirectoryInfoIds(directoryIdList);
|
|
|
+ }else {
|
|
|
+ //如果查询的是某个国家的游记的话
|
|
|
tourTourismProjectTravelNotes.setBelongTab(belongTabLong);
|
|
|
-
|
|
|
- }else if(belongTabLong < 1000 && belongTabLong > 10){
|
|
|
- //判断查询的是类似于亚洲游这种二级菜单还是下一级菜单
|
|
|
- //如果<1000则表明是查询的亚洲这一级的菜单
|
|
|
- DirectoryInfo directoryInfo = new DirectoryInfo();
|
|
|
- directoryInfo.setParentId(belongTabLong);
|
|
|
- directoryInfo.setEnable(1);
|
|
|
- List<DirectoryInfo> directoryInfoList =
|
|
|
- directoryInfoService.getDirectoryInfoList(directoryInfo, "");
|
|
|
- List<Long> directoryIdList =
|
|
|
- directoryInfoList.stream().map(DirectoryInfo::getId).collect(Collectors.toList());
|
|
|
- tourTourismProjectTravelNotes.setBelongTab(null);
|
|
|
- tourTourismProjectTravelNotes.setDirectoryInfoIds(directoryIdList);
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
if(tourismProjectTravelNotesToWebDto.getPageNum() != null && tourismProjectTravelNotesToWebDto.getPageSize() != null) {
|
|
|
PageMethod.startPage(tourismProjectTravelNotesToWebDto.getPageNum(), tourismProjectTravelNotesToWebDto.getPageSize(), true);
|
|
@@ -239,9 +238,9 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public TourTourismProjectTravelNotesVo travelNotesDetail(String id){
|
|
|
+ public TourTourismProjectTravelNotesVo travelNotesDetail(Long id){
|
|
|
TourTourismProjectTravelNotes tourTourismProjectTravelNotes =
|
|
|
- tourTourismProjectTravelNotesService.getByIdWithRelation(Long.parseLong(id), MyRelationParam.full());
|
|
|
+ tourTourismProjectTravelNotesService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
|
|
|
TourTourismProjectTravelNotesVo tourTourismProjectTravelNotesVo =
|
|
|
MyModelUtil.copyTo(tourTourismProjectTravelNotes, TourTourismProjectTravelNotesVo.class);
|
|
@@ -292,13 +291,12 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void userLikeTravelNotesUpdate(String travelNotesId,Integer type){
|
|
|
+ public void userLikeTravelNotesUpdate(Long travelNotesId,Integer type){
|
|
|
|
|
|
TourUserLikeTravelNotes tourUserLikeTravelNotes =
|
|
|
new TourUserLikeTravelNotes();
|
|
|
- Long travelNotesIdLong = Long.parseLong(travelNotesId);
|
|
|
|
|
|
- tourUserLikeTravelNotes.setTravelNotesId(travelNotesIdLong);
|
|
|
+ tourUserLikeTravelNotes.setTravelNotesId(travelNotesId);
|
|
|
tourUserLikeTravelNotes.setUserId(TokenData.takeFromRequest().getUserId());
|
|
|
|
|
|
if(type == 0){
|
|
@@ -309,15 +307,23 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Boolean isLikeTravelNotes(String travelNotesId){
|
|
|
+ public Boolean isLikeTravelNotes(Long travelNotesId){
|
|
|
|
|
|
TourUserLikeTravelNotes tourUserLikeTravelNotes = new TourUserLikeTravelNotes();
|
|
|
|
|
|
- tourUserLikeTravelNotes.setTravelNotesId(Long.parseLong(travelNotesId));
|
|
|
+ tourUserLikeTravelNotes.setTravelNotesId(travelNotesId);
|
|
|
tourUserLikeTravelNotes.setUserId(TokenData.takeFromRequest().getUserId());
|
|
|
return tourUserLikeTravelNotesService.existByFilter(tourUserLikeTravelNotes);
|
|
|
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void travelNotesViewCountAdd(Long travelNotesId){
|
|
|
+
|
|
|
+ TourTourismProjectTravelNotes tourTourismProjectTravelNotes = tourTourismProjectTravelNotesService.getById(travelNotesId);
|
|
|
+ tourTourismProjectTravelNotes.setPageViewCount(tourTourismProjectTravelNotes.getPageViewCount()+1);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|