FHIR Resources to represent Supply Chain #2092
Closed
roywanyaga
started this conversation in
General
Replies: 1 comment
-
Can you add more info on how the over/under reporting works? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We will be tracking inventory change events using the FHIR Observation resource
On a high level these Observations denote the following aspects of the inventory change events:
The type of the stock commodity affected by the event. Denoted by a reference to the Group Resource representing the stock commodity type.
The category of stock inventory event. The possible categories include:
"category": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "386452003", "display": "Supply management" } ] }, { "coding": [ { "system": "http://hl7.org/fhir/inventoryreport-counttype", "code": "snapshot", "display": "Snapshot" } ], "text": "Snapshot" } ]
"category": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "386452003", "display": "Supply management" } ] }, { "coding": [ { "system": "http://hl7.org/fhir/inventoryreport-counttype", "code": "addition", "display": "Addition" } ], "text": "Addition" } ]
"category": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "386452003", "display": "Supply management" } ] }, { "coding": [ { "system": "http://hl7.org/fhir/inventoryreport-counttype", "code": "subtraction", "display": "Subtraction" } ], "text": "Subtraction" } ]
The number of stock items added, subtracted, or are present
The type of the stock-related event (such as physical count, stock supply, patient visit, donation, expiry, damage, etc.). These are detailed in the table below.
The date and time of the event
The updated stock count for the commodity type as a result of the event
For each of the commodity types, multiple Observations will be created depending on the type of stock inventory events.
The different possible stock inventory events, their codes, categories, questionnaire fields, and condition for relevance are provided below:
During the supervisor visit (physical count and restock)
During the patient visits and service delivery
Beta Was this translation helpful? Give feedback.
All reactions