| | |
| | | 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; |
| | |
| | | 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<>(); |
| | |
| | | |
| | | @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() |
| | |
| | | if (b) { |
| | | return b; |
| | | } |
| | | throw new Exception("更新失败!"); |
| | | throw new CustomException("更新失败!"); |
| | | } |
| | | return false; |
| | | } |