|
|
@ -45,6 +45,7 @@ import org.apache.commons.collections4.CollectionUtils; |
|
|
|
import org.apache.commons.collections4.MapUtils; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.scheduling.annotation.Async; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
@ -107,20 +108,22 @@ public class DataSyncRecordDisabilityServiceImpl extends BaseServiceImpl<DataSyn |
|
|
|
if (null != result.getGender()){ |
|
|
|
result.setGenderCn(result.getGender() == NumConstant.ONE ? "男" : "女"); |
|
|
|
} |
|
|
|
if(StringUtils.isBlank(entity.getIcResiUserId())){ |
|
|
|
throw new EpmetException(EpmetErrorCode.EPMET_COMMON_OPERATION_FAIL.getCode(), "icResiUserId为空,idCard:" + entity.getIdCard(), |
|
|
|
String.format("居民信息中不存在此居民【身份证号:%s】", entity.getIdCard())); |
|
|
|
} |
|
|
|
IcResiUserDTO icResiUserDTO = icResiUserService.get(entity.getIcResiUserId()); |
|
|
|
ResiInfoDTO resiInfoDTO = ConvertUtils.sourceToTarget(icResiUserDTO, ResiInfoDTO.class); |
|
|
|
if (StringUtils.isNotBlank(resiInfoDTO.getGender())) { |
|
|
|
resiInfoDTO.setGenderCn(resiInfoDTO.getGender().equals(NumConstant.ONE_STR) ? "男" : "女"); |
|
|
|
} else { |
|
|
|
resiInfoDTO.setGenderCn(GenderEnum.UN_KNOWN.getName()); |
|
|
|
if (StringUtils.isNotBlank(entity.getIcResiUserId())) { |
|
|
|
IcResiUserDTO icResiUserDTO = icResiUserService.get(entity.getIcResiUserId()); |
|
|
|
if (null != icResiUserDTO) { |
|
|
|
ResiInfoDTO resiInfoDTO = ConvertUtils.sourceToTarget(icResiUserDTO, ResiInfoDTO.class); |
|
|
|
if (StringUtils.isNotBlank(resiInfoDTO.getGender())) { |
|
|
|
resiInfoDTO.setGenderCn(resiInfoDTO.getGender().equals(NumConstant.ONE_STR) ? "男" : "女"); |
|
|
|
} else { |
|
|
|
resiInfoDTO.setGenderCn(GenderEnum.UN_KNOWN.getName()); |
|
|
|
} |
|
|
|
resiInfoDTO.setCjzkCn(getCj(resiInfoDTO.getCjzk())); |
|
|
|
resiInfoDTO.setCjlbCn(getCjlb(resiInfoDTO.getCjlb(), entity.getCustomerId())); |
|
|
|
result.setResiInfo(resiInfoDTO); |
|
|
|
} else { |
|
|
|
log.warn(String.format("ic_resi_user is null icResiUserId:%s", entity.getIcResiUserId())); |
|
|
|
} |
|
|
|
} |
|
|
|
resiInfoDTO.setCjzkCn(getCj(resiInfoDTO.getCjzk())); |
|
|
|
resiInfoDTO.setCjlbCn(getCjlb(resiInfoDTO.getCjlb(),entity.getCustomerId())); |
|
|
|
result.setResiInfo(resiInfoDTO); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
@ -323,4 +326,14 @@ public class DataSyncRecordDisabilityServiceImpl extends BaseServiceImpl<DataSyn |
|
|
|
baseDao.batchUpdateDisability(entities); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 删除居民信息时,同时删除data_sync_record_disability |
|
|
|
* |
|
|
|
* @param icResiUserId |
|
|
|
*/ |
|
|
|
@Async |
|
|
|
@Override |
|
|
|
public void deleteByIcResiUserId(String icResiUserId) { |
|
|
|
baseDao.deleteByIcResiUserId(icResiUserId); |
|
|
|
} |
|
|
|
} |
|
|
|