Skip to content

Commit 4a67a2e

Browse files
committed
RWA-987 - Add csv configuration for visit types
1 parent 640c70a commit 4a67a2e

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

rwandaemr-content/backend_configuration/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,16 @@ from location l
1313
left join location p on l.parent_location = p.location_id
1414
order by l.name
1515
;
16+
```
17+
18+
# Visit Types
19+
20+
```sql
21+
select t.uuid as 'UUID',
22+
if(t.retired, 'TRUE', null) as 'Void/Retire',
23+
t.name as 'Name',
24+
t.description as 'Description'
25+
from visit_type t
26+
order by t.name
27+
;
1628
```
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
UUID,Void/Retire,Name,Description
2+
d0ce5266-c4ce-4a2a-88e5-88cccd71fe50,,Clinic or Hospital Visit,"Patient visits the clinic/hospital (as opposed to a home visit, or telephone contact)"
3+
1d697d92-a000-11ea-b1a0-d0577bb73cd4,,mUzima Visit,Default mUzima Visit
4+
3515b588-b1df-4110-991b-0d603686d8e6,,Primary Care Outpatient,Represents a single day primary care visit to a health center.

0 commit comments

Comments
 (0)