linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
src/main/java/org/springblade/modules/task/service/impl/TaskHotelReportingServiceImpl.java
@@ -20,6 +20,7 @@
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springblade.common.constant.DictConstant;
import org.springblade.common.exception.CustomException;
import org.springblade.core.secure.utils.AuthUtil;
import org.springblade.modules.place.entity.PlaceEntity;
import org.springblade.modules.place.service.IPlaceService;
@@ -68,7 +69,8 @@
         taskHotelReporting.setReportType(7);
         name = DictConstant.FIRE_CHECK;
      }
      Long aLong = taskService.saveTask(2, name, 1, "", AuthUtil.getUserId(), taskHotelReporting.getHouseCode(), taskHotelReporting.getReportType());
      Long aLong = taskService.saveTask(2, name, 1, "", AuthUtil.getUserId(),
         taskHotelReporting.getHouseCode(), taskHotelReporting.getReportType(),0);
      if (aLong > 0) {
         // 通过houseCode 获取场所id
         QueryWrapper<PlaceEntity> queryWrapper = new QueryWrapper<>();
@@ -85,7 +87,7 @@
   @Override
   @Transactional(rollbackFor = Exception.class)
   public Boolean updateHotelReporting(TaskHotelReportingVO taskHotelReporting) throws Exception {
   public Boolean updateHotelReporting(TaskHotelReportingVO taskHotelReporting) {
      Long aLong = taskService.updateTask(null, null, null, "", AuthUtil.getUserId(), taskHotelReporting.getTaskId(), taskHotelReporting.getStatus());
      if (aLong > 0) {
         if (null!=taskHotelReporting.getStatus()
@@ -98,7 +100,7 @@
         if (b) {
            return b;
         }
         throw new Exception("更新失败!");
         throw new CustomException("更新失败!");
      }
      return false;
   }