Skip to content

Commit

Permalink
RWA-987 - Add csv configuration for visit types
Browse files Browse the repository at this point in the history
  • Loading branch information
mseaton committed Jan 8, 2025
1 parent 640c70a commit 4a67a2e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions rwandaemr-content/backend_configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,16 @@ from location l
left join location p on l.parent_location = p.location_id
order by l.name
;
```

# Visit Types

```sql
select t.uuid as 'UUID',
if(t.retired, 'TRUE', null) as 'Void/Retire',
t.name as 'Name',
t.description as 'Description'
from visit_type t
order by t.name
;
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
UUID,Void/Retire,Name,Description
d0ce5266-c4ce-4a2a-88e5-88cccd71fe50,,Clinic or Hospital Visit,"Patient visits the clinic/hospital (as opposed to a home visit, or telephone contact)"
1d697d92-a000-11ea-b1a0-d0577bb73cd4,,mUzima Visit,Default mUzima Visit
3515b588-b1df-4110-991b-0d603686d8e6,,Primary Care Outpatient,Represents a single day primary care visit to a health center.

0 comments on commit 4a67a2e

Please sign in to comment.