SupplyRequestStatus

public enum SupplyRequestStatus: String

Status of the supply request

URL: http://hl7.org/fhir/supplyrequest-status ValueSet: http://hl7.org/fhir/ValueSet/supplyrequest-status

  • The request has been created but is not yet complete or ready for action

    Declaration

    Swift

    case draft = "draft"
  • The request is ready to be acted upon

    Declaration

    Swift

    case active = "active"
  • The authorization/request to act has been temporarily withdrawn but is expected to resume in the future

    Declaration

    Swift

    case suspended = "suspended"
  • The authorization/request to act has been terminated prior to the full completion of the intended actions. No further activity should occur.

    Declaration

    Swift

    case cancelled = "cancelled"
  • Activity against the request has been sufficiently completed to the satisfaction of the requester

    Declaration

    Swift

    case completed = "completed"
  • This electronic record should never have existed, though it is possible that real-world decisions were based on it. (If real-world activity has occurred, the status should be cancelled rather than entered-in-error.)

    Declaration

    Swift

    case enteredInError = "entered-in-error"
  • The authoring system does not know which of the status values currently applies for this request. Note: This concept is not to be used for other - one of the listed statuses is presumed to apply, it’s just not known which one.

    Declaration

    Swift

    case unknown = "unknown"