/**
   * 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.patient.domain.objects.PDSBatchTraceParams
   */
  public static ims.core.vo.PDSBatchTraceItemsVo insert(
      DomainObjectMap map,
      ims.core.vo.PDSBatchTraceItemsVo valueObject,
      ims.core.patient.domain.objects.PDSBatchTraceParams domainObject) {
    if (null == domainObject) {
      return valueObject;
    }
    if (null == map) {
      map = new DomainObjectMap();
    }

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

    // NHSNumber
    valueObject.setNHSNumber(domainObject.getNHSNumber());
    // surname
    valueObject.setSurname(domainObject.getSurname());
    // forename
    valueObject.setForename(domainObject.getForename());
    // dateOfBirth
    java.util.Date dateOfBirth = domainObject.getDateOfBirth();
    if (null != dateOfBirth) {
      valueObject.setDateOfBirth(new ims.framework.utils.Date(dateOfBirth));
    }
    // gender
    ims.domain.lookups.LookupInstance instance5 = domainObject.getGender();
    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.Sex voLookup5 =
          new ims.core.vo.lookups.Sex(
              instance5.getId(), instance5.getText(), instance5.isActive(), null, img, color);
      ims.core.vo.lookups.Sex 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.Sex(
                parent5.getId(), parent5.getText(), parent5.isActive(), null, img, color));
        parentVoLookup5 = parentVoLookup5.getParent();
        parent5 = parent5.getParent();
      }
      valueObject.setGender(voLookup5);
    }
    // dateOfDeathFrom
    java.util.Date dateOfDeathFrom = domainObject.getDateOfDeathFrom();
    if (null != dateOfDeathFrom) {
      valueObject.setDateOfDeathFrom(new ims.framework.utils.Date(dateOfDeathFrom));
    }
    // dateOfDeathTo
    java.util.Date dateOfDeathTo = domainObject.getDateOfDeathTo();
    if (null != dateOfDeathTo) {
      valueObject.setDateOfDeathTo(new ims.framework.utils.Date(dateOfDeathTo));
    }
    // postCode
    valueObject.setPostCode(domainObject.getPostCode());
    // pafKey
    valueObject.setPafKey(domainObject.getPafKey());
    // addressLines
    if (domainObject.getAddressLines() != null) {
      if (domainObject.getAddressLines()
          instanceof
          HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the
                          // id already.
      {
        HibernateProxy p = (HibernateProxy) domainObject.getAddressLines();
        int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString());
        valueObject.setAddressLines(new ims.core.patient.vo.PDSAddrRefVo(id, -1));
      } else {
        valueObject.setAddressLines(
            new ims.core.patient.vo.PDSAddrRefVo(
                domainObject.getAddressLines().getId(),
                domainObject.getAddressLines().getVersion()));
      }
    }
    // gpPracticeCode
    valueObject.setGpPracticeCode(domainObject.getGpPracticeCode());
    // status
    ims.domain.lookups.LookupInstance instance12 = domainObject.getStatus();
    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.PDSSearchStatus voLookup12 =
          new ims.core.vo.lookups.PDSSearchStatus(
              instance12.getId(), instance12.getText(), instance12.isActive(), null, img, color);
      ims.core.vo.lookups.PDSSearchStatus 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.PDSSearchStatus(
                parent12.getId(), parent12.getText(), parent12.isActive(), null, img, color));
        parentVoLookup12 = parentVoLookup12.getParent();
        parent12 = parent12.getParent();
      }
      valueObject.setStatus(voLookup12);
    }
    // errorReason
    valueObject.setErrorReason(domainObject.getErrorReason());
    return valueObject;
  }