--- type: "codesystem" title: "Invoice Status" codesystem: "invoice-status" --- # Invoice Status - **Official URL**: http://hl7.org/fhir/invoice-status - **Version**: 6.0.0 - **Status**: active - **Name**: InvoiceStatus - **Title**: Invoice Status - **Publisher**: HL7 (FHIR Project) - **Description**: Codes identifying the lifecycle stage of an Invoice. - **Case Sensitive**: true - **Content**: complete ## Concepts | Code | Display | Definition | | --- | --- | --- | | draft | draft | the invoice has been prepared but not yet finalized. | | issued | issued | the invoice has been finalized and sent to the recipient. | | balanced | balanced | the invoice has been balaced / completely paid. | | cancelled | cancelled | the invoice was cancelled. | | entered-in-error | entered in error | the invoice was determined as entered in error before it was issued. | ## CodeSystem XML ```xml <status value="active"/> <experimental value="false"/> <date value="2021-01-05T10:01:24+11:00"/> <publisher value="HL7 (FHIR Project)"/> <contact> <telecom> <system value="url"/> <value value="http://hl7.org/fhir"/> </telecom> <telecom> <system value="email"/> <value value="fhir@lists.hl7.org"/> </telecom> </contact> <description value="Codes identifying the lifecycle stage of an Invoice."/> <caseSensitive value="true"/> <valueSet value="http://hl7.org/fhir/ValueSet/invoice-status"/> <content value="complete"/> <concept> <code value="draft"/> <display value="draft"/> <definition value="the invoice has been prepared but not yet finalized."/> </concept> <concept> <code value="issued"/> <display value="issued"/> <definition value="the invoice has been finalized and sent to the recipient."/> </concept> <concept> <code value="balanced"/> <display value="balanced"/> <definition value="the invoice has been balaced / completely paid."/> </concept> <concept> <code value="cancelled"/> <display value="cancelled"/> <definition value="the invoice was cancelled."/> </concept> <concept> <code value="entered-in-error"/> <display value="entered in error"/> <definition value="the invoice was determined as entered in error before it was issued."/> </concept> </CodeSystem> ```