Browse Source

[fix]
1、解决初步测试出现的报错问题-审核报错的问题

chenchen 4 months ago
parent
commit
46485b6042

+ 8 - 8
application-webadmin/src/main/java/com/tourism/webadmin/back/controller/TourismProjectTravelNotesWriteController.java

@@ -129,20 +129,20 @@ public class TourismProjectTravelNotesWriteController {
             return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核状态不能为未审核");
         }
         else if(tourismProjectTravelNotesWriteDto.getState().equals(AuditState.FAILAUDIT) && StringUtils.isBlank(tourismProjectTravelNotesWriteDto.getReason())){
-            return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核未通过,审核原因不能为空");
-        }else {
+            return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核未通过,审核原因不能为空");
+        }else if(tourismProjectTravelNotesWriteDto.getState().equals(AuditState.SUCCEEDAUDIT)){
             if (tourismProjectTravelNotesWriteDto.getIsHotspot() == null){
-                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,热度值不能为空");
+                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,热度值不能为空");
             }else if(StringUtils.isBlank(tourismProjectTravelNotesWriteDto.getNoteLabel())){
-                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,标签不能为空");
+                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,标签不能为空");
             }else if(tourismProjectTravelNotesWriteDto.getLikeCount() == null){
-                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,点赞数不能为空");
+                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,点赞数不能为空");
             }else if(tourismProjectTravelNotesWriteDto.getPageViewCount() == null){
-                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,浏览数不能为空");
+                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,浏览数不能为空");
             }else if(tourismProjectTravelNotesWriteDto.getHotValue() == null){
-                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,热度值不能为空");
+                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,热度值不能为空");
             }else if(tourismProjectTravelNotesWriteDto.getIsOriginal() == null){
-                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,是否原创不能为空");
+                return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,是否原创不能为空");
             }
 
         }