コード例 #1
0
  private String getServicesIDs(PreAssessmentWorklistSearchCriteriaVo searchCriteria) {
    if (searchCriteria == null) return null;

    if (searchCriteria.getService() == null && searchCriteria.getServices() == null) return null;

    StringBuffer ids = new StringBuffer();

    if (searchCriteria.getService() != null) {
      ids.append(searchCriteria.getService().getID_Service());
    } else if (searchCriteria.getServices() != null) {
      for (ServiceShortVo service : searchCriteria.getServices()) {
        if (service == null) continue;

        if (ids.length() > 0) ids.append(",");

        ids.append(service.getID_Service());
      }
    }

    return ids.toString();
  }
コード例 #2
0
 /**
  * Copy one ValueObject to another
  *
  * @param valueObjectDest to be updated
  * @param valueObjectSrc to copy values from
  */
 public static ims.core.vo.ServiceShortVo copy(
     ims.core.vo.ServiceShortVo valueObjectDest, ims.core.vo.ServiceShortVo valueObjectSrc) {
   if (null == valueObjectSrc) {
     return valueObjectSrc;
   }
   valueObjectDest.setID_Service(valueObjectSrc.getID_Service());
   valueObjectDest.setIsRIE(valueObjectSrc.getIsRIE());
   // ServiceDescription
   valueObjectDest.setServiceDescription(valueObjectSrc.getServiceDescription());
   // isActive
   valueObjectDest.setIsActive(valueObjectSrc.getIsActive());
   // AlternateServiceCode
   valueObjectDest.setAlternateServiceCode(valueObjectSrc.getAlternateServiceCode());
   // ServiceName
   valueObjectDest.setServiceName(valueObjectSrc.getServiceName());
   // ServiceCategory
   valueObjectDest.setServiceCategory(valueObjectSrc.getServiceCategory());
   // CanBeScheduled
   valueObjectDest.setCanBeScheduled(valueObjectSrc.getCanBeScheduled());
   // Specialty
   valueObjectDest.setSpecialty(valueObjectSrc.getSpecialty());
   // ExpectedTurnaround
   valueObjectDest.setExpectedTurnaround(valueObjectSrc.getExpectedTurnaround());
   // TurnaroundMeasure
   valueObjectDest.setTurnaroundMeasure(valueObjectSrc.getTurnaroundMeasure());
   // MaternityIndicator
   valueObjectDest.setMaternityIndicator(valueObjectSrc.getMaternityIndicator());
   return valueObjectDest;
 }
コード例 #3
0
  public static ims.core.clinical.domain.objects.Service extractService(
      ims.domain.ILightweightDomainFactory domainFactory,
      ims.core.vo.ServiceShortVo valueObject,
      HashMap domMap) {
    if (null == valueObject) {
      return null;
    }
    Integer id = valueObject.getID_Service();
    ims.core.clinical.domain.objects.Service domainObject = null;
    if (null == id) {
      if (domMap.get(valueObject) != null) {
        return (ims.core.clinical.domain.objects.Service) domMap.get(valueObject);
      }
      // ims.core.vo.ServiceShortVo ID_Service field is unknown
      domainObject = new ims.core.clinical.domain.objects.Service();
      domMap.put(valueObject, domainObject);
    } else {
      String key = (valueObject.getClass().getName() + "__" + valueObject.getID_Service());
      if (domMap.get(key) != null) {
        return (ims.core.clinical.domain.objects.Service) domMap.get(key);
      }
      domainObject =
          (ims.core.clinical.domain.objects.Service)
              domainFactory.getDomainObject(ims.core.clinical.domain.objects.Service.class, id);

      // TODO: Not sure how this should be handled. Effectively it must be a staleobject exception,
      // but maybe should be handled as that further up.
      if (domainObject == null) return null;

      domMap.put(key, domainObject);
    }
    domainObject.setVersion(valueObject.getVersion_Service());

    // This is to overcome a bug in both Sybase and Oracle which prevents them from storing an empty
    // string correctly
    // Sybase stores it as a single space, Oracle stores it as NULL. This fix will make them
    // consistent at least.
    if (valueObject.getServiceDescription() != null
        && valueObject.getServiceDescription().equals("")) {
      valueObject.setServiceDescription(null);
    }
    domainObject.setServiceDescription(valueObject.getServiceDescription());
    domainObject.setIsActive(valueObject.getIsActive());
    // This is to overcome a bug in both Sybase and Oracle which prevents them from storing an empty
    // string correctly
    // Sybase stores it as a single space, Oracle stores it as NULL. This fix will make them
    // consistent at least.
    if (valueObject.getAlternateServiceCode() != null
        && valueObject.getAlternateServiceCode().equals("")) {
      valueObject.setAlternateServiceCode(null);
    }
    domainObject.setAlternateServiceCode(valueObject.getAlternateServiceCode());
    // This is to overcome a bug in both Sybase and Oracle which prevents them from storing an empty
    // string correctly
    // Sybase stores it as a single space, Oracle stores it as NULL. This fix will make them
    // consistent at least.
    if (valueObject.getServiceName() != null && valueObject.getServiceName().equals("")) {
      valueObject.setServiceName(null);
    }
    domainObject.setServiceName(valueObject.getServiceName());
    // create LookupInstance from vo LookupType
    ims.domain.lookups.LookupInstance value5 = null;
    if (null != valueObject.getServiceCategory()) {
      value5 = domainFactory.getLookupInstance(valueObject.getServiceCategory().getID());
    }
    domainObject.setServiceCategory(value5);
    domainObject.setCanBeScheduled(valueObject.getCanBeScheduled());
    // create LookupInstance from vo LookupType
    ims.domain.lookups.LookupInstance value7 = null;
    if (null != valueObject.getSpecialty()) {
      value7 = domainFactory.getLookupInstance(valueObject.getSpecialty().getID());
    }
    domainObject.setSpecialty(value7);
    domainObject.setExpectedTurnaround(valueObject.getExpectedTurnaround());
    // create LookupInstance from vo LookupType
    ims.domain.lookups.LookupInstance value9 = null;
    if (null != valueObject.getTurnaroundMeasure()) {
      value9 = domainFactory.getLookupInstance(valueObject.getTurnaroundMeasure().getID());
    }
    domainObject.setTurnaroundMeasure(value9);
    domainObject.setMaternityIndicator(valueObject.getMaternityIndicator());

    return domainObject;
  }
コード例 #4
0
  /**
   * 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.clinical.domain.objects.Service
   */
  public static ims.core.vo.ServiceShortVo insert(
      DomainObjectMap map,
      ims.core.vo.ServiceShortVo valueObject,
      ims.core.clinical.domain.objects.Service domainObject) {
    if (null == domainObject) {
      return valueObject;
    }
    if (null == map) {
      map = new DomainObjectMap();
    }

    valueObject.setID_Service(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;

    // ServiceDescription
    valueObject.setServiceDescription(domainObject.getServiceDescription());
    // isActive
    valueObject.setIsActive(domainObject.isIsActive());
    // AlternateServiceCode
    valueObject.setAlternateServiceCode(domainObject.getAlternateServiceCode());
    // ServiceName
    valueObject.setServiceName(domainObject.getServiceName());
    // ServiceCategory
    ims.domain.lookups.LookupInstance instance5 = domainObject.getServiceCategory();
    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.ServiceCategory voLookup5 =
          new ims.core.vo.lookups.ServiceCategory(
              instance5.getId(), instance5.getText(), instance5.isActive(), null, img, color);
      ims.core.vo.lookups.ServiceCategory 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.ServiceCategory(
                parent5.getId(), parent5.getText(), parent5.isActive(), null, img, color));
        parentVoLookup5 = parentVoLookup5.getParent();
        parent5 = parent5.getParent();
      }
      valueObject.setServiceCategory(voLookup5);
    }
    // CanBeScheduled
    valueObject.setCanBeScheduled(domainObject.isCanBeScheduled());
    // Specialty
    ims.domain.lookups.LookupInstance instance7 = domainObject.getSpecialty();
    if (null != instance7) {
      ims.framework.utils.ImagePath img = null;
      ims.framework.utils.Color color = null;
      img = null;
      if (instance7.getImage() != null) {
        img =
            new ims.framework.utils.ImagePath(
                instance7.getImage().getImageId(), instance7.getImage().getImagePath());
      }
      color = instance7.getColor();
      if (color != null) color.getValue();

      ims.core.vo.lookups.Specialty voLookup7 =
          new ims.core.vo.lookups.Specialty(
              instance7.getId(), instance7.getText(), instance7.isActive(), null, img, color);
      ims.core.vo.lookups.Specialty parentVoLookup7 = voLookup7;
      ims.domain.lookups.LookupInstance parent7 = instance7.getParent();
      while (parent7 != null) {
        if (parent7.getImage() != null) {
          img =
              new ims.framework.utils.ImagePath(
                  parent7.getImage().getImageId(), parent7.getImage().getImagePath());
        } else {
          img = null;
        }
        color = parent7.getColor();
        if (color != null) color.getValue();
        parentVoLookup7.setParent(
            new ims.core.vo.lookups.Specialty(
                parent7.getId(), parent7.getText(), parent7.isActive(), null, img, color));
        parentVoLookup7 = parentVoLookup7.getParent();
        parent7 = parent7.getParent();
      }
      valueObject.setSpecialty(voLookup7);
    }
    // ExpectedTurnaround
    valueObject.setExpectedTurnaround(domainObject.getExpectedTurnaround());
    // TurnaroundMeasure
    ims.domain.lookups.LookupInstance instance9 = domainObject.getTurnaroundMeasure();
    if (null != instance9) {
      ims.framework.utils.ImagePath img = null;
      ims.framework.utils.Color color = null;
      img = null;
      if (instance9.getImage() != null) {
        img =
            new ims.framework.utils.ImagePath(
                instance9.getImage().getImageId(), instance9.getImage().getImagePath());
      }
      color = instance9.getColor();
      if (color != null) color.getValue();

      ims.ocrr.vo.lookups.MinReorderPeriod voLookup9 =
          new ims.ocrr.vo.lookups.MinReorderPeriod(
              instance9.getId(), instance9.getText(), instance9.isActive(), null, img, color);
      ims.ocrr.vo.lookups.MinReorderPeriod parentVoLookup9 = voLookup9;
      ims.domain.lookups.LookupInstance parent9 = instance9.getParent();
      while (parent9 != null) {
        if (parent9.getImage() != null) {
          img =
              new ims.framework.utils.ImagePath(
                  parent9.getImage().getImageId(), parent9.getImage().getImagePath());
        } else {
          img = null;
        }
        color = parent9.getColor();
        if (color != null) color.getValue();
        parentVoLookup9.setParent(
            new ims.ocrr.vo.lookups.MinReorderPeriod(
                parent9.getId(), parent9.getText(), parent9.isActive(), null, img, color));
        parentVoLookup9 = parentVoLookup9.getParent();
        parent9 = parent9.getParent();
      }
      valueObject.setTurnaroundMeasure(voLookup9);
    }
    // MaternityIndicator
    valueObject.setMaternityIndicator(domainObject.isMaternityIndicator());
    return valueObject;
  }