|
@@ -1,27 +1,26 @@
|
|
|
package com.tourism.webadmin.back.controller;
|
|
|
|
|
|
-import ch.qos.logback.core.joran.sanity.Pair;
|
|
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
import com.tourism.common.core.constant.ErrorCodeEnum;
|
|
|
import com.tourism.common.core.object.MyOrderParam;
|
|
|
-import com.tourism.common.core.object.MyRelationParam;
|
|
|
import com.tourism.common.core.object.ResponseResult;
|
|
|
import com.tourism.common.core.util.MyDateUtil;
|
|
|
import com.tourism.common.core.util.MyModelUtil;
|
|
|
import com.tourism.webadmin.app.website.dto.DatePriceSaveDto;
|
|
|
import com.tourism.webadmin.app.website.vo.DateRangePriceVo;
|
|
|
import com.tourism.webadmin.app.website.vo.DateRangesPriceVo;
|
|
|
+import com.tourism.webadmin.back.dto.TourTourismProjectTravelNotesDto;
|
|
|
import com.tourism.webadmin.back.dto.TourismProjectDto;
|
|
|
+import com.tourism.webadmin.back.model.TourTourismProjectTravelNotes;
|
|
|
import com.tourism.webadmin.back.model.TourismDatePrice;
|
|
|
import com.tourism.webadmin.back.model.TourismProject;
|
|
|
+import com.tourism.webadmin.back.service.TourTourismProjectTravelNotesService;
|
|
|
import com.tourism.webadmin.back.service.TourismDatePriceService;
|
|
|
import com.tourism.webadmin.back.service.TourismProjectService;
|
|
|
-import com.tourism.webadmin.back.vo.TourismProjectVo;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
|
-import org.apache.commons.lang3.time.DateUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -30,7 +29,6 @@ import java.math.BigDecimal;
|
|
|
import java.time.LocalDate;
|
|
|
import java.time.ZoneId;
|
|
|
import java.util.ArrayList;
|
|
|
-import java.util.Comparator;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.stream.Collectors;
|
|
@@ -51,6 +49,8 @@ public class ExtraController {
|
|
|
private TourismDatePriceService tourismDatePriceService;
|
|
|
@Autowired
|
|
|
private TourismProjectService tourismProjectService;
|
|
|
+ @Autowired
|
|
|
+ private TourTourismProjectTravelNotesService tourTourismProjectTravelNotesService;
|
|
|
/**
|
|
|
* 查看指定旅游项目的日历价格。
|
|
|
*
|
|
@@ -267,4 +267,27 @@ public class ExtraController {
|
|
|
return ResponseResult.success();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 更新游记是否原创的字段(1.原创;0.非原创。)
|
|
|
+ *
|
|
|
+ * @param tourTourismProjectTravelNotesDto 旅游项目游记管理Dto对象。
|
|
|
+ * @return void。
|
|
|
+ */
|
|
|
+ @Transactional
|
|
|
+ @SaCheckPermission("tourTourismProjectTravelNotes.update")
|
|
|
+ @PostMapping("/updateIsOriginalChange")
|
|
|
+ public ResponseResult<Void> updateIsOriginalChange(@MyRequestBody TourTourismProjectTravelNotesDto tourTourismProjectTravelNotesDto) {
|
|
|
+
|
|
|
+ TourTourismProjectTravelNotes tourTourismProjectTravelNote =
|
|
|
+ tourTourismProjectTravelNotesService.getById(tourTourismProjectTravelNotesDto.getId());
|
|
|
+ if(tourTourismProjectTravelNote == null){
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.PROJECT_NOT_EXIST);
|
|
|
+ }
|
|
|
+ TourTourismProjectTravelNotes tourTourismProjectTravelNotes =
|
|
|
+ MyModelUtil.copyTo(tourTourismProjectTravelNote, TourTourismProjectTravelNotes.class);
|
|
|
+ tourTourismProjectTravelNotes.setIsOriginal(tourTourismProjectTravelNotesDto.getIsOriginal());
|
|
|
+ tourTourismProjectTravelNotesService.update(tourTourismProjectTravelNotes,tourTourismProjectTravelNote);
|
|
|
+ return ResponseResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
}
|