|
@ -300,8 +300,13 @@ public class IcPartyServiceCenterServiceImpl extends BaseServiceImpl<IcPartyServ |
|
|
} |
|
|
} |
|
|
IcMatterAppointmentRecordEntity e = ConvertUtils.sourceToTarget(formDTO, IcMatterAppointmentRecordEntity.class); |
|
|
IcMatterAppointmentRecordEntity e = ConvertUtils.sourceToTarget(formDTO, IcMatterAppointmentRecordEntity.class); |
|
|
e.setCustomerId(customerId); |
|
|
e.setCustomerId(customerId); |
|
|
e.setOrgId(staffInfo.getAgencyId()); |
|
|
if (StringUtils.isNotBlank(formDTO.getOrgId())){ |
|
|
e.setOrgType(PartyServiceCenterConstant.ORG_TYPE_AGENCY); |
|
|
e.setOrgId(formDTO.getOrgId()); |
|
|
|
|
|
e.setOrgType(formDTO.getOrgType()); |
|
|
|
|
|
}else { |
|
|
|
|
|
e.setOrgId(staffInfo.getAgencyId()); |
|
|
|
|
|
e.setOrgType(PartyServiceCenterConstant.ORG_TYPE_AGENCY); |
|
|
|
|
|
} |
|
|
e.setPid(agencyInfo.getPid()); |
|
|
e.setPid(agencyInfo.getPid()); |
|
|
e.setPids(agencyInfo.getPids()); |
|
|
e.setPids(agencyInfo.getPids()); |
|
|
e.setStatus(PartyServiceCenterConstant.APPOINTMENT_STATUS_APPOINTING); |
|
|
e.setStatus(PartyServiceCenterConstant.APPOINTMENT_STATUS_APPOINTING); |
|
|