|
@ -1,5 +1,6 @@ |
|
|
package com.epmet.service.impl; |
|
|
package com.epmet.service.impl; |
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker; |
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker; |
|
@ -16,6 +17,7 @@ import com.epmet.commons.tools.utils.DateUtils; |
|
|
import com.epmet.dao.IcServiceFeedbackV2Dao; |
|
|
import com.epmet.dao.IcServiceFeedbackV2Dao; |
|
|
import com.epmet.dao.IcServiceRecordV2Dao; |
|
|
import com.epmet.dao.IcServiceRecordV2Dao; |
|
|
import com.epmet.dao.IcServiceScopeDao; |
|
|
import com.epmet.dao.IcServiceScopeDao; |
|
|
|
|
|
import com.epmet.dao.IcServiceScopeV2Dao; |
|
|
import com.epmet.dto.IcServiceFeedbackV2DTO; |
|
|
import com.epmet.dto.IcServiceFeedbackV2DTO; |
|
|
import com.epmet.dto.IcServiceRecordV2DTO; |
|
|
import com.epmet.dto.IcServiceRecordV2DTO; |
|
|
import com.epmet.dto.IcServiceScopeV2DTO; |
|
|
import com.epmet.dto.IcServiceScopeV2DTO; |
|
@ -67,11 +69,12 @@ public class IcServiceRecordV2ServiceImpl extends BaseServiceImpl<IcServiceRecor |
|
|
private IcServiceFeedbackV2Service icServiceFeedbackV2Service; |
|
|
private IcServiceFeedbackV2Service icServiceFeedbackV2Service; |
|
|
@Autowired |
|
|
@Autowired |
|
|
private HeartAttachmentService heartAttachmentService; |
|
|
private HeartAttachmentService heartAttachmentService; |
|
|
|
|
|
|
|
|
@Autowired |
|
|
@Autowired |
|
|
private IcServiceScopeDao serviceScopeDao; |
|
|
private IcServiceScopeDao serviceScopeDao; |
|
|
@Autowired |
|
|
@Autowired |
|
|
private IcServiceFeedbackV2Dao serviceFeedbackV2Dao; |
|
|
private IcServiceFeedbackV2Dao serviceFeedbackV2Dao; |
|
|
|
|
|
@Autowired |
|
|
|
|
|
private IcServiceScopeV2Dao icServiceScopeV2Dao; |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public PageData<IcServiceRecordV2DTO> page(Map<String, Object> params) { |
|
|
public PageData<IcServiceRecordV2DTO> page(Map<String, Object> params) { |
|
@ -177,8 +180,16 @@ public class IcServiceRecordV2ServiceImpl extends BaseServiceImpl<IcServiceRecor |
|
|
log.error(String.format("取消服务记录失败,未查询到服务记录,服务记录Id->%s", formDTO.getServiceRecordId())); |
|
|
log.error(String.format("取消服务记录失败,未查询到服务记录,服务记录Id->%s", formDTO.getServiceRecordId())); |
|
|
throw new EpmetException(EpmetErrorCode.EPMET_COMMON_OPERATION_FAIL.getCode(), "取消服务记录失败,未查询到服务记录"); |
|
|
throw new EpmetException(EpmetErrorCode.EPMET_COMMON_OPERATION_FAIL.getCode(), "取消服务记录失败,未查询到服务记录"); |
|
|
} |
|
|
} |
|
|
entity.setServiceStatus("cancel"); |
|
|
if (!"in_service".equals(entity.getServiceStatus())) { |
|
|
baseDao.updateById(entity); |
|
|
throw new EpmetException(EpmetErrorCode.EPMET_COMMON_OPERATION_FAIL.getCode(), String.format("服务状态:%s", entity.getServiceStatus()), "只有服务中的记录可以取消"); |
|
|
|
|
|
} |
|
|
|
|
|
//2.删除主表、字表数据【进行中数据不存在反馈记录】
|
|
|
|
|
|
baseDao.deleteById(entity); |
|
|
|
|
|
|
|
|
|
|
|
LambdaQueryWrapper<IcServiceScopeV2Entity> tWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
|
tWrapper.eq(IcServiceScopeV2Entity::getServiceRecordId, formDTO.getServiceRecordId()); |
|
|
|
|
|
icServiceScopeV2Dao.delete(tWrapper); |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|