|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.epmet.service.impl; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.ServiceConstant; |
|
|
|
import com.epmet.commons.tools.exception.RenException; |
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.constant.ProjectConstant; |
|
|
@ -9,6 +10,8 @@ import com.epmet.dto.result.LatestListResultDTO; |
|
|
|
import com.epmet.feign.GovIssueFeignClient; |
|
|
|
import com.epmet.feign.GovProjectFeignClient; |
|
|
|
import com.epmet.service.ProjectService; |
|
|
|
import org.apache.logging.log4j.LogManager; |
|
|
|
import org.apache.logging.log4j.Logger; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
@ -21,7 +24,7 @@ import java.util.List; |
|
|
|
*/ |
|
|
|
@Service |
|
|
|
public class ProjectServiceImpl implements ProjectService { |
|
|
|
|
|
|
|
private Logger logger = LogManager.getLogger(ProjectServiceImpl.class); |
|
|
|
@Autowired |
|
|
|
private GovProjectFeignClient govProjectFeignClient; |
|
|
|
@Autowired |
|
|
@ -49,7 +52,9 @@ public class ProjectServiceImpl implements ProjectService { |
|
|
|
closedProjectIssueListFormDTO.setLatestListResult(listResult.getData()); |
|
|
|
Result<List<LatestListResultDTO>> resultList = govIssueFeignClient.getClosedProjectIssueList(closedProjectIssueListFormDTO); |
|
|
|
if (!resultList.success() || null == resultList.getData()) { |
|
|
|
throw new RenException(ProjectConstant.SELECT_ISSUE_EXCEPTION); |
|
|
|
logger.error(String.format("居民端党建园地-最新结案列表查询异常,调用%s服务,入参customerId%s,gridId%s", ServiceConstant.GOV_ISSUE_SERVER,formDTO.getCustomerId(),formDTO.getGridId())); |
|
|
|
// throw new RenException(ProjectConstant.SELECT_ISSUE_EXCEPTION);
|
|
|
|
return new ArrayList<>(); |
|
|
|
} |
|
|
|
return resultList.getData(); |
|
|
|
} |
|
|
|