/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.ocrr.orderingresults.domain.objects.OcsOrderSession */ public static ims.ocrr.vo.OcsOrderVo insert( DomainObjectMap map, ims.ocrr.vo.OcsOrderVo valueObject, ims.ocrr.orderingresults.domain.objects.OcsOrderSession domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_OcsOrderSession(domainObject.getId()); valueObject.setIsRIE(domainObject.getIsRIE()); // If this is a recordedInError record, and the domainObject // value isIncludeRecord has not been set, then we return null and // not the value object if (valueObject.getIsRIE() != null && valueObject.getIsRIE().booleanValue() == true && !domainObject.isIncludeRecord()) return null; // If this is not a recordedInError record, and the domainObject // value isIncludeRecord has been set, then we return null and // not the value object if ((valueObject.getIsRIE() == null || valueObject.getIsRIE().booleanValue() == false) && domainObject.isIncludeRecord()) return null; // ClinicalTrial valueObject.setClinicalTrial(domainObject.isClinicalTrial()); // ClinicalTrialTxt valueObject.setClinicalTrialTxt(domainObject.getClinicalTrialTxt()); // PatMobility ims.domain.lookups.LookupInstance instance3 = domainObject.getPatMobility(); if (null != instance3) { ims.framework.utils.ImagePath img = null; ims.framework.utils.Color color = null; img = null; if (instance3.getImage() != null) { img = new ims.framework.utils.ImagePath( instance3.getImage().getImageId(), instance3.getImage().getImagePath()); } color = instance3.getColor(); if (color != null) color.getValue(); ims.ocrr.vo.lookups.OrderPatMobility voLookup3 = new ims.ocrr.vo.lookups.OrderPatMobility( instance3.getId(), instance3.getText(), instance3.isActive(), null, img, color); ims.ocrr.vo.lookups.OrderPatMobility parentVoLookup3 = voLookup3; ims.domain.lookups.LookupInstance parent3 = instance3.getParent(); while (parent3 != null) { if (parent3.getImage() != null) { img = new ims.framework.utils.ImagePath( parent3.getImage().getImageId(), parent3.getImage().getImagePath()); } else { img = null; } color = parent3.getColor(); if (color != null) color.getValue(); parentVoLookup3.setParent( new ims.ocrr.vo.lookups.OrderPatMobility( parent3.getId(), parent3.getText(), parent3.isActive(), null, img, color)); parentVoLookup3 = parentVoLookup3.getParent(); parent3 = parent3.getParent(); } valueObject.setPatMobility(voLookup3); } // OrderCategory ims.domain.lookups.LookupInstance instance4 = domainObject.getOrderCategory(); if (null != instance4) { ims.framework.utils.ImagePath img = null; ims.framework.utils.Color color = null; img = null; if (instance4.getImage() != null) { img = new ims.framework.utils.ImagePath( instance4.getImage().getImageId(), instance4.getImage().getImagePath()); } color = instance4.getColor(); if (color != null) color.getValue(); ims.ocrr.vo.lookups.OrderCategory voLookup4 = new ims.ocrr.vo.lookups.OrderCategory( instance4.getId(), instance4.getText(), instance4.isActive(), null, img, color); ims.ocrr.vo.lookups.OrderCategory parentVoLookup4 = voLookup4; ims.domain.lookups.LookupInstance parent4 = instance4.getParent(); while (parent4 != null) { if (parent4.getImage() != null) { img = new ims.framework.utils.ImagePath( parent4.getImage().getImageId(), parent4.getImage().getImagePath()); } else { img = null; } color = parent4.getColor(); if (color != null) color.getValue(); parentVoLookup4.setParent( new ims.ocrr.vo.lookups.OrderCategory( parent4.getId(), parent4.getText(), parent4.isActive(), null, img, color)); parentVoLookup4 = parentVoLookup4.getParent(); parent4 = parent4.getParent(); } valueObject.setOrderCategory(voLookup4); } // specimens valueObject.setSpecimens( ims.ocrr.vo.domain.OrderSpecimenVoAssembler .createOrderSpecimenVoCollectionFromOrderSpecimen(map, domainObject.getSpecimens())); // Investigations valueObject.setInvestigations( ims.ocrr.vo.domain.OrderInvestigationVoAssembler .createOrderInvestigationVoCollectionFromOrderInvestigation( map, domainObject.getInvestigations())); // wasProcessed valueObject.setWasProcessed(domainObject.isWasProcessed()); // ClinicalInfo valueObject.setClinicalInfo( ims.ocrr.vo.domain.OcsQASessionVoAssembler.create(map, domainObject.getClinicalInfo())); // ReportTo valueObject.setReportTo( ims.ocrr.vo.domain.OcsReportToVoAssembler.createOcsReportToVoCollectionFromOcsReportTo( map, domainObject.getReportTo())); // SummaryClinicalInformation valueObject.setSummaryClinicalInformation(domainObject.getSummaryClinicalInformation()); // BleepExtNumber valueObject.setBleepExtNumber(domainObject.getBleepExtNumber()); // ClinicalContact if (domainObject.getClinicalContact() != null) { if (domainObject.getClinicalContact() instanceof HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the // id already. { HibernateProxy p = (HibernateProxy) domainObject.getClinicalContact(); int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString()); valueObject.setClinicalContact(new ims.core.admin.vo.ClinicalContactRefVo(id, -1)); } else { valueObject.setClinicalContact( new ims.core.admin.vo.ClinicalContactRefVo( domainObject.getClinicalContact().getId(), domainObject.getClinicalContact().getVersion())); } } // Patient valueObject.setPatient( ims.core.vo.domain.PatientShortAssembler.create(map, domainObject.getPatient())); // OrderedBy valueObject.setOrderedBy( ims.core.vo.domain.MemberOfStaffLiteVoAssembler.create(map, domainObject.getOrderedBy())); // ResponsibleClinician valueObject.setResponsibleClinician( ims.core.vo.domain.HcpLiteVoAssembler.create(map, domainObject.getResponsibleClinician())); // ResponsibleGp valueObject.setResponsibleGp( ims.core.vo.domain.GpLiteVoAssembler.create(map, domainObject.getResponsibleGp())); // PatientLocation valueObject.setPatientLocation( ims.core.vo.domain.LocationLiteVoAssembler.create(map, domainObject.getPatientLocation())); // PatientClinic valueObject.setPatientClinic( ims.core.vo.domain.ClinicLiteVoAssembler.create(map, domainObject.getPatientClinic())); // AdditClinNotes valueObject.setAdditClinNotes(domainObject.getAdditClinNotes()); // SysInfo // set system information valueObject.setSysInfo( ims.vo.domain.SystemInformationAssembler.create(domainObject.getSystemInformation())); // CareContext valueObject.setCareContext( ims.core.vo.domain.CareContextPasVoAssembler.create(map, domainObject.getCareContext())); // OrderingHospital if (domainObject.getOrderingHospital() != null) { if (domainObject.getOrderingHospital() instanceof HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the // id already. { HibernateProxy p = (HibernateProxy) domainObject.getOrderingHospital(); int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString()); valueObject.setOrderingHospital(new ims.core.resource.place.vo.LocSiteRefVo(id, -1)); } else { valueObject.setOrderingHospital( new ims.core.resource.place.vo.LocSiteRefVo( domainObject.getOrderingHospital().getId(), domainObject.getOrderingHospital().getVersion())); } } // OutpatientDept valueObject.setOutpatientDept( ims.core.vo.domain.LocationLiteVoAssembler.create(map, domainObject.getOutpatientDept())); // AuthorisationOrderStatus ims.domain.lookups.LookupInstance instance24 = domainObject.getAuthorisationOrderStatus(); if (null != instance24) { ims.framework.utils.ImagePath img = null; ims.framework.utils.Color color = null; img = null; if (instance24.getImage() != null) { img = new ims.framework.utils.ImagePath( instance24.getImage().getImageId(), instance24.getImage().getImagePath()); } color = instance24.getColor(); if (color != null) color.getValue(); ims.ocrr.vo.lookups.AuthorisationOrderStatus voLookup24 = new ims.ocrr.vo.lookups.AuthorisationOrderStatus( instance24.getId(), instance24.getText(), instance24.isActive(), null, img, color); ims.ocrr.vo.lookups.AuthorisationOrderStatus parentVoLookup24 = voLookup24; ims.domain.lookups.LookupInstance parent24 = instance24.getParent(); while (parent24 != null) { if (parent24.getImage() != null) { img = new ims.framework.utils.ImagePath( parent24.getImage().getImageId(), parent24.getImage().getImagePath()); } else { img = null; } color = parent24.getColor(); if (color != null) color.getValue(); parentVoLookup24.setParent( new ims.ocrr.vo.lookups.AuthorisationOrderStatus( parent24.getId(), parent24.getText(), parent24.isActive(), null, img, color)); parentVoLookup24 = parentVoLookup24.getParent(); parent24 = parent24.getParent(); } valueObject.setAuthorisationOrderStatus(voLookup24); } return valueObject; }
/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.core.admin.domain.objects.Referral */ public static ims.core.vo.PASReferralVo insert( DomainObjectMap map, ims.core.vo.PASReferralVo valueObject, ims.core.admin.domain.objects.Referral domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_Referral(domainObject.getId()); valueObject.setIsRIE(domainObject.getIsRIE()); // If this is a recordedInError record, and the domainObject // value isIncludeRecord has not been set, then we return null and // not the value object if (valueObject.getIsRIE() != null && valueObject.getIsRIE().booleanValue() == true && !domainObject.isIncludeRecord()) return null; // If this is not a recordedInError record, and the domainObject // value isIncludeRecord has been set, then we return null and // not the value object if ((valueObject.getIsRIE() == null || valueObject.getIsRIE().booleanValue() == false) && domainObject.isIncludeRecord()) return null; // Details valueObject.setDetails(domainObject.getDetails()); // ReferralReceivedDate java.util.Date ReferralReceivedDate = domainObject.getReferralReceivedDate(); if (null != ReferralReceivedDate) { valueObject.setReferralReceivedDate(new ims.framework.utils.Date(ReferralReceivedDate)); } // OriginalReferralDate java.util.Date OriginalReferralDate = domainObject.getOriginalReferralDate(); if (null != OriginalReferralDate) { valueObject.setOriginalReferralDate(new ims.framework.utils.Date(OriginalReferralDate)); } // FirstApptDate java.util.Date FirstApptDate = domainObject.getFirstApptDate(); if (null != FirstApptDate) { valueObject.setFirstApptDate(new ims.framework.utils.DateTime(FirstApptDate)); } // SourceOfReferral ims.domain.lookups.LookupInstance instance5 = domainObject.getSourceOfReferral(); if (null != instance5) { ims.framework.utils.ImagePath img = null; ims.framework.utils.Color color = null; img = null; if (instance5.getImage() != null) { img = new ims.framework.utils.ImagePath( instance5.getImage().getImageId(), instance5.getImage().getImagePath()); } color = instance5.getColor(); if (color != null) color.getValue(); ims.core.vo.lookups.SourceOfReferral voLookup5 = new ims.core.vo.lookups.SourceOfReferral( instance5.getId(), instance5.getText(), instance5.isActive(), null, img, color); ims.core.vo.lookups.SourceOfReferral parentVoLookup5 = voLookup5; ims.domain.lookups.LookupInstance parent5 = instance5.getParent(); while (parent5 != null) { if (parent5.getImage() != null) { img = new ims.framework.utils.ImagePath( parent5.getImage().getImageId(), parent5.getImage().getImagePath()); } else { img = null; } color = parent5.getColor(); if (color != null) color.getValue(); parentVoLookup5.setParent( new ims.core.vo.lookups.SourceOfReferral( parent5.getId(), parent5.getText(), parent5.isActive(), null, img, color)); parentVoLookup5 = parentVoLookup5.getParent(); parent5 = parent5.getParent(); } valueObject.setSourceOfReferral(voLookup5); } // ReferringGP valueObject.setReferringGP( ims.core.vo.domain.GpLiteVoAssembler.create(map, domainObject.getReferringGP())); // ReferringClinician valueObject.setReferringClinician( ims.core.vo.domain.HcpLiteVoAssembler.create(map, domainObject.getReferringClinician())); // ReferredTo valueObject.setReferredTo( ims.core.vo.domain.HcpLiteVoAssembler.create(map, domainObject.getReferredTo())); // ReferralDetails valueObject.setReferralDetails(domainObject.getReferralDetails()); // DateOfReferral java.util.Date DateOfReferral = domainObject.getDateOfReferral(); if (null != DateOfReferral) { valueObject.setDateOfReferral(new ims.framework.utils.Date(DateOfReferral)); } // ReferralLocation valueObject.setReferralLocation(domainObject.getReferralLocation()); // ReferralType ims.domain.lookups.LookupInstance instance12 = domainObject.getReferralType(); if (null != instance12) { ims.framework.utils.ImagePath img = null; ims.framework.utils.Color color = null; img = null; if (instance12.getImage() != null) { img = new ims.framework.utils.ImagePath( instance12.getImage().getImageId(), instance12.getImage().getImagePath()); } color = instance12.getColor(); if (color != null) color.getValue(); ims.core.vo.lookups.ReferralType voLookup12 = new ims.core.vo.lookups.ReferralType( instance12.getId(), instance12.getText(), instance12.isActive(), null, img, color); ims.core.vo.lookups.ReferralType parentVoLookup12 = voLookup12; ims.domain.lookups.LookupInstance parent12 = instance12.getParent(); while (parent12 != null) { if (parent12.getImage() != null) { img = new ims.framework.utils.ImagePath( parent12.getImage().getImageId(), parent12.getImage().getImagePath()); } else { img = null; } color = parent12.getColor(); if (color != null) color.getValue(); parentVoLookup12.setParent( new ims.core.vo.lookups.ReferralType( parent12.getId(), parent12.getText(), parent12.isActive(), null, img, color)); parentVoLookup12 = parentVoLookup12.getParent(); parent12 = parent12.getParent(); } valueObject.setReferralType(voLookup12); } return valueObject; }
/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.ocrr.orderingresults.domain.objects.OcsOrderSession */ public static ims.ocs_if.vo.IfOcsOrderShortVo insert( DomainObjectMap map, ims.ocs_if.vo.IfOcsOrderShortVo valueObject, ims.ocrr.orderingresults.domain.objects.OcsOrderSession domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_OcsOrderSession(domainObject.getId()); valueObject.setIsRIE(domainObject.getIsRIE()); // If this is a recordedInError record, and the domainObject // value isIncludeRecord has not been set, then we return null and // not the value object if (valueObject.getIsRIE() != null && valueObject.getIsRIE().booleanValue() == true && !domainObject.isIncludeRecord()) return null; // If this is not a recordedInError record, and the domainObject // value isIncludeRecord has been set, then we return null and // not the value object if ((valueObject.getIsRIE() == null || valueObject.getIsRIE().booleanValue() == false) && domainObject.isIncludeRecord()) return null; // Patient if (domainObject.getPatient() != null) { if (domainObject.getPatient() instanceof HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the // id already. { HibernateProxy p = (HibernateProxy) domainObject.getPatient(); int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString()); valueObject.setPatient(new ims.core.patient.vo.PatientRefVo(id, -1)); } else { valueObject.setPatient( new ims.core.patient.vo.PatientRefVo( domainObject.getPatient().getId(), domainObject.getPatient().getVersion())); } } // OrderedBy valueObject.setOrderedBy( ims.core.vo.domain.MemberOfStaffLiteVoAssembler.create(map, domainObject.getOrderedBy())); // ResponsibleClinician valueObject.setResponsibleClinician( ims.core.vo.domain.HcpLiteVoAssembler.create(map, domainObject.getResponsibleClinician())); // ResponsibleGp valueObject.setResponsibleGp( ims.core.vo.domain.GpLiteVoAssembler.create(map, domainObject.getResponsibleGp())); // PatientLocation if (domainObject.getPatientLocation() != null) { if (domainObject.getPatientLocation() instanceof HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the // id already. { HibernateProxy p = (HibernateProxy) domainObject.getPatientLocation(); int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString()); valueObject.setPatientLocation(new ims.core.resource.place.vo.LocationRefVo(id, -1)); } else { valueObject.setPatientLocation( new ims.core.resource.place.vo.LocationRefVo( domainObject.getPatientLocation().getId(), domainObject.getPatientLocation().getVersion())); } } // PatientClinic if (domainObject.getPatientClinic() != null) { if (domainObject.getPatientClinic() instanceof HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the // id already. { HibernateProxy p = (HibernateProxy) domainObject.getPatientClinic(); int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString()); valueObject.setPatientClinic(new ims.core.resource.place.vo.ClinicRefVo(id, -1)); } else { valueObject.setPatientClinic( new ims.core.resource.place.vo.ClinicRefVo( domainObject.getPatientClinic().getId(), domainObject.getPatientClinic().getVersion())); } } // AdditClinNotes valueObject.setAdditClinNotes(domainObject.getAdditClinNotes()); // SendNumber valueObject.setSendNumber(domainObject.isSendNumber()); return valueObject; }