|
|
@ -37,6 +37,7 @@ import com.epmet.dto.result.FormGroupDTO; |
|
|
|
import com.epmet.dto.result.FormItemResult; |
|
|
|
import com.epmet.entity.*; |
|
|
|
import com.epmet.feign.EpmetHeartOpenFeignClient; |
|
|
|
import com.epmet.feign.GovOrgOpenFeignClient; |
|
|
|
import com.epmet.redis.CustomerFootBarRedis; |
|
|
|
import com.epmet.service.IcFormService; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
@ -80,6 +81,8 @@ public class IcFormServiceImpl extends BaseServiceImpl<IcFormDao, IcFormEntity> |
|
|
|
private IcFormListItemDao icFormListItemDao; |
|
|
|
@Resource |
|
|
|
private EpmetHeartOpenFeignClient epmetHeartOpenFeignClient; |
|
|
|
@Resource |
|
|
|
private GovOrgOpenFeignClient govOrgOpenFeignClient; |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取居民信息表单 |
|
|
@ -321,7 +324,7 @@ public class IcFormServiceImpl extends BaseServiceImpl<IcFormDao, IcFormEntity> |
|
|
|
} |
|
|
|
|
|
|
|
//2022.6.24 五大图层类别字典表客户初始化
|
|
|
|
Result dictResult = epmetHeartOpenFeignClient.customerInit(customerId); |
|
|
|
Result dictResult = govOrgOpenFeignClient.dictInit(customerId); |
|
|
|
if (!dictResult.success()) { |
|
|
|
throw new EpmetException(dictResult.getCode(), dictResult.getMsg()); |
|
|
|
} |
|
|
|