-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WD| Exctract locations using Name of village #4
- Loading branch information
Showing
70 changed files
with
7,744 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
opensrp-bidan/src/main/assets/Zambia-EIR-DataDictionaryReporting-HIA2.csv
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DRISHTI_BASE_URL= | ||
PORT=-1 | ||
SHOULD_VERIFY_CERTIFICATE=false | ||
SYNC_DOWNLOAD_BATCH_SIZE=100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
uname:demo1 | ||
pwd:Satu2345 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "alerts", | ||
"columns": [{ | ||
"column_name": "caseID", | ||
"json_mapping": { | ||
"field": "baseEntityId" | ||
} | ||
}, { | ||
"column_name": "scheduleName", | ||
"json_mapping": { | ||
"field": "data.scheduleName" | ||
} | ||
}, { | ||
"column_name": "visitCode", | ||
"json_mapping": { | ||
"field": "data.visitCode" | ||
} | ||
}, { | ||
"column_name": "status", | ||
"json_mapping": { | ||
"field": "data.alertStatus" | ||
} | ||
}, { | ||
"column_name": "startDate", | ||
"json_mapping": { | ||
"field": "data.startDate" | ||
} | ||
}, { | ||
"column_name": "expiryDate", | ||
"json_mapping": { | ||
"field": "data.expiryDate" | ||
} | ||
}] | ||
} |
33 changes: 33 additions & 0 deletions
33
opensrp-bidan/src/main/assets/ec_client_classification.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"case_classification_rules": [ | ||
{ | ||
"comment": "Child: This rule checks whether a given case belongs to Child register", | ||
"rule": { | ||
"type": "event", | ||
"fields": [ | ||
{ | ||
"field": "eventType", | ||
"field_value": "New Woman Registration", | ||
"creates_case": [ | ||
"ec_mother" | ||
] | ||
}, | ||
{ | ||
"field": "eventType", | ||
"field_value": "Birth Registration", | ||
"creates_case": [ | ||
"ec_child" | ||
] | ||
}, | ||
{ | ||
"field": "eventType", | ||
"field_value": "Update Birth Registration", | ||
"creates_case": [ | ||
"ec_child" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.