@ampath/esm-reports-app 1.0.0-next.2 → 1.0.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/184.js +1 -1
- package/dist/184.js.map +1 -1
- package/dist/260.js +1 -0
- package/dist/260.js.map +1 -0
- package/dist/282.js +1 -1
- package/dist/282.js.LICENSE.txt +3 -3
- package/dist/282.js.map +1 -1
- package/dist/311.js +1 -0
- package/dist/311.js.map +1 -0
- package/dist/353.js +1 -1
- package/dist/353.js.map +1 -1
- package/dist/367.js +2 -0
- package/dist/367.js.LICENSE.txt +20 -0
- package/dist/367.js.map +1 -0
- package/dist/478.js +2 -0
- package/dist/478.js.LICENSE.txt +9 -0
- package/dist/478.js.map +1 -0
- package/dist/540.js +1 -1
- package/dist/540.js.map +1 -1
- package/dist/812.js +1 -0
- package/dist/812.js.map +1 -0
- package/dist/86.js +1 -0
- package/dist/86.js.map +1 -0
- package/dist/961.js +1 -1
- package/dist/961.js.map +1 -1
- package/dist/ampath-esm-reports-app.js +1 -1
- package/dist/ampath-esm-reports-app.js.buildmanifest.json +121 -165
- package/dist/ampath-esm-reports-app.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +2 -1
- package/src/common/report-filters/report-filters.component.tsx +125 -0
- package/src/common/report-filters/report-filters.scss +49 -0
- package/src/config-schema.ts +6 -37
- package/src/createDashboardLink.tsx +9 -0
- package/src/dashboard/reports-dasboard.tsx +26 -0
- package/src/dashboard/reports-dashboard.module.scss +14 -0
- package/src/dashboard-meta/reports-dashboard.meta.ts +6 -0
- package/src/index.ts +6 -35
- package/src/reports/moh-710/moh-710.component.tsx +674 -0
- package/src/reports/moh-710/moh-710.scss +41 -0
- package/src/reports/moh-711/moh-711.component.tsx +1309 -0
- package/src/reports/moh-711/moh711.scss +41 -0
- package/src/reports/moh-717/moh-717.component.tsx +1025 -0
- package/src/reports/moh-717/moh717.scss +41 -0
- package/src/resources/moh-710.resource.ts +34 -0
- package/src/resources/moh-711.resource.ts +34 -0
- package/src/resources/moh-717.resource.ts +35 -0
- package/src/root.component.tsx +16 -32
- package/src/routes.json +14 -17
- package/src/utils/get-base-url.ts +12 -0
- package/dist/19.js +0 -2
- package/dist/19.js.LICENSE.txt +0 -39
- package/dist/19.js.map +0 -1
- package/dist/255.js +0 -1
- package/dist/255.js.map +0 -1
- package/dist/389.js +0 -1
- package/dist/389.js.map +0 -1
- package/dist/451.js +0 -1
- package/dist/451.js.map +0 -1
- package/dist/488.js +0 -1
- package/dist/488.js.map +0 -1
- package/dist/557.js +0 -1
- package/dist/557.js.map +0 -1
- package/dist/91.js +0 -1
- package/dist/91.js.map +0 -1
- package/dist/970.js +0 -1
- package/dist/970.js.map +0 -1
- package/src/boxes/extensions/blue-box.component.tsx +0 -15
- package/src/boxes/extensions/box.scss +0 -23
- package/src/boxes/extensions/brand-box.component.tsx +0 -15
- package/src/boxes/extensions/red-box.component.tsx +0 -15
- package/src/boxes/slot/boxes.component.tsx +0 -25
- package/src/boxes/slot/boxes.scss +0 -29
- package/src/greeter/greeter.component.tsx +0 -42
- package/src/greeter/greeter.scss +0 -20
- package/src/greeter/greeter.test.tsx +0 -28
- package/src/patient-getter/patient-getter.component.tsx +0 -40
- package/src/patient-getter/patient-getter.resource.ts +0 -39
- package/src/patient-getter/patient-getter.scss +0 -16
- package/src/patient-getter/patient-getter.test.tsx +0 -40
- package/src/resources/resources.component.tsx +0 -56
- package/src/resources/resources.scss +0 -68
- package/src/root.test.tsx +0 -51
|
@@ -0,0 +1,1309 @@
|
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
|
+
import ReportFiltersComponent from '../../common/report-filters/report-filters.component';
|
|
3
|
+
|
|
4
|
+
import styles from './moh711.scss';
|
|
5
|
+
import classNames from 'classnames';
|
|
6
|
+
import { useSession } from '@openmrs/esm-framework';
|
|
7
|
+
import { getMoh711 } from '../../resources/moh-711.resource';
|
|
8
|
+
import { Loading } from '@carbon/react';
|
|
9
|
+
|
|
10
|
+
const Moh711Report: React.FC = () => {
|
|
11
|
+
let errorMessage: string = '';
|
|
12
|
+
const [moh711Data, setMoh711Data] = useState<any>([]);
|
|
13
|
+
const [isLoading, setIsLoading] = useState<boolean>(false);
|
|
14
|
+
|
|
15
|
+
const session = useSession();
|
|
16
|
+
const locationUuid = session?.sessionLocation?.uuid;
|
|
17
|
+
const fetchMoh711ReportData = async (filters: { startDate?: string; endDate?: string; month?: string }) => {
|
|
18
|
+
setIsLoading(true);
|
|
19
|
+
let startDate = filters.startDate;
|
|
20
|
+
let endDate = filters.endDate;
|
|
21
|
+
|
|
22
|
+
if (filters.month) {
|
|
23
|
+
const [year, monthIndex] = filters.month.split('-').map(Number);
|
|
24
|
+
|
|
25
|
+
const start = new Date(year, monthIndex - 1, 1);
|
|
26
|
+
const end = new Date(year, monthIndex, 0);
|
|
27
|
+
|
|
28
|
+
const formatLocalDate = (d: Date) => {
|
|
29
|
+
const year = d.getFullYear();
|
|
30
|
+
const month = String(d.getMonth() + 1).padStart(2, '0');
|
|
31
|
+
const day = String(d.getDate()).padStart(2, '0');
|
|
32
|
+
return `${year}-${month}-${day}`;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
startDate = formatLocalDate(start);
|
|
36
|
+
endDate = formatLocalDate(end);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const params = {
|
|
40
|
+
locationUuids: locationUuid || '',
|
|
41
|
+
startDate,
|
|
42
|
+
endDate,
|
|
43
|
+
};
|
|
44
|
+
try {
|
|
45
|
+
const data = await getMoh711(params);
|
|
46
|
+
const flatData = Object.assign({}, ...data.result);
|
|
47
|
+
setMoh711Data(flatData);
|
|
48
|
+
setIsLoading(false);
|
|
49
|
+
} catch (error) {
|
|
50
|
+
setIsLoading(false);
|
|
51
|
+
errorMessage = error instanceof Error ? error.message : String(error);
|
|
52
|
+
throw new Error(`Failed to fetch MOH-711 report data: ${error instanceof Error ? error.message : String(error)}`);
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
return (
|
|
56
|
+
<>
|
|
57
|
+
<ReportFiltersComponent
|
|
58
|
+
reportName="MOH-711 Report"
|
|
59
|
+
mode="monthly"
|
|
60
|
+
onGenerate={fetchMoh711ReportData}
|
|
61
|
+
isLoding={isLoading}
|
|
62
|
+
/>
|
|
63
|
+
{isLoading && <Loading description="Fetching data...." />}
|
|
64
|
+
{!isLoading && errorMessage && (
|
|
65
|
+
<div>
|
|
66
|
+
<a href="#" className="close" data-dismiss="alert">
|
|
67
|
+
×
|
|
68
|
+
</a>
|
|
69
|
+
<h4>
|
|
70
|
+
<strong>
|
|
71
|
+
<span className="glyphicon glyphicon-warning-sign"></span>{' '}
|
|
72
|
+
</strong>{' '}
|
|
73
|
+
An error occurred while trying to load the report. Please try again.
|
|
74
|
+
</h4>
|
|
75
|
+
<p>
|
|
76
|
+
<small>{errorMessage}</small>
|
|
77
|
+
</p>
|
|
78
|
+
</div>
|
|
79
|
+
)}
|
|
80
|
+
<h3>KHIS Aggregate</h3>
|
|
81
|
+
<div className={styles.container}>
|
|
82
|
+
<p className={styles.title}>A. ANC</p>
|
|
83
|
+
<p className={styles.sectionTitle}>default</p>
|
|
84
|
+
<div className={styles.tableContainer}>
|
|
85
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
86
|
+
<thead>
|
|
87
|
+
<tr>
|
|
88
|
+
<th></th>
|
|
89
|
+
<th>Value</th>
|
|
90
|
+
</tr>
|
|
91
|
+
</thead>
|
|
92
|
+
<tbody>
|
|
93
|
+
<tr>
|
|
94
|
+
<td>New ANC clients</td>
|
|
95
|
+
<td>{moh711Data.new_anc_clients}</td>
|
|
96
|
+
</tr>
|
|
97
|
+
<tr>
|
|
98
|
+
<td>Re-Visit ANC Clients</td>
|
|
99
|
+
<td>{moh711Data.revisit_anc_clients}</td>
|
|
100
|
+
</tr>
|
|
101
|
+
<tr>
|
|
102
|
+
<td>Clients given IPT 1st Dose</td>
|
|
103
|
+
<td>{moh711Data.first_ipt_dose}</td>
|
|
104
|
+
</tr>
|
|
105
|
+
<tr>
|
|
106
|
+
<td>Clients given IPT 2nd Dose</td>
|
|
107
|
+
<td>{moh711Data.second_ipt_dose}</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td>Clients given IPT 3rd Dose</td>
|
|
111
|
+
<td>{moh711Data.third_ipt_dose}</td>
|
|
112
|
+
</tr>
|
|
113
|
+
<tr>
|
|
114
|
+
<td>Clients with Hb<11g/dl</td>
|
|
115
|
+
<td>{moh711Data.Hb_less_11g}</td>
|
|
116
|
+
</tr>
|
|
117
|
+
<tr>
|
|
118
|
+
<td>No. clients with 1st ANC contact at 12 or less weeks</td>
|
|
119
|
+
<td>{moh711Data.first_anc_contact_12_or_less_weeks}</td>
|
|
120
|
+
</tr>
|
|
121
|
+
<tr>
|
|
122
|
+
<td>Pregnant women completing 4 ANC visits</td>
|
|
123
|
+
<td>{moh711Data.completing_4_anc_visits}</td>
|
|
124
|
+
</tr>
|
|
125
|
+
<tr>
|
|
126
|
+
<td>No. of clients completed 8th ANC Contact</td>
|
|
127
|
+
<td>{moh711Data.completing_8_anc_contact}</td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td>LLINs distributed to children < 1 year</td>
|
|
131
|
+
<td>{moh711Data.llins_children_less_than_one}</td>
|
|
132
|
+
</tr>
|
|
133
|
+
<tr>
|
|
134
|
+
<td>LLINs distributed to ANC clients</td>
|
|
135
|
+
<td>{moh711Data.llins_anc_clients}</td>
|
|
136
|
+
</tr>
|
|
137
|
+
<tr>
|
|
138
|
+
<td>ANC clients testd for syphilis</td>
|
|
139
|
+
<td>{moh711Data.anc_clients_tested_syphilis}</td>
|
|
140
|
+
</tr>
|
|
141
|
+
<tr>
|
|
142
|
+
<td>ANC clients Syphilis +ve</td>
|
|
143
|
+
<td>{moh711Data.syphilis_positive}</td>
|
|
144
|
+
</tr>
|
|
145
|
+
<tr>
|
|
146
|
+
<td>Total Women Done Breast Examination</td>
|
|
147
|
+
<td>{moh711Data.breast_exam}</td>
|
|
148
|
+
</tr>
|
|
149
|
+
<tr>
|
|
150
|
+
<td>No. Adolesc. (10-14 years) Preg. At 1st ANC Visit</td>
|
|
151
|
+
<td>{moh711Data.adolesc_10_14}</td>
|
|
152
|
+
</tr>
|
|
153
|
+
<tr>
|
|
154
|
+
<td>No. Adolesc. (15-19 years) Preg At 1st ANC Visit</td>
|
|
155
|
+
<td>{moh711Data.adolesc_15_19}</td>
|
|
156
|
+
</tr>
|
|
157
|
+
<tr>
|
|
158
|
+
<td>Youth (20-24 years) presenting with pregnancy At 1st ANC Visit</td>
|
|
159
|
+
<td>{moh711Data.youth_20_24}</td>
|
|
160
|
+
</tr>
|
|
161
|
+
<tr>
|
|
162
|
+
<td>ANC Client given Iron</td>
|
|
163
|
+
<td>{moh711Data.iron}</td>
|
|
164
|
+
</tr>
|
|
165
|
+
<tr>
|
|
166
|
+
<td>ANC Client given folic</td>
|
|
167
|
+
<td>{moh711Data.folic}</td>
|
|
168
|
+
</tr>
|
|
169
|
+
<tr>
|
|
170
|
+
<td>ANC Client supplimented wiht Combined Iron and Folate</td>
|
|
171
|
+
<td>{moh711Data.iron_and_folate}</td>
|
|
172
|
+
</tr>
|
|
173
|
+
<tr>
|
|
174
|
+
<td>Pregnant women presenting in ANC with complication associated with FGM</td>
|
|
175
|
+
<td>{moh711Data.fgm_complications}</td>
|
|
176
|
+
</tr>
|
|
177
|
+
</tbody>
|
|
178
|
+
</table>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
<div className={styles.container}>
|
|
182
|
+
<p className={styles.title}>B. Maternity and Newborn</p>
|
|
183
|
+
<p className={styles.sectionTitle}>default</p>
|
|
184
|
+
<div className={styles.tableContainer}>
|
|
185
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
186
|
+
<thead>
|
|
187
|
+
<tr>
|
|
188
|
+
<th></th>
|
|
189
|
+
<th>Value</th>
|
|
190
|
+
</tr>
|
|
191
|
+
</thead>
|
|
192
|
+
<tbody>
|
|
193
|
+
<tr>
|
|
194
|
+
<td>Normal Deliveries</td>
|
|
195
|
+
<td>{moh711Data.normal_deliveries}</td>
|
|
196
|
+
</tr>
|
|
197
|
+
<tr>
|
|
198
|
+
<td>Caesarean Sections</td>
|
|
199
|
+
<td>{moh711Data.caesarian_sections}</td>
|
|
200
|
+
</tr>
|
|
201
|
+
<tr>
|
|
202
|
+
<td>Breach Delivery</td>
|
|
203
|
+
<td>{moh711Data.breach_delivery}</td>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td>Assisted Vaginal Delivery</td>
|
|
207
|
+
<td>{moh711Data.assisted_vaginal_delivery}</td>
|
|
208
|
+
</tr>
|
|
209
|
+
<tr>
|
|
210
|
+
<td>Mothers given uterotonics within 1 minute (Oxytocin)</td>
|
|
211
|
+
<td>{moh711Data.oxytocin_uterotonic}</td>
|
|
212
|
+
</tr>
|
|
213
|
+
<tr>
|
|
214
|
+
<td>Mothers given uterotonics within 1 minute (Carbatosin)</td>
|
|
215
|
+
<td>{moh711Data.carbatocin_uterotonic}</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td>Live birth</td>
|
|
219
|
+
<td>{moh711Data.live_birth}</td>
|
|
220
|
+
</tr>
|
|
221
|
+
<tr>
|
|
222
|
+
<td>Low Birth Weight < 2500gms</td>
|
|
223
|
+
<td>{moh711Data.low_birth_weight}</td>
|
|
224
|
+
</tr>
|
|
225
|
+
<tr>
|
|
226
|
+
<td>Births with low APGAR score</td>
|
|
227
|
+
<td>{moh711Data.low_apgar_score}</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td>Birth with diformities</td>
|
|
231
|
+
<td>{moh711Data.birth_with_deformity}</td>
|
|
232
|
+
</tr>
|
|
233
|
+
<tr>
|
|
234
|
+
<td>Babies applied chlorhexidine for cord care</td>
|
|
235
|
+
<td>{moh711Data.chlorhexidine_applied}</td>
|
|
236
|
+
</tr>
|
|
237
|
+
<tr>
|
|
238
|
+
<td>Neonates given Vit "K"</td>
|
|
239
|
+
<td>{moh711Data.vitamin_k}</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td>Babies given tetracycline at birth</td>
|
|
243
|
+
<td>{moh711Data.tetracycline_given}</td>
|
|
244
|
+
</tr>
|
|
245
|
+
<tr>
|
|
246
|
+
<td>Pre-term babies</td>
|
|
247
|
+
<td>{moh711Data.pre_term_babies}</td>
|
|
248
|
+
</tr>
|
|
249
|
+
<tr>
|
|
250
|
+
<td>Babies discharge Alive</td>
|
|
251
|
+
<td>{moh711Data.discharge_alive}</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td>Infants initiated on breast feeding within 1 hour after birth</td>
|
|
255
|
+
<td>{moh711Data.bf_within_1_hour}</td>
|
|
256
|
+
</tr>
|
|
257
|
+
<tr>
|
|
258
|
+
<td>Deliveries from HIV+ve Women</td>
|
|
259
|
+
<td>{moh711Data.deliveries_from_positive_women}</td>
|
|
260
|
+
</tr>
|
|
261
|
+
<tr>
|
|
262
|
+
<td>Fresh Still Birth</td>
|
|
263
|
+
<td>{moh711Data.fresh_still_birth}</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td>Macerated still Birth</td>
|
|
267
|
+
<td>{moh711Data.macerated_still_birth}</td>
|
|
268
|
+
</tr>
|
|
269
|
+
<tr>
|
|
270
|
+
<td>Perinatal Deaths 0-7 days</td>
|
|
271
|
+
<td>{moh711Data.perinatal_deaths_0_7_days}</td>
|
|
272
|
+
</tr>
|
|
273
|
+
<tr>
|
|
274
|
+
<td>Neonatal deaths 0-28 Days</td>
|
|
275
|
+
<td>{moh711Data.neonatal_deaths_0_28_days}</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td>Maternal deaths 10-14 Years</td>
|
|
279
|
+
<td>{moh711Data.maternal_deaths_10_14_years}</td>
|
|
280
|
+
</tr>
|
|
281
|
+
<tr>
|
|
282
|
+
<td>Maternal deaths 15-19 Years</td>
|
|
283
|
+
<td>{moh711Data.maternal_deaths_15_19_years}</td>
|
|
284
|
+
</tr>
|
|
285
|
+
<tr>
|
|
286
|
+
<td>Maternal deaths 20-24 Years</td>
|
|
287
|
+
<td>{moh711Data.maternal_deaths_20_24_years}</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td>Maternal deaths 25+ Years</td>
|
|
291
|
+
<td>{moh711Data.maternal_deaths_25_above_years}</td>
|
|
292
|
+
</tr>
|
|
293
|
+
<tr>
|
|
294
|
+
<td>Maternal Deaths Audited Within 7 Days</td>
|
|
295
|
+
<td>{moh711Data.maternal_deaths_audited_within_7_days}</td>
|
|
296
|
+
</tr>
|
|
297
|
+
<tr>
|
|
298
|
+
<td>Neonatal deaths audited within 7 days</td>
|
|
299
|
+
<td>{moh711Data.neonatal_deaths_audited_within_7_days}</td>
|
|
300
|
+
</tr>
|
|
301
|
+
</tbody>
|
|
302
|
+
</table>
|
|
303
|
+
</div>
|
|
304
|
+
</div>
|
|
305
|
+
<div className={styles.container}>
|
|
306
|
+
<p className={styles.title}>B1. Maternal Complications</p>
|
|
307
|
+
<p className={styles.sectionTitle}>AD</p>
|
|
308
|
+
<div className={styles.tableContainer}>
|
|
309
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
310
|
+
<thead>
|
|
311
|
+
<tr>
|
|
312
|
+
<th></th>
|
|
313
|
+
<th>A</th>
|
|
314
|
+
<th>D</th>
|
|
315
|
+
</tr>
|
|
316
|
+
</thead>
|
|
317
|
+
<tbody>
|
|
318
|
+
<tr>
|
|
319
|
+
<td>APH (Ante partum Haemorrage)</td>
|
|
320
|
+
<td>{moh711Data.ante_partum_haemorrage}</td>
|
|
321
|
+
<td></td>
|
|
322
|
+
</tr>
|
|
323
|
+
<tr>
|
|
324
|
+
<td>PPH (Post Partum Haemorrage)</td>
|
|
325
|
+
<td></td>
|
|
326
|
+
<td>{moh711Data.post_partum_haemorrage}</td>
|
|
327
|
+
</tr>
|
|
328
|
+
<tr>
|
|
329
|
+
<td>Eclampsia</td>
|
|
330
|
+
<td>{moh711Data.eclampsia}</td>
|
|
331
|
+
<td></td>
|
|
332
|
+
</tr>
|
|
333
|
+
<tr>
|
|
334
|
+
<td>Ruptured Uterus</td>
|
|
335
|
+
<td></td>
|
|
336
|
+
<td>{moh711Data.ruptured_uterus}</td>
|
|
337
|
+
</tr>
|
|
338
|
+
<tr>
|
|
339
|
+
<td>Obstructed Labour</td>
|
|
340
|
+
<td></td>
|
|
341
|
+
<td>{moh711Data.obstructed_labour}</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td>Sepsis</td>
|
|
345
|
+
<td></td>
|
|
346
|
+
<td>{moh711Data.sepsis}</td>
|
|
347
|
+
</tr>
|
|
348
|
+
<tr>
|
|
349
|
+
<td>Mothers with delivery complications associated with FGM</td>
|
|
350
|
+
<td></td>
|
|
351
|
+
<td>{moh711Data.fgm_delivery_complications}</td>
|
|
352
|
+
</tr>
|
|
353
|
+
</tbody>
|
|
354
|
+
</table>
|
|
355
|
+
</div>
|
|
356
|
+
</div>
|
|
357
|
+
<div className={styles.container}>
|
|
358
|
+
<p className={styles.title}>B2. Neonate Care and Outcome</p>
|
|
359
|
+
<p className={styles.sectionTitle}>default</p>
|
|
360
|
+
<div className={styles.tableContainer}>
|
|
361
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
362
|
+
<thead>
|
|
363
|
+
<tr>
|
|
364
|
+
<th></th>
|
|
365
|
+
<th>Value</th>
|
|
366
|
+
</tr>
|
|
367
|
+
</thead>
|
|
368
|
+
<tbody>
|
|
369
|
+
<tr>
|
|
370
|
+
<td>Neonatal deaths due to Sepsis</td>
|
|
371
|
+
<td>{moh711Data.neonatal_deaths_sepsis}</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td>Neonatal deaths due to Prematurity</td>
|
|
375
|
+
<td>{moh711Data.neonatal_deaths_prematurity}</td>
|
|
376
|
+
</tr>
|
|
377
|
+
<tr>
|
|
378
|
+
<td>Neonatal deaths due to Asphyxia</td>
|
|
379
|
+
<td>{moh711Data.neonatal_deaths_asphyxia}</td>
|
|
380
|
+
</tr>
|
|
381
|
+
<tr>
|
|
382
|
+
<td>Neonates initiated on Kangaroo Mother Care</td>
|
|
383
|
+
<td>{moh711Data.kangaroo_mother_care}</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td>Maternal Referrals From Other Health Facility</td>
|
|
387
|
+
<td>{moh711Data.referrals_from_other_health_facility}</td>
|
|
388
|
+
</tr>
|
|
389
|
+
<tr>
|
|
390
|
+
<td>Maternal Referrals To Other Health Facility</td>
|
|
391
|
+
<td>{moh711Data.referrals_to_other_health_facility}</td>
|
|
392
|
+
</tr>
|
|
393
|
+
<tr>
|
|
394
|
+
<td>Maternal Referrals From Community Unit</td>
|
|
395
|
+
<td>{moh711Data.referrals_from_community}</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td>Maternal Referrals To Community Unit</td>
|
|
399
|
+
<td>{moh711Data.referrals_to_community}</td>
|
|
400
|
+
</tr>
|
|
401
|
+
</tbody>
|
|
402
|
+
</table>
|
|
403
|
+
</div>
|
|
404
|
+
</div>
|
|
405
|
+
<div className={styles.container}>
|
|
406
|
+
<p className={styles.title}>C. Sexual and Gender Based Violence</p>
|
|
407
|
+
<p className={styles.sectionTitle}>0-9 yrs10-17 yrs18-49Yrs50 Yrs and above</p>
|
|
408
|
+
<div className={styles.tableContainer}>
|
|
409
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
410
|
+
<thead>
|
|
411
|
+
<tr>
|
|
412
|
+
<th></th>
|
|
413
|
+
<th>0-9 yrs</th>
|
|
414
|
+
<th>10-17 yrs</th>
|
|
415
|
+
<th>18-49 Yrs</th>
|
|
416
|
+
<th>50 Yrs and above</th>
|
|
417
|
+
</tr>
|
|
418
|
+
</thead>
|
|
419
|
+
<tbody>
|
|
420
|
+
<tr>
|
|
421
|
+
<td>SGBV Total Survivors Seen</td>
|
|
422
|
+
<td>{moh711Data.sgbv_total_survivors_0_9}</td>
|
|
423
|
+
<td>{moh711Data.sgbv_total_survivors_10_17}</td>
|
|
424
|
+
<td>{moh711Data.sgbv_total_survivors_18_49}</td>
|
|
425
|
+
<td>{moh711Data.sgbv_total_survivors_50_plus}</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td>SGBV cases presenting within 72 hours</td>
|
|
429
|
+
<td>{moh711Data.sgbv_within_72_hours_0_9}</td>
|
|
430
|
+
<td>{moh711Data.sgbv_within_72_hours_10_17}</td>
|
|
431
|
+
<td>{moh711Data.sgbv_within_72_hours_18_49}</td>
|
|
432
|
+
<td>{moh711Data.sgbv_within_72_hours_50_above}</td>
|
|
433
|
+
</tr>
|
|
434
|
+
<tr>
|
|
435
|
+
<td>SGBV Eligible Survivors Initiated on PEP</td>
|
|
436
|
+
<td>{moh711Data.sgbv_initiated_on_pep_0_9}</td>
|
|
437
|
+
<td>{moh711Data.sgbv_initiated_on_pep_10_17}</td>
|
|
438
|
+
<td>{moh711Data.sgbv_initiated_on_pep_18_49}</td>
|
|
439
|
+
<td>{moh711Data.sgbv_initiated_on_pep_50_above}</td>
|
|
440
|
+
</tr>
|
|
441
|
+
<tr>
|
|
442
|
+
<td>SGBV Eligible Survivors Completed PEP</td>
|
|
443
|
+
<td>{moh711Data.sgbv_completed_pep_0_9}</td>
|
|
444
|
+
<td>{moh711Data.sgbv_completed_pep_10_17}</td>
|
|
445
|
+
<td>{moh711Data.sgbv_completed_pep_18_49}</td>
|
|
446
|
+
<td>{moh711Data.sgbv_completed_pep_50_above}</td>
|
|
447
|
+
</tr>
|
|
448
|
+
<tr>
|
|
449
|
+
<td>SGBV Rape survivors seroconverting 3 months after exposure</td>
|
|
450
|
+
<td>{moh711Data.sgbv_seroconverting_0_9}</td>
|
|
451
|
+
<td>{moh711Data.sgbv_seroconverting_10_17}</td>
|
|
452
|
+
<td>{moh711Data.sgbv_seroconverting_18_49}</td>
|
|
453
|
+
<td>{moh711Data.sgbv_seroconverting_50_above}</td>
|
|
454
|
+
</tr>
|
|
455
|
+
<tr>
|
|
456
|
+
<td>SGBV Survivors eligible for ECP</td>
|
|
457
|
+
<td>{moh711Data.sgbv_eligible_for_ecp_0_9}</td>
|
|
458
|
+
<td>{moh711Data.sgbv_eligible_for_ecp_10_17}</td>
|
|
459
|
+
<td>{moh711Data.sgbv_eligible_for_ecp_18_49}</td>
|
|
460
|
+
<td>{moh711Data.sgbv_eligible_for_ecp_50_above}</td>
|
|
461
|
+
</tr>
|
|
462
|
+
<tr>
|
|
463
|
+
<td>SGBV Survivors receiving ECP</td>
|
|
464
|
+
<td>{moh711Data.sgbv_receiving_ecp_0_9}</td>
|
|
465
|
+
<td>{moh711Data.sgbv_receiving_ecp_10_17}</td>
|
|
466
|
+
<td>{moh711Data.sgbv_receiving_ecp_18_49}</td>
|
|
467
|
+
<td>{moh711Data.sgbv_receiving_ecp_50_above}</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td>SGBV Rape/defilement survivors pregnant 4 weeks after exposure</td>
|
|
471
|
+
<td>{moh711Data.sgbv_pregnant_0_9}</td>
|
|
472
|
+
<td>{moh711Data.sgbv_pregnant_10_17}</td>
|
|
473
|
+
<td>{moh711Data.sgbv_pregnant_18_49}</td>
|
|
474
|
+
<td>{moh711Data.sgbv_pregnant_50_above}</td>
|
|
475
|
+
</tr>
|
|
476
|
+
<tr>
|
|
477
|
+
<td>SGBV RC(Reproductive Coercion)/IPV(Intimate Partner Violence) clients seen</td>
|
|
478
|
+
<td>{moh711Data.sgbv_rc_seen_0_9}</td>
|
|
479
|
+
<td>{moh711Data.sgbv_rc_seen_10_17}</td>
|
|
480
|
+
<td>{moh711Data.sgbv_rc_seen_18_49}</td>
|
|
481
|
+
<td>{moh711Data.sgbv_rc_seen_50_above}</td>
|
|
482
|
+
</tr>
|
|
483
|
+
<tr>
|
|
484
|
+
<td>SGBV Survivors with disability</td>
|
|
485
|
+
<td>{moh711Data.sgbv_with_disability_0_9}</td>
|
|
486
|
+
<td>{moh711Data.sgbv_with_disability_10_17}</td>
|
|
487
|
+
<td>{moh711Data.sgbv_with_disability_18_49}</td>
|
|
488
|
+
<td>{moh711Data.sgbv_with_disability_50_above}</td>
|
|
489
|
+
</tr>
|
|
490
|
+
</tbody>
|
|
491
|
+
</table>
|
|
492
|
+
</div>
|
|
493
|
+
</div>
|
|
494
|
+
<div className={styles.container}>
|
|
495
|
+
<p className={styles.title}>D. Family Planning</p>
|
|
496
|
+
<p className={styles.sectionTitle}>New clientsRe-visits</p>
|
|
497
|
+
<div className={styles.tableContainer}>
|
|
498
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
499
|
+
<thead>
|
|
500
|
+
<tr>
|
|
501
|
+
<th></th>
|
|
502
|
+
<th>New clients</th>
|
|
503
|
+
<th>Re-visits</th>
|
|
504
|
+
</tr>
|
|
505
|
+
</thead>
|
|
506
|
+
<tbody>
|
|
507
|
+
<tr>
|
|
508
|
+
<td>1st Ever Users of Contraceptive</td>
|
|
509
|
+
<td>{moh711Data.first_users_contraceptive_new}</td>
|
|
510
|
+
<td>{moh711Data.first_users_contraceptive_revisit}</td>
|
|
511
|
+
</tr>
|
|
512
|
+
<tr>
|
|
513
|
+
<td>Pills progestine only</td>
|
|
514
|
+
<td>{moh711Data.pills_progestine_new}</td>
|
|
515
|
+
<td>{moh711Data.pills_progestine_revisit}</td>
|
|
516
|
+
</tr>
|
|
517
|
+
<tr>
|
|
518
|
+
<td>Pills Combined oral contraceptive</td>
|
|
519
|
+
<td>{moh711Data.pills_combined_oral_contraceptive_new}</td>
|
|
520
|
+
<td>{moh711Data.pills_combined_oral_contraceptive_revisit}</td>
|
|
521
|
+
</tr>
|
|
522
|
+
<tr>
|
|
523
|
+
<td>Emergency contraceptive pill</td>
|
|
524
|
+
<td>{moh711Data.emergency_contraceptive_pill_new}</td>
|
|
525
|
+
<td>{moh711Data.emergency_contraceptive_pill_revisit}</td>
|
|
526
|
+
</tr>
|
|
527
|
+
<tr>
|
|
528
|
+
<td>FP Injections DMPA- IM</td>
|
|
529
|
+
<td>{moh711Data.fp_injections_dmpa_im}</td>
|
|
530
|
+
<td></td>
|
|
531
|
+
</tr>
|
|
532
|
+
<tr>
|
|
533
|
+
<td>FP Injections DMPA- SC</td>
|
|
534
|
+
<td>{moh711Data.fp_injections_dmpa_sc}</td>
|
|
535
|
+
<td></td>
|
|
536
|
+
</tr>
|
|
537
|
+
<tr>
|
|
538
|
+
<td>Client receiving Male condoms</td>
|
|
539
|
+
<td>{moh711Data.male_condoms_new}</td>
|
|
540
|
+
<td>{moh711Data.male_condoms_revisit}</td>
|
|
541
|
+
</tr>
|
|
542
|
+
<tr>
|
|
543
|
+
<td>Client receiving Female condoms</td>
|
|
544
|
+
<td>{moh711Data.female_condoms_new}</td>
|
|
545
|
+
<td>{moh711Data.female_condoms_revisit}</td>
|
|
546
|
+
</tr>
|
|
547
|
+
<tr>
|
|
548
|
+
<td>Client received (Both Male and Female condoms)</td>
|
|
549
|
+
<td>{moh711Data.male_and_female_condoms_new}</td>
|
|
550
|
+
<td>{moh711Data.male_and_female_condoms_revisit}</td>
|
|
551
|
+
</tr>
|
|
552
|
+
<tr>
|
|
553
|
+
<td>Clients Counselled Natural Family Planning</td>
|
|
554
|
+
<td>{moh711Data.counselled_for_natural_family_planning_new}</td>
|
|
555
|
+
<td>{moh711Data.counselled_for_natural_family_planning_revisit}</td>
|
|
556
|
+
</tr>
|
|
557
|
+
<tr>
|
|
558
|
+
<td>Clients given cycle beads</td>
|
|
559
|
+
<td>{moh711Data.cycle_beads_new}</td>
|
|
560
|
+
<td>{moh711Data.cycle_beads_revisit}</td>
|
|
561
|
+
</tr>
|
|
562
|
+
</tbody>
|
|
563
|
+
</table>
|
|
564
|
+
</div>
|
|
565
|
+
</div>
|
|
566
|
+
<div className={styles.container}>
|
|
567
|
+
<p className={styles.title}>D1. Long Acting FP Methods</p>
|
|
568
|
+
<p className={styles.sectionTitle}>1st Time InsertionRe-insertion</p>
|
|
569
|
+
<div className={styles.tableContainer}>
|
|
570
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
571
|
+
<thead>
|
|
572
|
+
<tr>
|
|
573
|
+
<th></th>
|
|
574
|
+
<th>1st Time Insertion</th>
|
|
575
|
+
<th>Re-insertion</th>
|
|
576
|
+
</tr>
|
|
577
|
+
</thead>
|
|
578
|
+
<tbody>
|
|
579
|
+
<tr>
|
|
580
|
+
<td>Implants insertion 1 Rod</td>
|
|
581
|
+
<td></td>
|
|
582
|
+
<td></td>
|
|
583
|
+
</tr>
|
|
584
|
+
<tr>
|
|
585
|
+
<td>Implants inerstion 2 Rod</td>
|
|
586
|
+
<td></td>
|
|
587
|
+
<td></td>
|
|
588
|
+
</tr>
|
|
589
|
+
<tr>
|
|
590
|
+
<td>IUCD Insertion Hormonal</td>
|
|
591
|
+
<td>{moh711Data.iucd_hormonal}</td>
|
|
592
|
+
<td></td>
|
|
593
|
+
</tr>
|
|
594
|
+
<tr>
|
|
595
|
+
<td>IUCD Insertion Non Hormonal</td>
|
|
596
|
+
<td>{moh711Data.iucd_non_hormonal}</td>
|
|
597
|
+
<td></td>
|
|
598
|
+
</tr>
|
|
599
|
+
<tr>
|
|
600
|
+
<td>Voluntary surgical contraception BTL</td>
|
|
601
|
+
<td>{moh711Data.surgical_contraception_btl}</td>
|
|
602
|
+
<td></td>
|
|
603
|
+
</tr>
|
|
604
|
+
<tr>
|
|
605
|
+
<td>Voluntaru Surgical Contraception Vasectomy</td>
|
|
606
|
+
<td>{moh711Data.vasectomy} </td>
|
|
607
|
+
<td></td>
|
|
608
|
+
</tr>
|
|
609
|
+
</tbody>
|
|
610
|
+
</table>
|
|
611
|
+
</div>
|
|
612
|
+
</div>
|
|
613
|
+
<div className={styles.container}>
|
|
614
|
+
<p className={styles.title}>D2. FP Removals</p>
|
|
615
|
+
<p className={styles.sectionTitle}>default</p>
|
|
616
|
+
<div className={styles.tableContainer}>
|
|
617
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
618
|
+
<thead>
|
|
619
|
+
<tr>
|
|
620
|
+
<th></th>
|
|
621
|
+
<th>Value</th>
|
|
622
|
+
</tr>
|
|
623
|
+
</thead>
|
|
624
|
+
<tbody>
|
|
625
|
+
<tr>
|
|
626
|
+
<td>IUCD Removals</td>
|
|
627
|
+
<td>{moh711Data.iucd_removals}</td>
|
|
628
|
+
</tr>
|
|
629
|
+
<tr>
|
|
630
|
+
<td>Implants Removal</td>
|
|
631
|
+
<td>{moh711Data.implants_removal}</td>
|
|
632
|
+
</tr>
|
|
633
|
+
</tbody>
|
|
634
|
+
</table>
|
|
635
|
+
</div>
|
|
636
|
+
</div>
|
|
637
|
+
<div className={styles.container}>
|
|
638
|
+
<p className={styles.title}>D3. Clients Receiving All FP Services</p>
|
|
639
|
+
<p className={styles.sectionTitle}>New clientsRe-visits</p>
|
|
640
|
+
<div className={styles.tableContainer}>
|
|
641
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
642
|
+
<thead>
|
|
643
|
+
<tr>
|
|
644
|
+
<td></td>
|
|
645
|
+
<th>New clients</th>
|
|
646
|
+
<th>Re-visits</th>
|
|
647
|
+
</tr>
|
|
648
|
+
</thead>
|
|
649
|
+
<tbody>
|
|
650
|
+
<tr>
|
|
651
|
+
<td>Adolescent 10-14 yrs Receiving FP Services</td>
|
|
652
|
+
<td>{moh711Data.fp_adolescent_10_14_new}</td>
|
|
653
|
+
<td>{moh711Data.fp_adolescent_10_14_revisit}</td>
|
|
654
|
+
</tr>
|
|
655
|
+
<tr>
|
|
656
|
+
<td>Adolescent 15-19 Yrs Receiving FP Services</td>
|
|
657
|
+
<td>{moh711Data.fp_adolescent_15_19_new}</td>
|
|
658
|
+
<td>{moh711Data.fp_adolescent_15_19_revisit}</td>
|
|
659
|
+
</tr>
|
|
660
|
+
<tr>
|
|
661
|
+
<td>Adolescent 20-24 Yrs Receiving FP Services</td>
|
|
662
|
+
<td>{moh711Data.fp_adolescent_20_24_new}</td>
|
|
663
|
+
<td>{moh711Data.fp_adolescent_20_24_revisit}</td>
|
|
664
|
+
</tr>
|
|
665
|
+
<tr>
|
|
666
|
+
<td>Adults 25+ receiving FP Services</td>
|
|
667
|
+
<td>{moh711Data.fp_adolescent_25_plus_new}</td>
|
|
668
|
+
<td>{moh711Data.fp_adolescent_25_plus_revisit}</td>
|
|
669
|
+
</tr>
|
|
670
|
+
<tr>
|
|
671
|
+
<td>Post paturm FP within 48 Hours</td>
|
|
672
|
+
<td>{moh711Data.post_partum_fp_48_hours_new}</td>
|
|
673
|
+
<td>{moh711Data.post_partum_fp_48_hours_revisit}</td>
|
|
674
|
+
</tr>
|
|
675
|
+
<tr>
|
|
676
|
+
<td>Post partum FP 4weeks to 6 weeks</td>
|
|
677
|
+
<td>{moh711Data.post_partum_fp_4_6_weeks_new}</td>
|
|
678
|
+
<td>{moh711Data.post_partum_fp_4_6_weeks_revisit}</td>
|
|
679
|
+
</tr>
|
|
680
|
+
<tr>
|
|
681
|
+
<td>Clients receiving post abortion FP</td>
|
|
682
|
+
<td>{moh711Data.post_abortion_fp_new}</td>
|
|
683
|
+
<td>{moh711Data.post_abortion_fp_revisit}</td>
|
|
684
|
+
</tr>
|
|
685
|
+
</tbody>
|
|
686
|
+
</table>
|
|
687
|
+
</div>
|
|
688
|
+
</div>
|
|
689
|
+
<div className={styles.container}>
|
|
690
|
+
<p className={styles.title}>E. PAC Services</p>
|
|
691
|
+
<p className={styles.sectionTitle}>default</p>
|
|
692
|
+
<div className={styles.tableContainer}>
|
|
693
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
694
|
+
<thead>
|
|
695
|
+
<tr>
|
|
696
|
+
<td></td>
|
|
697
|
+
<th>Value</th>
|
|
698
|
+
</tr>
|
|
699
|
+
</thead>
|
|
700
|
+
<tbody>
|
|
701
|
+
<tr>
|
|
702
|
+
<td>Adolescent (10-19yrs) Receiving PAC Services</td>
|
|
703
|
+
<td></td>
|
|
704
|
+
</tr>
|
|
705
|
+
<tr>
|
|
706
|
+
<td>Youth 20-24 yrs receiving PAC services</td>
|
|
707
|
+
<td></td>
|
|
708
|
+
</tr>
|
|
709
|
+
<tr>
|
|
710
|
+
<td>Receiving PAC 25yrs plus</td>
|
|
711
|
+
<td></td>
|
|
712
|
+
</tr>
|
|
713
|
+
</tbody>
|
|
714
|
+
</table>
|
|
715
|
+
</div>
|
|
716
|
+
</div>
|
|
717
|
+
<div className={styles.container}>
|
|
718
|
+
<p className={styles.title}>F. Child Health and Nutrition Information Systsem (CHANIS)</p>
|
|
719
|
+
<p className={styles.sectionTitle}>Male Female</p>
|
|
720
|
+
<div className={styles.tableContainer}>
|
|
721
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
722
|
+
<thead>
|
|
723
|
+
<tr>
|
|
724
|
+
<td></td>
|
|
725
|
+
<th>Male</th>
|
|
726
|
+
<th>Female</th>
|
|
727
|
+
</tr>
|
|
728
|
+
</thead>
|
|
729
|
+
<tbody>
|
|
730
|
+
<tr>
|
|
731
|
+
<td>Normal Weight for Age 0-<6 months</td>
|
|
732
|
+
<td>{moh711Data.normal_weight_0_6_months_male}</td>
|
|
733
|
+
<td>{moh711Data.normal_weight_0_6_months_female}</td>
|
|
734
|
+
</tr>
|
|
735
|
+
<tr>
|
|
736
|
+
<td>Underweight 0<6 months</td>
|
|
737
|
+
<td>{moh711Data.underweight_0_6_months_male}</td>
|
|
738
|
+
<td>{moh711Data.underweight_0_6_months_female}</td>
|
|
739
|
+
</tr>
|
|
740
|
+
<tr>
|
|
741
|
+
<td>Severely underweight 0<6 months</td>
|
|
742
|
+
<td>{moh711Data.severely_underweight_0_6_months_male}</td>
|
|
743
|
+
<td>{moh711Data.severely_underweight_0_6_months_female}</td>
|
|
744
|
+
</tr>
|
|
745
|
+
<tr>
|
|
746
|
+
<td>Overweight 0<6 months</td>
|
|
747
|
+
<td>{moh711Data.overweight_0_6_months_male}</td>
|
|
748
|
+
<td>{moh711Data.overweight_0_6_months_female}</td>
|
|
749
|
+
</tr>
|
|
750
|
+
<tr>
|
|
751
|
+
<td>Obese 0<6 months</td>
|
|
752
|
+
<td>{moh711Data.obese_0_6_months_male}</td>
|
|
753
|
+
<td>{moh711Data.obese_0_6_months_female}</td>
|
|
754
|
+
</tr>
|
|
755
|
+
<tr>
|
|
756
|
+
<td>Normal Weight for Age 6-23 months</td>
|
|
757
|
+
<td>{moh711Data.normal_weight_6_23_months_male}</td>
|
|
758
|
+
<td>{moh711Data.normal_weight_6_23_months_female}</td>
|
|
759
|
+
</tr>
|
|
760
|
+
<tr>
|
|
761
|
+
<td>Underweight 6-23 months</td>
|
|
762
|
+
<td>{moh711Data.underweight_6_23_months_male}</td>
|
|
763
|
+
<td>{moh711Data.underweight_6_23_months_female}</td>
|
|
764
|
+
</tr>
|
|
765
|
+
<tr>
|
|
766
|
+
<td>Severely underweight 6-23 months</td>
|
|
767
|
+
<td>{moh711Data.severely_underweight_6_23_months_male}</td>
|
|
768
|
+
<td>{moh711Data.severely_underweight_6_23_months_female}</td>
|
|
769
|
+
</tr>
|
|
770
|
+
<tr>
|
|
771
|
+
<td>Overweight 6-23 months</td>
|
|
772
|
+
<td>{moh711Data.overweight_6_23_months_male}</td>
|
|
773
|
+
<td>{moh711Data.overweight_6_23_months_female}</td>
|
|
774
|
+
</tr>
|
|
775
|
+
<tr>
|
|
776
|
+
<td>Obese 6-23 months</td>
|
|
777
|
+
<td>{moh711Data.obese_6_23_months_male}</td>
|
|
778
|
+
<td>{moh711Data.obese_6_23_months_female}</td>
|
|
779
|
+
</tr>
|
|
780
|
+
<tr>
|
|
781
|
+
<td>Normal Weight for Age 24-59 Months</td>
|
|
782
|
+
<td>{moh711Data.normal_weight_24_59_months_male}</td>
|
|
783
|
+
<td>{moh711Data.normal_weight_24_59_months_female}</td>
|
|
784
|
+
</tr>
|
|
785
|
+
<tr>
|
|
786
|
+
<td>Underweight 24-59 Months</td>
|
|
787
|
+
<td>{moh711Data.underweight_24_59_months_male}</td>
|
|
788
|
+
<td>{moh711Data.underweight_24_59_months_female}</td>
|
|
789
|
+
</tr>
|
|
790
|
+
<tr>
|
|
791
|
+
<td>Severely underweight 24-59 months</td>
|
|
792
|
+
<td>{moh711Data.severely_underweight_24_59_months_male}</td>
|
|
793
|
+
<td>{moh711Data.severely_underweight_24_59_months_female}</td>
|
|
794
|
+
</tr>
|
|
795
|
+
<tr>
|
|
796
|
+
<td>Overweight 24-59 months</td>
|
|
797
|
+
<td>{moh711Data.overweight_24_59_months_male}</td>
|
|
798
|
+
<td>{moh711Data.overweight_24_59_months_female}</td>
|
|
799
|
+
</tr>
|
|
800
|
+
<tr>
|
|
801
|
+
<td>Obese 24-59 months</td>
|
|
802
|
+
<td>{moh711Data.obese_24_59_months_male}</td>
|
|
803
|
+
<td>{moh711Data.obese_24_59_months_female}</td>
|
|
804
|
+
</tr>
|
|
805
|
+
<tr>
|
|
806
|
+
<td>MUAC 6-59 months Normal (Green)</td>
|
|
807
|
+
<td>{moh711Data.muac_6_59_months_normal_male}</td>
|
|
808
|
+
<td>{moh711Data.muac_6_59_months_normal_female}</td>
|
|
809
|
+
</tr>
|
|
810
|
+
<tr>
|
|
811
|
+
<td>MUAC 6-59 months Moderate (Yellow)</td>
|
|
812
|
+
<td>{moh711Data.muac_6_59_months_moderate_male}</td>
|
|
813
|
+
<td>{moh711Data.muac_6_59_months_moderate_female}</td>
|
|
814
|
+
</tr>
|
|
815
|
+
<tr>
|
|
816
|
+
<td>MUAC 6-59 months Severe (Red)</td>
|
|
817
|
+
<td>{moh711Data.muac_6_59_months_severe_male}</td>
|
|
818
|
+
<td>{moh711Data.muac_6_59_months_severe_female}</td>
|
|
819
|
+
</tr>
|
|
820
|
+
<tr>
|
|
821
|
+
<td>0<6 months Normal Height for Age</td>
|
|
822
|
+
<td>{moh711Data.height_for_age_0_6_months_normal_male}</td>
|
|
823
|
+
<td>{moh711Data.height_for_age_0_6_months_normal_female}</td>
|
|
824
|
+
</tr>
|
|
825
|
+
<tr>
|
|
826
|
+
<td>0<6 months Stunted</td>
|
|
827
|
+
<td>{moh711Data.stunted_0_6_months_male}</td>
|
|
828
|
+
<td>{moh711Data.stunted_0_6_months_female}</td>
|
|
829
|
+
</tr>
|
|
830
|
+
<tr>
|
|
831
|
+
<td>0<6 months Severely Stunted</td>
|
|
832
|
+
<td>{moh711Data.severely_stunted_0_6_months_male}</td>
|
|
833
|
+
<td>{moh711Data.severely_stunted_0_6_months_female}</td>
|
|
834
|
+
</tr>
|
|
835
|
+
<tr>
|
|
836
|
+
<td>6-23 months Normal Height for Age</td>
|
|
837
|
+
<td>{moh711Data.normal_height_for_age_6_23_months_male}</td>
|
|
838
|
+
<td>{moh711Data.normal_height_for_age_6_23_months_female}</td>
|
|
839
|
+
</tr>
|
|
840
|
+
<tr>
|
|
841
|
+
<td>6-23 months Stunted</td>
|
|
842
|
+
<td>{moh711Data.stunted_6_23_months_male}</td>
|
|
843
|
+
<td>{moh711Data.stunted_6_23_months_female}</td>
|
|
844
|
+
</tr>
|
|
845
|
+
<tr>
|
|
846
|
+
<td>6-23 months Severely Stunted</td>
|
|
847
|
+
<td>{moh711Data.severely_stunted_6_23_months_male}</td>
|
|
848
|
+
<td>{moh711Data.severely_stunted_6_23_months_female}</td>
|
|
849
|
+
</tr>
|
|
850
|
+
<tr>
|
|
851
|
+
<td>24-59 months Normal Height for Age</td>
|
|
852
|
+
<td>{moh711Data.normal_height_for_age_24_59_months_male}</td>
|
|
853
|
+
<td>{moh711Data.normal_height_for_age_24_59_months_female}</td>
|
|
854
|
+
</tr>
|
|
855
|
+
<tr>
|
|
856
|
+
<td>24-59 months Stunted</td>
|
|
857
|
+
<td>{moh711Data.stunted_24_59_months_male}</td>
|
|
858
|
+
<td>{moh711Data.stunted_24_59_months_female}</td>
|
|
859
|
+
</tr>
|
|
860
|
+
<tr>
|
|
861
|
+
<td>24-59 months Severely Stunted</td>
|
|
862
|
+
<td>{moh711Data.severely_stunted_24_59_months_male}</td>
|
|
863
|
+
<td>{moh711Data.severely_stunted_24_59_months_female}</td>
|
|
864
|
+
</tr>
|
|
865
|
+
<tr>
|
|
866
|
+
<td>New Visits of 0-59 Month Attending CWC</td>
|
|
867
|
+
<td>{moh711Data.new_visits_0_59_months_attending_cwc_male}</td>
|
|
868
|
+
<td>{moh711Data.new_visits_0_59_months_attending_cwc_female}</td>
|
|
869
|
+
</tr>
|
|
870
|
+
<tr>
|
|
871
|
+
<td>Kwashiorkor (0-59 Months)</td>
|
|
872
|
+
<td>{moh711Data.kwashiokor_0_59_months_male}</td>
|
|
873
|
+
<td>{moh711Data.kwashiokor_0_59_months_female}</td>
|
|
874
|
+
</tr>
|
|
875
|
+
<tr>
|
|
876
|
+
<td>Marasmus (0-59 Months)</td>
|
|
877
|
+
<td>{moh711Data.marasmus_0_59_months_male}</td>
|
|
878
|
+
<td>{moh711Data.marasmus_0_59_months_female}</td>
|
|
879
|
+
</tr>
|
|
880
|
+
<tr>
|
|
881
|
+
<td>Faltering Growth (0-59 Months)</td>
|
|
882
|
+
<td>{moh711Data.faltering_growth_0_59_months_male}</td>
|
|
883
|
+
<td>{moh711Data.faltering_growth_0_59_months_female}</td>
|
|
884
|
+
</tr>
|
|
885
|
+
<tr>
|
|
886
|
+
<td>Exclusive breastfeeding 0< months</td>
|
|
887
|
+
<td>{moh711Data.exclusive_breastfeeding_0_6_months_male}</td>
|
|
888
|
+
<td>{moh711Data.exclusive_breastfeeding_0_6_months_female}</td>
|
|
889
|
+
</tr>
|
|
890
|
+
<tr>
|
|
891
|
+
<td>De-wormed 12-59 Months</td>
|
|
892
|
+
<td>{moh711Data.dewormed_12_59_months_male}</td>
|
|
893
|
+
<td>{moh711Data.dewormed_12_59_months_female}</td>
|
|
894
|
+
</tr>
|
|
895
|
+
<tr>
|
|
896
|
+
<td>Children aged 6-23 months supplemented with MNPS</td>
|
|
897
|
+
<td>{moh711Data.mnps_supplimentation_6_23_months_male}</td>
|
|
898
|
+
<td>{moh711Data.mnps_supplimentation_6_23_months_female}</td>
|
|
899
|
+
</tr>
|
|
900
|
+
</tbody>
|
|
901
|
+
</table>
|
|
902
|
+
</div>
|
|
903
|
+
</div>
|
|
904
|
+
<div className={styles.container}>
|
|
905
|
+
<p className={styles.title}>F1. CHANIS Under Five Years</p>
|
|
906
|
+
<p className={styles.sectionTitle}>Male Female</p>
|
|
907
|
+
<div className={styles.tableContainer}>
|
|
908
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
909
|
+
<thead>
|
|
910
|
+
<tr>
|
|
911
|
+
<td></td>
|
|
912
|
+
<th>Male</th>
|
|
913
|
+
<th>Female</th>
|
|
914
|
+
</tr>
|
|
915
|
+
</thead>
|
|
916
|
+
<tbody>
|
|
917
|
+
<tr>
|
|
918
|
+
<td>No. of children who have diarrhoea with severe dehydration</td>
|
|
919
|
+
<td></td>
|
|
920
|
+
<td></td>
|
|
921
|
+
</tr>
|
|
922
|
+
<tr>
|
|
923
|
+
<td>No. of children who have diarrhoea with some dehydration</td>
|
|
924
|
+
<td></td>
|
|
925
|
+
<td></td>
|
|
926
|
+
</tr>
|
|
927
|
+
<tr>
|
|
928
|
+
<td>No. of children who have diarrhoea with no dehydration</td>
|
|
929
|
+
<td></td>
|
|
930
|
+
<td></td>
|
|
931
|
+
</tr>
|
|
932
|
+
<tr>
|
|
933
|
+
<td>Children under five years with diarrhoea treated with ORS and Zinc (Co-pack)</td>
|
|
934
|
+
<td></td>
|
|
935
|
+
<td></td>
|
|
936
|
+
</tr>
|
|
937
|
+
<tr>
|
|
938
|
+
<td>Children under five years presenting with pneumonia treated wiht antibiotics (Amoxycillin (DT))</td>
|
|
939
|
+
<td></td>
|
|
940
|
+
<td></td>
|
|
941
|
+
</tr>
|
|
942
|
+
<tr>
|
|
943
|
+
<td>Children under five deaths</td>
|
|
944
|
+
<td></td>
|
|
945
|
+
<td></td>
|
|
946
|
+
</tr>
|
|
947
|
+
<tr>
|
|
948
|
+
<td>Under 5 Yers with any Kind of Disability</td>
|
|
949
|
+
<td></td>
|
|
950
|
+
<td></td>
|
|
951
|
+
</tr>
|
|
952
|
+
<tr>
|
|
953
|
+
<td>Children under five years with delayed developmental milestones</td>
|
|
954
|
+
<td></td>
|
|
955
|
+
<td></td>
|
|
956
|
+
</tr>
|
|
957
|
+
</tbody>
|
|
958
|
+
</table>
|
|
959
|
+
</div>
|
|
960
|
+
</div>
|
|
961
|
+
<div className={styles.container}>
|
|
962
|
+
<p className={styles.title}>G. Cervical cancer screening</p>
|
|
963
|
+
<p className={styles.sectionTitle}><25 yrs25-49 Years50 Yrs and above</p>
|
|
964
|
+
<div className={styles.tableContainer}>
|
|
965
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
966
|
+
<thead>
|
|
967
|
+
<tr>
|
|
968
|
+
<td></td>
|
|
969
|
+
<th><25 yrs</th>
|
|
970
|
+
<th>25-49 Years</th>
|
|
971
|
+
<th>50 Yrs and above</th>
|
|
972
|
+
</tr>
|
|
973
|
+
</thead>
|
|
974
|
+
<tbody>
|
|
975
|
+
<tr>
|
|
976
|
+
<td>Clients screen using VIA/VILI/HPV VILI/HPV</td>
|
|
977
|
+
<td>{moh711Data.via_villi_hpv_less_25}</td>
|
|
978
|
+
<td>{moh711Data.via_villi_hpv_25_49}</td>
|
|
979
|
+
<td>{moh711Data.via_villi_hpv_50_above}</td>
|
|
980
|
+
</tr>
|
|
981
|
+
<tr>
|
|
982
|
+
<td>Clients screened using Pap smear</td>
|
|
983
|
+
<td>{moh711Data.pap_smear_less_25}</td>
|
|
984
|
+
<td>{moh711Data.pap_smear_25_49}</td>
|
|
985
|
+
<td>{moh711Data.pap_smear_50_above}</td>
|
|
986
|
+
</tr>
|
|
987
|
+
<tr>
|
|
988
|
+
<td>Clients screend for Cervical Cancer using HPV test</td>
|
|
989
|
+
<td>{moh711Data.hpv_test_less_25}</td>
|
|
990
|
+
<td>{moh711Data.hpv_test_25_49}</td>
|
|
991
|
+
<td>{moh711Data.hpv_test_50_above}</td>
|
|
992
|
+
</tr>
|
|
993
|
+
<tr>
|
|
994
|
+
<td>Cevical cancer clients with Positive VIA/VILI results</td>
|
|
995
|
+
<td>{moh711Data.positive_via_villi_less_25}</td>
|
|
996
|
+
<td>{moh711Data.positive_via_villi_25_49}</td>
|
|
997
|
+
<td>{moh711Data.positive_via_villi_50_above}</td>
|
|
998
|
+
</tr>
|
|
999
|
+
<tr>
|
|
1000
|
+
<td>Cervical cancer clients with Positive Cytology result</td>
|
|
1001
|
+
<td>{moh711Data.positive_cytology_less_25}</td>
|
|
1002
|
+
<td>{moh711Data.positive_cytology_25_49}</td>
|
|
1003
|
+
<td>{moh711Data.positive_cytology_50_above}</td>
|
|
1004
|
+
</tr>
|
|
1005
|
+
<tr>
|
|
1006
|
+
<td>Cervical cancer clients with Positive HPV results</td>
|
|
1007
|
+
<td>{moh711Data.positive_hpv_less_25}</td>
|
|
1008
|
+
<td>{moh711Data.positive_hpv_25_49}</td>
|
|
1009
|
+
<td>{moh711Data.positive_hpv_50_above}</td>
|
|
1010
|
+
</tr>
|
|
1011
|
+
<tr>
|
|
1012
|
+
<td>Clients with suspicious cancer lessions</td>
|
|
1013
|
+
<td>{moh711Data.suspicious_cancer_lessions_less_25}</td>
|
|
1014
|
+
<td>{moh711Data.suspicious_cancer_lessions_25_49}</td>
|
|
1015
|
+
<td>{moh711Data.suspicious_cancer_lessions_50_above}</td>
|
|
1016
|
+
</tr>
|
|
1017
|
+
<tr>
|
|
1018
|
+
<td>Cervical cancer clients treated using Cryotherapy</td>
|
|
1019
|
+
<td>{moh711Data.cryotherapy_treatment_less_25}</td>
|
|
1020
|
+
<td>{moh711Data.cryotherapy_treatment_25_49}</td>
|
|
1021
|
+
<td>{moh711Data.cryotherapy_treatment_50_above}</td>
|
|
1022
|
+
</tr>
|
|
1023
|
+
<tr>
|
|
1024
|
+
<td>Cervical cancer treated using LEEP</td>
|
|
1025
|
+
<td>{moh711Data.leep_treatment_less_25}</td>
|
|
1026
|
+
<td>{moh711Data.leep_treatment_25_49}</td>
|
|
1027
|
+
<td>{moh711Data.leep_treatment_50_above}</td>
|
|
1028
|
+
</tr>
|
|
1029
|
+
<tr>
|
|
1030
|
+
<td>HIV positive clients screened for cervical cancer</td>
|
|
1031
|
+
<td>{moh711Data.hiv_positive_screened_cervical_cancer_less_25}</td>
|
|
1032
|
+
<td>{moh711Data.hiv_positive_screened_cervical_cancer_25_49}</td>
|
|
1033
|
+
<td>{moh711Data.hiv_positive_screened_cervical_cancer_50_above}</td>
|
|
1034
|
+
</tr>
|
|
1035
|
+
</tbody>
|
|
1036
|
+
</table>
|
|
1037
|
+
</div>
|
|
1038
|
+
</div>
|
|
1039
|
+
<div className={styles.container}>
|
|
1040
|
+
<p className={styles.title}>H. Post Natal Care (PNC)</p>
|
|
1041
|
+
<p className={styles.sectionTitle}>default</p>
|
|
1042
|
+
<div className={styles.tableContainer}>
|
|
1043
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
1044
|
+
<thead>
|
|
1045
|
+
<tr>
|
|
1046
|
+
<td></td>
|
|
1047
|
+
<th>Value</th>
|
|
1048
|
+
</tr>
|
|
1049
|
+
</thead>
|
|
1050
|
+
<tbody>
|
|
1051
|
+
<tr>
|
|
1052
|
+
<td>PNC Clients New</td>
|
|
1053
|
+
<td>{moh711Data.pnc_new_clients}</td>
|
|
1054
|
+
</tr>
|
|
1055
|
+
<tr>
|
|
1056
|
+
<td>PNC Clients revisits</td>
|
|
1057
|
+
<td>{moh711Data.pnc_revisit_clients}</td>
|
|
1058
|
+
</tr>
|
|
1059
|
+
<tr>
|
|
1060
|
+
<td>PNC Women counselled on Post Partum FP</td>
|
|
1061
|
+
<td>{moh711Data.women_couselled_on_post_partum_fp}</td>
|
|
1062
|
+
</tr>
|
|
1063
|
+
<tr>
|
|
1064
|
+
<td>PNC Clients who received Post Partum FP</td>
|
|
1065
|
+
<td>{moh711Data.women_received_post_partum_fp}</td>
|
|
1066
|
+
</tr>
|
|
1067
|
+
<tr>
|
|
1068
|
+
<td>Mothers receiving Postpartum Care within 48 hours</td>
|
|
1069
|
+
<td>{moh711Data.mothers_post_partum_care_48_hours}</td>
|
|
1070
|
+
</tr>
|
|
1071
|
+
<tr>
|
|
1072
|
+
<td>Mothers receiving Postpartum Care 3 days to 6 weeks</td>
|
|
1073
|
+
<td>{moh711Data.mothers_post_partum_care_3_6_weeks}</td>
|
|
1074
|
+
</tr>
|
|
1075
|
+
<tr>
|
|
1076
|
+
<td>Mothers receiving Postpartum Care after 6 weeks</td>
|
|
1077
|
+
<td>{moh711Data.mothers_post_partum_care_after_6_weeks}</td>
|
|
1078
|
+
</tr>
|
|
1079
|
+
<tr>
|
|
1080
|
+
<td>Infants receiving Postpartum care within 48 hours</td>
|
|
1081
|
+
<td>{moh711Data.infants_post_partum_care_48_hours}</td>
|
|
1082
|
+
</tr>
|
|
1083
|
+
<tr>
|
|
1084
|
+
<td>Infants receiving Postpartum care Between 3 days to 6 weeks</td>
|
|
1085
|
+
<td>{moh711Data.infants_post_partum_care_3_6_weeks}</td>
|
|
1086
|
+
</tr>
|
|
1087
|
+
<tr>
|
|
1088
|
+
<td>Infants receiving Postpartum care after 6 weeks</td>
|
|
1089
|
+
<td>{moh711Data.infants_post_partum_care_after_6_weeks}</td>
|
|
1090
|
+
</tr>
|
|
1091
|
+
<tr>
|
|
1092
|
+
<td>PNC fistula cases</td>
|
|
1093
|
+
<td>{moh711Data.fistula_cases}</td>
|
|
1094
|
+
</tr>
|
|
1095
|
+
<tr>
|
|
1096
|
+
<td>PNC referrals From Community Unit</td>
|
|
1097
|
+
<td>{moh711Data.referrals_from_community}</td>
|
|
1098
|
+
</tr>
|
|
1099
|
+
</tbody>
|
|
1100
|
+
</table>
|
|
1101
|
+
</div>
|
|
1102
|
+
</div>
|
|
1103
|
+
<div className={styles.container}>
|
|
1104
|
+
<p className={styles.title}>I. Rehabilitation Services</p>
|
|
1105
|
+
<p className={styles.sectionTitle}>default</p>
|
|
1106
|
+
<div className={styles.tableContainer}>
|
|
1107
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
1108
|
+
<thead>
|
|
1109
|
+
<tr>
|
|
1110
|
+
<td></td>
|
|
1111
|
+
<th>Value</th>
|
|
1112
|
+
</tr>
|
|
1113
|
+
</thead>
|
|
1114
|
+
<tbody>
|
|
1115
|
+
<tr>
|
|
1116
|
+
<td>Rehab clients assessed</td>
|
|
1117
|
+
<td></td>
|
|
1118
|
+
</tr>
|
|
1119
|
+
<tr>
|
|
1120
|
+
<td>Rehab clients treated</td>
|
|
1121
|
+
<td></td>
|
|
1122
|
+
</tr>
|
|
1123
|
+
<tr>
|
|
1124
|
+
<td>Number Rehabilitated</td>
|
|
1125
|
+
<td></td>
|
|
1126
|
+
</tr>
|
|
1127
|
+
<tr>
|
|
1128
|
+
<td>Rehab clients referred for further interventions</td>
|
|
1129
|
+
<td></td>
|
|
1130
|
+
</tr>
|
|
1131
|
+
<tr>
|
|
1132
|
+
<td>Rehab clients integrated in the community</td>
|
|
1133
|
+
<td></td>
|
|
1134
|
+
</tr>
|
|
1135
|
+
</tbody>
|
|
1136
|
+
</table>
|
|
1137
|
+
</div>
|
|
1138
|
+
</div>
|
|
1139
|
+
<div className={styles.container}>
|
|
1140
|
+
<p className={styles.title}>J. Medical Social Work/ Mental Health</p>
|
|
1141
|
+
<p className={styles.sectionTitle}>default</p>
|
|
1142
|
+
<div className={styles.tableContainer}>
|
|
1143
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
1144
|
+
<thead>
|
|
1145
|
+
<tr>
|
|
1146
|
+
<td></td>
|
|
1147
|
+
<th>Value</th>
|
|
1148
|
+
</tr>
|
|
1149
|
+
</thead>
|
|
1150
|
+
<tbody>
|
|
1151
|
+
<tr>
|
|
1152
|
+
<td>Psycho-Social Counselling</td>
|
|
1153
|
+
<td>{moh711Data.psycho_social_counselling}</td>
|
|
1154
|
+
</tr>
|
|
1155
|
+
<tr>
|
|
1156
|
+
<td>Alcohol and Drug Abuse</td>
|
|
1157
|
+
<td>{moh711Data.alcohol_and_drug_abuse}</td>
|
|
1158
|
+
</tr>
|
|
1159
|
+
<tr>
|
|
1160
|
+
<td>Mental illness</td>
|
|
1161
|
+
<td>{moh711Data.mental_illness}</td>
|
|
1162
|
+
</tr>
|
|
1163
|
+
<tr>
|
|
1164
|
+
<td>Adolescent Issues</td>
|
|
1165
|
+
<td>{moh711Data.adolescent_issues}</td>
|
|
1166
|
+
</tr>
|
|
1167
|
+
<tr>
|
|
1168
|
+
<td>Psycho-Social Assessment (psycho, social and economic)</td>
|
|
1169
|
+
<td>{moh711Data.psycho_social_economic_assessment}</td>
|
|
1170
|
+
</tr>
|
|
1171
|
+
<tr>
|
|
1172
|
+
<td>Social investigations (Home visits / Follow ups)</td>
|
|
1173
|
+
<td>{moh711Data.social_investigations}</td>
|
|
1174
|
+
</tr>
|
|
1175
|
+
<tr>
|
|
1176
|
+
<td>Psycho-Social Rehabilitation</td>
|
|
1177
|
+
<td>{moh711Data.psycho_social_rehabilitation}</td>
|
|
1178
|
+
</tr>
|
|
1179
|
+
<tr>
|
|
1180
|
+
<td>Outreach Services / Health Talks</td>
|
|
1181
|
+
<td>{moh711Data.outreach_services}</td>
|
|
1182
|
+
</tr>
|
|
1183
|
+
<tr>
|
|
1184
|
+
<td>Mental Health Referrals</td>
|
|
1185
|
+
<td>{moh711Data.mental_health_referral}</td>
|
|
1186
|
+
</tr>
|
|
1187
|
+
</tbody>
|
|
1188
|
+
</table>
|
|
1189
|
+
</div>
|
|
1190
|
+
</div>
|
|
1191
|
+
<div className={styles.container}>
|
|
1192
|
+
<p className={styles.title}>K. Physiotherapy Service</p>
|
|
1193
|
+
<p className={styles.sectionTitle}><5 yrs5-19 yrs> 20 yrs</p>
|
|
1194
|
+
<div className={styles.tableContainer}>
|
|
1195
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
1196
|
+
<thead>
|
|
1197
|
+
<tr>
|
|
1198
|
+
<td></td>
|
|
1199
|
+
<th><5 yrs</th>
|
|
1200
|
+
<td>5-19 yrs</td>
|
|
1201
|
+
<th>>20 yrs</th>
|
|
1202
|
+
</tr>
|
|
1203
|
+
</thead>
|
|
1204
|
+
<tbody>
|
|
1205
|
+
<tr>
|
|
1206
|
+
<td>PWDs idenntified and receiving physiotherapy from OPD</td>
|
|
1207
|
+
<td></td>
|
|
1208
|
+
<td></td>
|
|
1209
|
+
<td></td>
|
|
1210
|
+
</tr>
|
|
1211
|
+
<tr>
|
|
1212
|
+
<td>PWDs idenntified and receiving physiotherapy from IPD</td>
|
|
1213
|
+
<td></td>
|
|
1214
|
+
<td></td>
|
|
1215
|
+
<td></td>
|
|
1216
|
+
</tr>
|
|
1217
|
+
<tr>
|
|
1218
|
+
<td>Number of other clients/patients receiving physiotherapy in OPD</td>
|
|
1219
|
+
<td></td>
|
|
1220
|
+
<td></td>
|
|
1221
|
+
<td></td>
|
|
1222
|
+
</tr>
|
|
1223
|
+
<tr>
|
|
1224
|
+
<td>Number of other clients/patients receiving physiotherapy in IPD</td>
|
|
1225
|
+
<td></td>
|
|
1226
|
+
<td></td>
|
|
1227
|
+
<td></td>
|
|
1228
|
+
</tr>
|
|
1229
|
+
<tr>
|
|
1230
|
+
<td>Total Number of treatments</td>
|
|
1231
|
+
<td></td>
|
|
1232
|
+
<td></td>
|
|
1233
|
+
<td></td>
|
|
1234
|
+
</tr>
|
|
1235
|
+
<tr>
|
|
1236
|
+
<td>PWDs assessed for registration</td>
|
|
1237
|
+
<td></td>
|
|
1238
|
+
<td></td>
|
|
1239
|
+
<td></td>
|
|
1240
|
+
</tr>
|
|
1241
|
+
</tbody>
|
|
1242
|
+
</table>
|
|
1243
|
+
</div>
|
|
1244
|
+
</div>
|
|
1245
|
+
<div className={styles.container}>
|
|
1246
|
+
<p className={styles.title}>L. Other FIF</p>
|
|
1247
|
+
<p className={styles.sectionTitle}>default</p>
|
|
1248
|
+
<div className={styles.tableContainer}>
|
|
1249
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
1250
|
+
<thead>
|
|
1251
|
+
<tr>
|
|
1252
|
+
<td></td>
|
|
1253
|
+
<th>Value</th>
|
|
1254
|
+
</tr>
|
|
1255
|
+
</thead>
|
|
1256
|
+
<tbody>
|
|
1257
|
+
<tr>
|
|
1258
|
+
<td>Amount of FIF Collected</td>
|
|
1259
|
+
<td></td>
|
|
1260
|
+
</tr>
|
|
1261
|
+
<tr>
|
|
1262
|
+
<td>Amount of FIF Waived</td>
|
|
1263
|
+
<td></td>
|
|
1264
|
+
</tr>
|
|
1265
|
+
<tr>
|
|
1266
|
+
<td>Amount of FIF Exempted</td>
|
|
1267
|
+
<td></td>
|
|
1268
|
+
</tr>
|
|
1269
|
+
</tbody>
|
|
1270
|
+
</table>
|
|
1271
|
+
</div>
|
|
1272
|
+
</div>
|
|
1273
|
+
<div className={styles.container}>
|
|
1274
|
+
<p className={styles.title}>M. TB Screening</p>
|
|
1275
|
+
<p className={styles.sectionTitle}>default</p>
|
|
1276
|
+
<div className={styles.tableContainer}>
|
|
1277
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
1278
|
+
<thead>
|
|
1279
|
+
<tr>
|
|
1280
|
+
<td></td>
|
|
1281
|
+
<th>Value</th>
|
|
1282
|
+
</tr>
|
|
1283
|
+
</thead>
|
|
1284
|
+
<tbody>
|
|
1285
|
+
<tr>
|
|
1286
|
+
<td>Total Screened for TB</td>
|
|
1287
|
+
<td>{moh711Data.total_screened_for_tb}</td>
|
|
1288
|
+
</tr>
|
|
1289
|
+
<tr>
|
|
1290
|
+
<td>Total Presumptive TB Cases</td>
|
|
1291
|
+
<td>{moh711Data.total_presumptive_tb_cases}</td>
|
|
1292
|
+
</tr>
|
|
1293
|
+
<tr>
|
|
1294
|
+
<td>Total already on TB Treatment</td>
|
|
1295
|
+
<td>{moh711Data.already_on_tb_treatment}</td>
|
|
1296
|
+
</tr>
|
|
1297
|
+
<tr>
|
|
1298
|
+
<td>Total Not Screened for TB</td>
|
|
1299
|
+
<td>{moh711Data.not_screened_for_tb}</td>
|
|
1300
|
+
</tr>
|
|
1301
|
+
</tbody>
|
|
1302
|
+
</table>
|
|
1303
|
+
</div>
|
|
1304
|
+
</div>
|
|
1305
|
+
</>
|
|
1306
|
+
);
|
|
1307
|
+
};
|
|
1308
|
+
|
|
1309
|
+
export default Moh711Report;
|