@ampath/esm-reports-app 1.0.0-next.2 → 1.0.0-next.21
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/138.js +2 -0
- package/dist/138.js.LICENSE.txt +20 -0
- package/dist/138.js.map +1 -0
- package/dist/184.js +1 -1
- package/dist/184.js.map +1 -1
- package/dist/205.js +1 -0
- package/dist/205.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/478.js +2 -0
- package/dist/478.js.LICENSE.txt +9 -0
- package/dist/478.js.map +1 -0
- package/dist/51.js +1 -0
- package/dist/51.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/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 +128 -151
- 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 +127 -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 +44 -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/datatable-wrapper/datatable-wrapper.component.tsx +54 -0
- package/src/reports/moh-240/moh-240-header.component.tsx +61 -0
- package/src/reports/moh-240/moh-240.component.tsx +68 -0
- package/src/reports/moh-240/moh-240.scss +3 -0
- package/src/reports/moh-240/sub-reports/moh-240-register.component.tsx +72 -0
- package/src/reports/moh-240/sub-reports/page-summary.component.tsx +95 -0
- package/src/reports/moh-505/moh-505-header.component.tsx +62 -0
- package/src/reports/moh-505/moh-505.component.tsx +240 -0
- package/src/reports/moh-505/moh-505.scss +3 -0
- package/src/reports/moh-705B/moh-705b.component.tsx +466 -0
- package/src/reports/moh-705B/moh-705b.scss +41 -0
- package/src/reports/moh-705a/moh-705a.component.tsx +473 -0
- package/src/reports/moh-705a/moh-705a.scss +41 -0
- package/src/reports/moh-706/moh-706-header.component.tsx +61 -0
- package/src/reports/moh-706/moh-706.component.tsx +104 -0
- package/src/reports/moh-706/moh-706.scss +30 -0
- package/src/reports/moh-706/sub-reports/bacteriology/bacteriology.component.tsx +124 -0
- package/src/reports/moh-706/sub-reports/blood-chemistry/blood-chemistry.component.tsx +318 -0
- package/src/reports/moh-706/sub-reports/drug-susceptibility-testing/drug-susceptibility-testing.component.tsx +137 -0
- package/src/reports/moh-706/sub-reports/haematology/haematology.component.tsx +179 -0
- package/src/reports/moh-706/sub-reports/histology-and-cytology/histology-and-cytology.component.tsx +88 -0
- package/src/reports/moh-706/sub-reports/parasitology/parasitology.component.tsx +121 -0
- package/src/reports/moh-706/sub-reports/serology/serology.component.tsx +47 -0
- package/src/reports/moh-706/sub-reports/specimen-referral-to-higher-levels/specimen-referral-to-higher-levels.component.tsx +39 -0
- package/src/reports/moh-706/sub-reports/urine-analysis/urine-analysis.component.tsx +108 -0
- package/src/reports/moh-710/moh-710.component.tsx +663 -0
- package/src/reports/moh-710/moh-710.scss +41 -0
- package/src/reports/moh-711/moh-711.component.tsx +121 -0
- package/src/reports/moh-711/moh711.scss +71 -0
- package/src/reports/moh-711/sections/anc.component.tsx +134 -0
- package/src/reports/moh-711/sections/cervical-cancer.component.tsx +104 -0
- package/src/reports/moh-711/sections/chanis.component.tsx +367 -0
- package/src/reports/moh-711/sections/family-planning.component.tsx +221 -0
- package/src/reports/moh-711/sections/gbv.component.tsx +115 -0
- package/src/reports/moh-711/sections/maternity.component.tsx +280 -0
- package/src/reports/moh-711/sections/medical-social-work.component.tsx +83 -0
- package/src/reports/moh-711/sections/other.component.tsx +47 -0
- package/src/reports/moh-711/sections/physiotherapy.component.tsx +61 -0
- package/src/reports/moh-711/sections/pnc.component.tsx +92 -0
- package/src/reports/moh-711/sections/post-abortion.component.tsx +42 -0
- package/src/reports/moh-711/sections/rehabilitation.component.tsx +57 -0
- package/src/reports/moh-711/sections/report-compiled-by.component.tsx +42 -0
- package/src/reports/moh-711/sections/tb-screening.component.tsx +57 -0
- package/src/reports/moh-717/moh-717.component.tsx +152 -0
- package/src/reports/moh-717/moh717.scss +150 -0
- package/src/reports/moh-717/sections/finance.component.tsx +42 -0
- package/src/reports/moh-717/sections/inpatient.component.tsx +374 -0
- package/src/reports/moh-717/sections/maternity.component.tsx +94 -0
- package/src/reports/moh-717/sections/medical-records.component.tsx +35 -0
- package/src/reports/moh-717/sections/mortuary.component.tsx +43 -0
- package/src/reports/moh-717/sections/operations.component.tsx +53 -0
- package/src/reports/moh-717/sections/orthopaedic-trauma.component.tsx +98 -0
- package/src/reports/moh-717/sections/outpatient.component.tsx +489 -0
- package/src/reports/moh-717/sections/pharmacy.component.tsx +43 -0
- package/src/reports/moh-717/sections/preparedby.component.tsx +47 -0
- package/src/reports/moh-717/sections/special-services.component.tsx +114 -0
- package/src/reports/moh-740/moh-740.component.scss +120 -0
- package/src/reports/moh-740/moh-740.component.tsx +907 -0
- package/src/reports/moh-740/moh-740.resource.ts +42 -0
- package/src/reports/moh-740/registers/moh-222-daily-register/moh-222-daily-register.tsx +6 -0
- package/src/reports/moh-740/registers/moh-270-permanent-register/moh-270-permanent-register.tsx +58 -0
- package/src/reports/moh-740/registers/moh-740-patient-list.scss +0 -0
- package/src/reports/moh-740/registers/moh-740-patient-list.tsx +43 -0
- package/src/reports/moh-740/shared/data-cell/data-cell.scss +6 -0
- package/src/reports/moh-740/shared/data-cell/data-cell.tsx +23 -0
- package/src/reports/moh-740/types/index.ts +115 -0
- package/src/reports/moh-745/moh-745.component.tsx +629 -0
- package/src/reports/moh-745/moh-745.scss +69 -0
- package/src/reports/table-wrapper/table-row-mapper.component.tsx +51 -0
- package/src/reports/table-wrapper/table-wrapper.component.tsx +21 -0
- package/src/reports/table-wrapper/table-wrapper.scss +31 -0
- package/src/resources/moh-705.resource.ts +60 -0
- package/src/resources/moh-706.resource.ts +86 -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/resources/moh-745.resource.ts +34 -0
- package/src/root.component.tsx +30 -32
- package/src/routes.json +14 -17
- package/src/utils/get-base-url.ts +12 -0
- package/src/utils/utils.ts +36 -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,907 @@
|
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
|
+
import { Button, InlineLoading } from '@carbon/react';
|
|
3
|
+
import styles from './moh-740.component.scss';
|
|
4
|
+
import ReportFiltersComponent from '../../common/report-filters/report-filters.component';
|
|
5
|
+
import { type Moh740Data, type Moh740Dto, type ReportFilters } from './types';
|
|
6
|
+
import { showSnackbar, useSession } from '@openmrs/esm-framework';
|
|
7
|
+
import { fetchMoh740Report } from './moh-740.resource';
|
|
8
|
+
import dayjs from 'dayjs';
|
|
9
|
+
import DataCell from './shared/data-cell/data-cell';
|
|
10
|
+
import Moh740PatientList from './registers/moh-740-patient-list';
|
|
11
|
+
interface Moh740ReportProps {}
|
|
12
|
+
const Moh740Report: React.FC<Moh740ReportProps> = () => {
|
|
13
|
+
const [isLoading, setIsLoading] = useState<boolean>(false);
|
|
14
|
+
const [moh740Data, setMoh740Data] = useState<Moh740Data>();
|
|
15
|
+
const [view, setView] = useState<string>('report');
|
|
16
|
+
const [selectedIndicator, setSelectedIndicator] = useState<string>();
|
|
17
|
+
const [reportingMonth, setReportingMonth] = useState<string>();
|
|
18
|
+
const session = useSession();
|
|
19
|
+
const locationUuid = session.sessionLocation.uuid;
|
|
20
|
+
const getMoh740ReportData = async (filters: ReportFilters) => {
|
|
21
|
+
setIsLoading(true);
|
|
22
|
+
try {
|
|
23
|
+
const reportFilters = generateFilterPayload(filters);
|
|
24
|
+
const resp = await fetchMoh740Report(reportFilters);
|
|
25
|
+
if (resp) {
|
|
26
|
+
setMoh740Data(resp);
|
|
27
|
+
} else {
|
|
28
|
+
setMoh740Data(null);
|
|
29
|
+
}
|
|
30
|
+
} catch (error) {
|
|
31
|
+
showSnackbar({
|
|
32
|
+
kind: 'error',
|
|
33
|
+
title: 'Error Fetching MOH-740 Report',
|
|
34
|
+
subtitle: error.message ?? 'An error occurred while fetching the MOH-740 Report. Try again or contact support',
|
|
35
|
+
});
|
|
36
|
+
} finally {
|
|
37
|
+
setIsLoading(false);
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
const generateFilterPayload = (filters: ReportFilters): Moh740Dto => {
|
|
41
|
+
const lastDay = dayjs(`${filters.month}-01`).endOf('month').format('YYYY-MM-DD');
|
|
42
|
+
setReportingMonth(lastDay);
|
|
43
|
+
return {
|
|
44
|
+
endDate: lastDay,
|
|
45
|
+
locationUuid: locationUuid,
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
const handleIndicatorSelected = (selectedIndicator: string) => {
|
|
49
|
+
setSelectedIndicator(selectedIndicator);
|
|
50
|
+
setView('register');
|
|
51
|
+
};
|
|
52
|
+
const handleBackToReport = () => {
|
|
53
|
+
setView('report');
|
|
54
|
+
};
|
|
55
|
+
return (
|
|
56
|
+
<>
|
|
57
|
+
<div className={styles.reportLayout}>
|
|
58
|
+
{view === 'report' ? (
|
|
59
|
+
<>
|
|
60
|
+
<div className={styles.reportHeader}>
|
|
61
|
+
<div className={styles.reportFilters}>
|
|
62
|
+
<ReportFiltersComponent
|
|
63
|
+
reportName="MOH-740 Report"
|
|
64
|
+
mode="monthly"
|
|
65
|
+
onGenerate={getMoh740ReportData}
|
|
66
|
+
isLoding={isLoading}
|
|
67
|
+
/>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
<div className={styles.reportContent}>
|
|
71
|
+
{isLoading ? (
|
|
72
|
+
<InlineLoading description="Fetching report..please wait" />
|
|
73
|
+
) : (
|
|
74
|
+
<>
|
|
75
|
+
{moh740Data ? (
|
|
76
|
+
<>
|
|
77
|
+
<div className={styles.headerContainer}>
|
|
78
|
+
<div className={styles.mainTitleBox}>
|
|
79
|
+
<h2 className={styles.mainTitle}>Ministry of Health</h2>
|
|
80
|
+
<h3 className={styles.subTitle}>
|
|
81
|
+
Diabetes and Hypertension Comprehensive Care: Monthly Summary Form
|
|
82
|
+
</h3>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
|
|
86
|
+
<table className={styles.topMeta}>
|
|
87
|
+
<tr>
|
|
88
|
+
<td className={styles.darkBorder}>Name of the facility: _________________________</td>
|
|
89
|
+
<td className={styles.darkBorder}>MFL code: __________</td>
|
|
90
|
+
<td className={styles.darkBorder}>County: ______________</td>
|
|
91
|
+
<td className={styles.darkBorder}>Sub County: ____________</td>
|
|
92
|
+
<td className={styles.darkBorder}>Month/Year: _________</td>
|
|
93
|
+
</tr>
|
|
94
|
+
</table>
|
|
95
|
+
|
|
96
|
+
<table>
|
|
97
|
+
<thead>
|
|
98
|
+
<tr className={styles.sectionHeader}>
|
|
99
|
+
<th className={styles.dataElement}>Data Element</th>
|
|
100
|
+
<th className={styles.otherElement}>Male</th>
|
|
101
|
+
<th className={styles.otherElement}>Female</th>
|
|
102
|
+
<th className={styles.otherElement}>Total</th>
|
|
103
|
+
</tr>
|
|
104
|
+
</thead>
|
|
105
|
+
<tbody>
|
|
106
|
+
<tr className={styles.sectionHeader}>
|
|
107
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
108
|
+
DIABETES
|
|
109
|
+
</td>
|
|
110
|
+
</tr>
|
|
111
|
+
<tr>
|
|
112
|
+
<td className={styles.darkBorder}>Cumulative no. of diabetes patients in care</td>
|
|
113
|
+
<td className={styles.darkBorder}>
|
|
114
|
+
<DataCell
|
|
115
|
+
value={moh740Data.dc__gender__M__cumulative_diabetes_patients_in_care}
|
|
116
|
+
indicatorSelected={handleIndicatorSelected}
|
|
117
|
+
indicator="dc__gender__M__cumulative_diabetes_patients_in_care"
|
|
118
|
+
/>
|
|
119
|
+
</td>
|
|
120
|
+
<td className={styles.darkBorder}>
|
|
121
|
+
<DataCell
|
|
122
|
+
value={moh740Data.dc__gender__F__cumulative_diabetes_patients_in_care}
|
|
123
|
+
indicatorSelected={handleIndicatorSelected}
|
|
124
|
+
indicator="dc__gender__F__cumulative_diabetes_patients_in_care"
|
|
125
|
+
/>
|
|
126
|
+
</td>
|
|
127
|
+
<td className={styles.darkBorder}></td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td className={styles.darkBorder}>No. of newly diagnosed diabetes cases</td>
|
|
131
|
+
<td className={styles.darkBorder}>
|
|
132
|
+
<DataCell
|
|
133
|
+
value={moh740Data.dc__gender__M__newly_diagnosed_diabetes}
|
|
134
|
+
indicatorSelected={handleIndicatorSelected}
|
|
135
|
+
indicator="dc__gender__M__newly_diagnosed_diabetes"
|
|
136
|
+
/>
|
|
137
|
+
</td>
|
|
138
|
+
<td className={styles.darkBorder}>
|
|
139
|
+
<DataCell
|
|
140
|
+
value={moh740Data.dc__gender__F__newly_diagnosed_diabetes}
|
|
141
|
+
indicatorSelected={handleIndicatorSelected}
|
|
142
|
+
indicator="dc__gender__F__newly_diagnosed_diabetes"
|
|
143
|
+
/>
|
|
144
|
+
</td>
|
|
145
|
+
<td className={styles.darkBorder}></td>
|
|
146
|
+
</tr>
|
|
147
|
+
<tr>
|
|
148
|
+
<td className={styles.darkBorder}>Revisit to clinic/Known DM</td>
|
|
149
|
+
<td className={styles.darkBorder}>
|
|
150
|
+
<DataCell
|
|
151
|
+
value={moh740Data.dc__gender__M__revisit_to_clinic_known_dm}
|
|
152
|
+
indicatorSelected={handleIndicatorSelected}
|
|
153
|
+
indicator="dc__gender__M__revisit_to_clinic_known_dm"
|
|
154
|
+
/>
|
|
155
|
+
</td>
|
|
156
|
+
<td className={styles.darkBorder}>
|
|
157
|
+
<DataCell
|
|
158
|
+
value={moh740Data.dc__gender__F__revisit_to_clinic_known_dm}
|
|
159
|
+
indicatorSelected={handleIndicatorSelected}
|
|
160
|
+
indicator="dc__gender__F__revisit_to_clinic_known_dm"
|
|
161
|
+
/>
|
|
162
|
+
</td>
|
|
163
|
+
<td className={styles.darkBorder}></td>
|
|
164
|
+
</tr>
|
|
165
|
+
|
|
166
|
+
<tr className={styles.subHeader}>
|
|
167
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
168
|
+
Total No. with Type 1
|
|
169
|
+
</td>
|
|
170
|
+
</tr>
|
|
171
|
+
<tr>
|
|
172
|
+
<td className="darkBorder indent">0-5 years</td>
|
|
173
|
+
<td className={styles.darkBorder}>
|
|
174
|
+
<DataCell
|
|
175
|
+
value={moh740Data.dc__gender__M__age_range__0_to_5__type_1_diabetes_mellitus}
|
|
176
|
+
indicatorSelected={handleIndicatorSelected}
|
|
177
|
+
indicator="dc__gender__M__age_range__0_to_5__type_1_diabetes_mellitus"
|
|
178
|
+
/>
|
|
179
|
+
</td>
|
|
180
|
+
<td className={styles.darkBorder}>
|
|
181
|
+
<DataCell
|
|
182
|
+
value={moh740Data.dc__gender__F__age_range__0_to_5__type_1_diabetes_mellitus}
|
|
183
|
+
indicatorSelected={handleIndicatorSelected}
|
|
184
|
+
indicator="dc__gender__F__age_range__0_to_5__type_1_diabetes_mellitus"
|
|
185
|
+
/>
|
|
186
|
+
</td>
|
|
187
|
+
<td className={styles.darkBorder}></td>
|
|
188
|
+
</tr>
|
|
189
|
+
<tr>
|
|
190
|
+
<td className="darkBorder indent">6-9 years</td>
|
|
191
|
+
<td className={styles.darkBorder}>
|
|
192
|
+
<DataCell
|
|
193
|
+
value={moh740Data.dc__gender__M__age_range__6_to_9__type_1_diabetes_mellitus}
|
|
194
|
+
indicatorSelected={handleIndicatorSelected}
|
|
195
|
+
indicator="dc__gender__M__age_range__6_to_9__type_1_diabetes_mellitus"
|
|
196
|
+
/>
|
|
197
|
+
</td>
|
|
198
|
+
<td className={styles.darkBorder}>
|
|
199
|
+
<DataCell
|
|
200
|
+
value={moh740Data.dc__gender__F__age_range__6_to_9__type_1_diabetes_mellitus}
|
|
201
|
+
indicatorSelected={handleIndicatorSelected}
|
|
202
|
+
indicator="dc__gender__F__age_range__6_to_9__type_1_diabetes_mellitus"
|
|
203
|
+
/>
|
|
204
|
+
</td>
|
|
205
|
+
<td className={styles.darkBorder}></td>
|
|
206
|
+
</tr>
|
|
207
|
+
<tr>
|
|
208
|
+
<td className="darkBorder indent">10-19 years</td>
|
|
209
|
+
<td className={styles.darkBorder}>
|
|
210
|
+
<DataCell
|
|
211
|
+
value={moh740Data.dc__gender__M__age_range__10_to_19__type_1_diabetes_mellitus}
|
|
212
|
+
indicatorSelected={handleIndicatorSelected}
|
|
213
|
+
indicator="dc__gender__M__age_range__10_to_19__type_1_diabetes_mellitus"
|
|
214
|
+
/>
|
|
215
|
+
</td>
|
|
216
|
+
<td className={styles.darkBorder}>
|
|
217
|
+
<DataCell
|
|
218
|
+
value={moh740Data.dc__gender__F__age_range__10_to_19__type_1_diabetes_mellitus}
|
|
219
|
+
indicatorSelected={handleIndicatorSelected}
|
|
220
|
+
indicator="dc__gender__F__age_range__10_to_19__type_1_diabetes_mellitus"
|
|
221
|
+
/>
|
|
222
|
+
</td>
|
|
223
|
+
<td className={styles.darkBorder}></td>
|
|
224
|
+
</tr>
|
|
225
|
+
<tr>
|
|
226
|
+
<td className="darkBorder indent">20-35 years</td>
|
|
227
|
+
<td className={styles.darkBorder}>
|
|
228
|
+
<DataCell
|
|
229
|
+
value={moh740Data.dc__gender__M__age_range__20_to_35__type_1_diabetes_mellitus}
|
|
230
|
+
indicatorSelected={handleIndicatorSelected}
|
|
231
|
+
indicator="dc__gender__M__age_range__20_to_35__type_1_diabetes_mellitus"
|
|
232
|
+
/>
|
|
233
|
+
</td>
|
|
234
|
+
<td className={styles.darkBorder}>
|
|
235
|
+
<DataCell
|
|
236
|
+
value={moh740Data.dc__gender__F__age_range__20_to_35__type_1_diabetes_mellitus}
|
|
237
|
+
indicatorSelected={handleIndicatorSelected}
|
|
238
|
+
indicator="dc__gender__F__age_range__20_to_35__type_1_diabetes_mellitus"
|
|
239
|
+
/>
|
|
240
|
+
</td>
|
|
241
|
+
<td className={styles.darkBorder}></td>
|
|
242
|
+
</tr>
|
|
243
|
+
<tr>
|
|
244
|
+
<td className="darkBorder indent">{'>'} 35 years</td>
|
|
245
|
+
<td className={styles.darkBorder}>
|
|
246
|
+
<DataCell
|
|
247
|
+
value={moh740Data.dc__gender__M__age_range__36_and_above__type_1_diabetes_mellitus}
|
|
248
|
+
indicatorSelected={handleIndicatorSelected}
|
|
249
|
+
indicator="dc__gender__M__age_range__35_and_above__type_1_diabetes_mellitus"
|
|
250
|
+
/>
|
|
251
|
+
</td>
|
|
252
|
+
<td className={styles.darkBorder}>
|
|
253
|
+
<DataCell
|
|
254
|
+
value={moh740Data.dc__gender__F__age_range__36_and_above__type_1_diabetes_mellitus}
|
|
255
|
+
indicatorSelected={handleIndicatorSelected}
|
|
256
|
+
indicator="dc__gender__F__age_range__35_and_above__type_1_diabetes_mellitus"
|
|
257
|
+
/>
|
|
258
|
+
</td>
|
|
259
|
+
<td className={styles.darkBorder}></td>
|
|
260
|
+
</tr>
|
|
261
|
+
|
|
262
|
+
<tr className={styles.subHeader}>
|
|
263
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
264
|
+
Total No. with Type 2
|
|
265
|
+
</td>
|
|
266
|
+
</tr>
|
|
267
|
+
<tr>
|
|
268
|
+
<td className="darkBorder indent">0-18 years</td>
|
|
269
|
+
<td className={styles.darkBorder}>
|
|
270
|
+
<DataCell
|
|
271
|
+
value={moh740Data.dc__gender__M__age_range__0_to_18__type_2_diabetes_mellitus}
|
|
272
|
+
indicatorSelected={handleIndicatorSelected}
|
|
273
|
+
indicator="dc__gender__M__age_range__0_to_18__type_2_diabetes_mellitus"
|
|
274
|
+
/>
|
|
275
|
+
</td>
|
|
276
|
+
<td className={styles.darkBorder}>
|
|
277
|
+
<DataCell
|
|
278
|
+
value={moh740Data.dc__gender__F__age_range__0_to_18__type_2_diabetes_mellitus}
|
|
279
|
+
indicatorSelected={handleIndicatorSelected}
|
|
280
|
+
indicator="dc__gender__F__age_range__0_to_18__type_2_diabetes_mellitus"
|
|
281
|
+
/>
|
|
282
|
+
</td>
|
|
283
|
+
<td className={styles.darkBorder}></td>
|
|
284
|
+
</tr>
|
|
285
|
+
<tr>
|
|
286
|
+
<td className="darkBorder indent">19-35 years</td>
|
|
287
|
+
<td className={styles.darkBorder}>
|
|
288
|
+
<DataCell
|
|
289
|
+
value={moh740Data.dc__gender__M__age_range__19_to_35__type_2_diabetes_mellitus}
|
|
290
|
+
indicatorSelected={handleIndicatorSelected}
|
|
291
|
+
indicator="dc__gender__M__age_range__19_to_35__type_2_diabetes_mellitus"
|
|
292
|
+
/>
|
|
293
|
+
</td>
|
|
294
|
+
<td className={styles.darkBorder}>
|
|
295
|
+
<DataCell
|
|
296
|
+
value={moh740Data.dc__gender__F__age_range__19_to_35__type_2_diabetes_mellitus}
|
|
297
|
+
indicatorSelected={handleIndicatorSelected}
|
|
298
|
+
indicator="dc__gender__F__age_range__19_to_35__type_2_diabetes_mellitus"
|
|
299
|
+
/>
|
|
300
|
+
</td>
|
|
301
|
+
<td className={styles.darkBorder}></td>
|
|
302
|
+
</tr>
|
|
303
|
+
<tr>
|
|
304
|
+
<td className="darkBorder indent">36-60 years</td>
|
|
305
|
+
<td className={styles.darkBorder}>
|
|
306
|
+
<DataCell
|
|
307
|
+
value={moh740Data.dc__gender__M__age_range__36_to_60__type_2_diabetes_mellitus}
|
|
308
|
+
indicatorSelected={handleIndicatorSelected}
|
|
309
|
+
indicator="dc__gender__M__age_range__36_to_60__type_2_diabetes_mellitus"
|
|
310
|
+
/>
|
|
311
|
+
</td>
|
|
312
|
+
<td className={styles.darkBorder}>
|
|
313
|
+
<DataCell
|
|
314
|
+
value={moh740Data.dc__gender__F__age_range__36_to_60__type_2_diabetes_mellitus}
|
|
315
|
+
indicatorSelected={handleIndicatorSelected}
|
|
316
|
+
indicator="dc__gender__F__age_range__36_to_60__type_2_diabetes_mellitus"
|
|
317
|
+
/>
|
|
318
|
+
</td>
|
|
319
|
+
<td className={styles.darkBorder}></td>
|
|
320
|
+
</tr>
|
|
321
|
+
<tr>
|
|
322
|
+
<td className="darkBorder indent">{'>'} 60 years</td>
|
|
323
|
+
<td className={styles.darkBorder}>
|
|
324
|
+
<DataCell
|
|
325
|
+
value={moh740Data.dc__gender__M__age_range__61_and_above__type_2_diabetes_mellitus}
|
|
326
|
+
indicatorSelected={handleIndicatorSelected}
|
|
327
|
+
indicator="dc__gender__M__age_range__61_and_above__type_2_diabetes_mellitus"
|
|
328
|
+
/>
|
|
329
|
+
</td>
|
|
330
|
+
<td className={styles.darkBorder}>
|
|
331
|
+
<DataCell
|
|
332
|
+
value={moh740Data.dc__gender__F__age_range__61_and_above__type_2_diabetes_mellitus}
|
|
333
|
+
indicatorSelected={handleIndicatorSelected}
|
|
334
|
+
indicator="dc__gender__F__age_range__61_and_above__type_2_diabetes_mellitus"
|
|
335
|
+
/>
|
|
336
|
+
</td>
|
|
337
|
+
<td className={styles.darkBorder}></td>
|
|
338
|
+
</tr>
|
|
339
|
+
|
|
340
|
+
<tr>
|
|
341
|
+
<td className={styles.darkBorder}>No. diagnosed for Gestational Diabetes Mellitus</td>
|
|
342
|
+
<td className="darkBorder bgGrey">N/A</td>
|
|
343
|
+
<td className={styles.darkBorder}></td>
|
|
344
|
+
<td className={styles.darkBorder}></td>
|
|
345
|
+
</tr>
|
|
346
|
+
<tr>
|
|
347
|
+
<td className={styles.darkBorder}>No. of Diabetes secondary to other causes</td>
|
|
348
|
+
<td className={styles.darkBorder}></td>
|
|
349
|
+
<td className={styles.darkBorder}></td>
|
|
350
|
+
<td className={styles.darkBorder}></td>
|
|
351
|
+
</tr>
|
|
352
|
+
|
|
353
|
+
<tr className={styles.sectionHeader}>
|
|
354
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
355
|
+
HYPERTENSION
|
|
356
|
+
</td>
|
|
357
|
+
</tr>
|
|
358
|
+
<tr>
|
|
359
|
+
<td className={styles.darkBorder}>Cumulative no. of hypertension patients in care</td>
|
|
360
|
+
<td className={styles.darkBorder}>
|
|
361
|
+
<DataCell
|
|
362
|
+
value={moh740Data.dc__gender__M__cumulative_htn_patient}
|
|
363
|
+
indicatorSelected={handleIndicatorSelected}
|
|
364
|
+
indicator="dc__gender__M__cumulative_htn_patient"
|
|
365
|
+
/>
|
|
366
|
+
</td>
|
|
367
|
+
<td className={styles.darkBorder}>
|
|
368
|
+
<DataCell
|
|
369
|
+
value={moh740Data.dc__gender__F__cumulative_htn_patient}
|
|
370
|
+
indicatorSelected={handleIndicatorSelected}
|
|
371
|
+
indicator="dc__gender__F__cumulative_htn_patient"
|
|
372
|
+
/>
|
|
373
|
+
</td>
|
|
374
|
+
<td className={styles.darkBorder}></td>
|
|
375
|
+
</tr>
|
|
376
|
+
<tr>
|
|
377
|
+
<td className={styles.darkBorder}>No. of newly diagnosed hypertension cases</td>
|
|
378
|
+
<td className={styles.darkBorder}>
|
|
379
|
+
<DataCell
|
|
380
|
+
value={moh740Data.dc__gender__M__newly_diagnosed_htn_this_month}
|
|
381
|
+
indicatorSelected={handleIndicatorSelected}
|
|
382
|
+
indicator="dc__gender__M__newly_diagnosed_htn_this_month"
|
|
383
|
+
/>
|
|
384
|
+
</td>
|
|
385
|
+
<td className={styles.darkBorder}>
|
|
386
|
+
<DataCell
|
|
387
|
+
value={moh740Data.dc__gender__F__newly_diagnosed_htn_this_month}
|
|
388
|
+
indicatorSelected={handleIndicatorSelected}
|
|
389
|
+
indicator="dc__gender__F__newly_diagnosed_htn_this_month"
|
|
390
|
+
/>
|
|
391
|
+
</td>
|
|
392
|
+
<td className={styles.darkBorder}></td>
|
|
393
|
+
</tr>
|
|
394
|
+
<tr>
|
|
395
|
+
<td className={styles.darkBorder}>Revisit to clinic/Known HTN</td>
|
|
396
|
+
<td className={styles.darkBorder}>
|
|
397
|
+
<DataCell
|
|
398
|
+
value={moh740Data.dc__gender__M__revisit_known_htn}
|
|
399
|
+
indicatorSelected={handleIndicatorSelected}
|
|
400
|
+
indicator="dc__gender__M__revisit_known_htn"
|
|
401
|
+
/>
|
|
402
|
+
</td>
|
|
403
|
+
<td className={styles.darkBorder}>
|
|
404
|
+
<DataCell
|
|
405
|
+
value={moh740Data.dc__gender__F__revisit_known_htn}
|
|
406
|
+
indicatorSelected={handleIndicatorSelected}
|
|
407
|
+
indicator="dc__gender__F__revisit_known_htn"
|
|
408
|
+
/>
|
|
409
|
+
</td>
|
|
410
|
+
<td className={styles.darkBorder}></td>
|
|
411
|
+
</tr>
|
|
412
|
+
|
|
413
|
+
<tr className={styles.subHeader}>
|
|
414
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
415
|
+
No. with hypertension
|
|
416
|
+
</td>
|
|
417
|
+
</tr>
|
|
418
|
+
<tr>
|
|
419
|
+
<td className="darkBorder indent">0-18 years</td>
|
|
420
|
+
<td className={styles.darkBorder}>
|
|
421
|
+
<DataCell
|
|
422
|
+
value={moh740Data.dc__gender__M__age_range__10_to_19__has_htn}
|
|
423
|
+
indicatorSelected={handleIndicatorSelected}
|
|
424
|
+
indicator="dc__gender__M__age_range__10_to_19__has_htn"
|
|
425
|
+
/>
|
|
426
|
+
</td>
|
|
427
|
+
<td className={styles.darkBorder}>
|
|
428
|
+
<DataCell
|
|
429
|
+
value={moh740Data.dc__gender__F__age_range__10_to_19__has_htn}
|
|
430
|
+
indicatorSelected={handleIndicatorSelected}
|
|
431
|
+
indicator="dc__gender__F__age_range__10_to_19__has_htn"
|
|
432
|
+
/>
|
|
433
|
+
</td>
|
|
434
|
+
<td className={styles.darkBorder}></td>
|
|
435
|
+
</tr>
|
|
436
|
+
<tr>
|
|
437
|
+
<td className="darkBorder indent">19-35 years</td>
|
|
438
|
+
<td className={styles.darkBorder}>
|
|
439
|
+
<DataCell
|
|
440
|
+
value={moh740Data.dc__gender__M__age_range__19_to_35__has_htn}
|
|
441
|
+
indicatorSelected={handleIndicatorSelected}
|
|
442
|
+
indicator="dc__gender__M__age_range__19_to_35__has_htn"
|
|
443
|
+
/>
|
|
444
|
+
</td>
|
|
445
|
+
<td className={styles.darkBorder}>
|
|
446
|
+
<DataCell
|
|
447
|
+
value={moh740Data.dc__gender__F__age_range__19_to_35__has_htn}
|
|
448
|
+
indicatorSelected={handleIndicatorSelected}
|
|
449
|
+
indicator="dc__gender__F__age_range__19_to_35__has_htn"
|
|
450
|
+
/>
|
|
451
|
+
</td>
|
|
452
|
+
<td className={styles.darkBorder}></td>
|
|
453
|
+
</tr>
|
|
454
|
+
<tr>
|
|
455
|
+
<td className="darkBorder indent">36-60 years</td>
|
|
456
|
+
<td className={styles.darkBorder}>
|
|
457
|
+
<DataCell
|
|
458
|
+
value={moh740Data.dc__gender__M__age_range__36_to_60__has_htn}
|
|
459
|
+
indicatorSelected={handleIndicatorSelected}
|
|
460
|
+
indicator="dc__gender__M__age_range__36_to_60__has_htn"
|
|
461
|
+
/>
|
|
462
|
+
</td>
|
|
463
|
+
<td className={styles.darkBorder}>
|
|
464
|
+
<DataCell
|
|
465
|
+
value={moh740Data.dc__gender__F__age_range__36_to_60__has_htn}
|
|
466
|
+
indicatorSelected={handleIndicatorSelected}
|
|
467
|
+
indicator="dc__gender__F__age_range__36_to_60__has_htn"
|
|
468
|
+
/>
|
|
469
|
+
</td>
|
|
470
|
+
<td className={styles.darkBorder}></td>
|
|
471
|
+
</tr>
|
|
472
|
+
<tr>
|
|
473
|
+
<td className="darkBorder indent">{'>'} 60 years</td>
|
|
474
|
+
<td className={styles.darkBorder}>
|
|
475
|
+
<DataCell
|
|
476
|
+
value={moh740Data.dc__gender__M__age_range__60_and_above__has_htn}
|
|
477
|
+
indicatorSelected={handleIndicatorSelected}
|
|
478
|
+
indicator="dc__gender__M__age_range__60_and_above__has_htn"
|
|
479
|
+
/>
|
|
480
|
+
</td>
|
|
481
|
+
<td className={styles.darkBorder}>
|
|
482
|
+
<DataCell
|
|
483
|
+
value={moh740Data.dc__gender__F__age_range__60_and_above__has_htn}
|
|
484
|
+
indicatorSelected={handleIndicatorSelected}
|
|
485
|
+
indicator="dc__gender__F__age_range__60_and_above__has_htn"
|
|
486
|
+
/>
|
|
487
|
+
</td>
|
|
488
|
+
<td className={styles.darkBorder}></td>
|
|
489
|
+
</tr>
|
|
490
|
+
|
|
491
|
+
<tr className={styles.sectionHeader}>
|
|
492
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
493
|
+
CO-MORBID WITH BOTH DIABETES AND HTN PATIENTS
|
|
494
|
+
</td>
|
|
495
|
+
</tr>
|
|
496
|
+
<tr>
|
|
497
|
+
<td className={styles.darkBorder}>
|
|
498
|
+
Cumulative no. of co-morbid both DM+HTN patients in care
|
|
499
|
+
</td>
|
|
500
|
+
<td className={styles.darkBorder}>
|
|
501
|
+
<DataCell
|
|
502
|
+
value={moh740Data.dc__gender__M__is_co_morbid}
|
|
503
|
+
indicatorSelected={handleIndicatorSelected}
|
|
504
|
+
indicator="dc__gender__M__is_co_morbid"
|
|
505
|
+
/>
|
|
506
|
+
</td>
|
|
507
|
+
<td className={styles.darkBorder}>
|
|
508
|
+
<DataCell
|
|
509
|
+
value={moh740Data.dc__gender__F__is_co_morbid}
|
|
510
|
+
indicatorSelected={handleIndicatorSelected}
|
|
511
|
+
indicator="dc__gender__F__is_co_morbid"
|
|
512
|
+
/>
|
|
513
|
+
</td>
|
|
514
|
+
<td className={styles.darkBorder}></td>
|
|
515
|
+
</tr>
|
|
516
|
+
<tr>
|
|
517
|
+
<td className={styles.darkBorder}>Newly diagnosed co-morbid with both DM and HTN cases</td>
|
|
518
|
+
<td className={styles.darkBorder}>
|
|
519
|
+
<DataCell
|
|
520
|
+
value={moh740Data.dc__gender__M__newly_diagnosed_co_morbid_this_month}
|
|
521
|
+
indicatorSelected={handleIndicatorSelected}
|
|
522
|
+
indicator="dc__gender__M__newly_diagnosed_co_morbid_this_month"
|
|
523
|
+
/>
|
|
524
|
+
</td>
|
|
525
|
+
<td className={styles.darkBorder}>
|
|
526
|
+
<DataCell
|
|
527
|
+
value={moh740Data.dc__gender__F__newly_diagnosed_co_morbid_this_month}
|
|
528
|
+
indicatorSelected={handleIndicatorSelected}
|
|
529
|
+
indicator="dc__gender__F__newly_diagnosed_co_morbid_this_month"
|
|
530
|
+
/>
|
|
531
|
+
</td>
|
|
532
|
+
<td className={styles.darkBorder}></td>
|
|
533
|
+
</tr>
|
|
534
|
+
<tr>
|
|
535
|
+
<td className={styles.darkBorder}>Revisit to clinic/Known co-morbid DM and HTN</td>
|
|
536
|
+
<td className={styles.darkBorder}>
|
|
537
|
+
<DataCell
|
|
538
|
+
value={moh740Data.dc__gender__M__revisit_known_co_morbid}
|
|
539
|
+
indicatorSelected={handleIndicatorSelected}
|
|
540
|
+
indicator="dc__gender__M__revisit_known_co_morbid"
|
|
541
|
+
/>
|
|
542
|
+
</td>
|
|
543
|
+
<td className={styles.darkBorder}>
|
|
544
|
+
<DataCell
|
|
545
|
+
value={moh740Data.dc__gender__F__revisit_known_co_morbid}
|
|
546
|
+
indicatorSelected={handleIndicatorSelected}
|
|
547
|
+
indicator="dc__gender__F__revisit_known_co_morbid"
|
|
548
|
+
/>
|
|
549
|
+
</td>
|
|
550
|
+
<td className={styles.darkBorder}></td>
|
|
551
|
+
</tr>
|
|
552
|
+
|
|
553
|
+
<tr className={styles.sectionHeader}>
|
|
554
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
555
|
+
DIABETES TREATMENT AND FOLLOW UP
|
|
556
|
+
</td>
|
|
557
|
+
</tr>
|
|
558
|
+
<tr>
|
|
559
|
+
<td className={styles.darkBorder}>No. of patients on insulin</td>
|
|
560
|
+
<td className={styles.darkBorder}></td>
|
|
561
|
+
<td className={styles.darkBorder}></td>
|
|
562
|
+
<td className={styles.darkBorder}></td>
|
|
563
|
+
</tr>
|
|
564
|
+
<tr>
|
|
565
|
+
<td className={styles.darkBorder}>No. of patients on OGLAs</td>
|
|
566
|
+
<td className={styles.darkBorder}></td>
|
|
567
|
+
<td className={styles.darkBorder}></td>
|
|
568
|
+
<td className={styles.darkBorder}></td>
|
|
569
|
+
</tr>
|
|
570
|
+
<tr>
|
|
571
|
+
<td className={styles.darkBorder}>No. of patients on both (Insulin and OGLAs)</td>
|
|
572
|
+
<td className={styles.darkBorder}></td>
|
|
573
|
+
<td className={styles.darkBorder}></td>
|
|
574
|
+
<td className={styles.darkBorder}></td>
|
|
575
|
+
</tr>
|
|
576
|
+
<tr>
|
|
577
|
+
<td className={styles.darkBorder}>
|
|
578
|
+
No. of patients on diet and exercise only (DM and HTN)
|
|
579
|
+
</td>
|
|
580
|
+
<td className={styles.darkBorder}></td>
|
|
581
|
+
<td className={styles.darkBorder}></td>
|
|
582
|
+
<td className={styles.darkBorder}></td>
|
|
583
|
+
</tr>
|
|
584
|
+
<tr>
|
|
585
|
+
<td className={styles.darkBorder}>No. of patients done HbA1c</td>
|
|
586
|
+
<td className={styles.darkBorder}></td>
|
|
587
|
+
<td className={styles.darkBorder}></td>
|
|
588
|
+
<td className={styles.darkBorder}></td>
|
|
589
|
+
</tr>
|
|
590
|
+
<tr>
|
|
591
|
+
<td className={styles.darkBorder}>No. that met HbA1c target ({'<'} 7%)</td>
|
|
592
|
+
<td className={styles.darkBorder}></td>
|
|
593
|
+
<td className={styles.darkBorder}></td>
|
|
594
|
+
<td className={styles.darkBorder}></td>
|
|
595
|
+
</tr>
|
|
596
|
+
|
|
597
|
+
<tr className={styles.sectionHeader}>
|
|
598
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
599
|
+
HYPERTENSION TREATMENT
|
|
600
|
+
</td>
|
|
601
|
+
</tr>
|
|
602
|
+
<tr>
|
|
603
|
+
<td className={styles.darkBorder}>No. of patients on antihypertensives</td>
|
|
604
|
+
<td className={styles.darkBorder}></td>
|
|
605
|
+
<td className={styles.darkBorder}></td>
|
|
606
|
+
<td className={styles.darkBorder}></td>
|
|
607
|
+
</tr>
|
|
608
|
+
<tr>
|
|
609
|
+
<td className={styles.darkBorder}>No. with high BP ({'>='} 140/90) at clinic visit</td>
|
|
610
|
+
<td className={styles.darkBorder}></td>
|
|
611
|
+
<td className={styles.darkBorder}></td>
|
|
612
|
+
<td className={styles.darkBorder}></td>
|
|
613
|
+
</tr>
|
|
614
|
+
|
|
615
|
+
<tr className={styles.sectionHeader}>
|
|
616
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
617
|
+
New Diagnosis of Complications/Comorbidities
|
|
618
|
+
</td>
|
|
619
|
+
</tr>
|
|
620
|
+
<tr>
|
|
621
|
+
<td className="darkBorder indent">Stroke</td>
|
|
622
|
+
<td className={styles.darkBorder}>
|
|
623
|
+
<DataCell
|
|
624
|
+
value={moh740Data.dc__gender__M__stroke_diagnosis}
|
|
625
|
+
indicatorSelected={handleIndicatorSelected}
|
|
626
|
+
indicator="dc__gender__M__stroke_diagnosis"
|
|
627
|
+
/>
|
|
628
|
+
</td>
|
|
629
|
+
<td className={styles.darkBorder}>
|
|
630
|
+
<DataCell
|
|
631
|
+
value={moh740Data.dc__gender__F__stroke_diagnosis}
|
|
632
|
+
indicatorSelected={handleIndicatorSelected}
|
|
633
|
+
indicator="dc__gender__F__stroke_diagnosis"
|
|
634
|
+
/>
|
|
635
|
+
</td>
|
|
636
|
+
<td className={styles.darkBorder}></td>
|
|
637
|
+
</tr>
|
|
638
|
+
<tr>
|
|
639
|
+
<td className="darkBorder indent">Ischemic heart disease</td>
|
|
640
|
+
<td className={styles.darkBorder}>
|
|
641
|
+
<DataCell
|
|
642
|
+
value={moh740Data.dc__gender__M__ischemic_heart_disease_diagnosis}
|
|
643
|
+
indicatorSelected={handleIndicatorSelected}
|
|
644
|
+
indicator="dc__gender__M__ischemic_heart_disease_diagnosis"
|
|
645
|
+
/>
|
|
646
|
+
</td>
|
|
647
|
+
<td className={styles.darkBorder}>
|
|
648
|
+
<DataCell
|
|
649
|
+
value={moh740Data.dc__gender__F__ischemic_heart_disease_diagnosis}
|
|
650
|
+
indicatorSelected={handleIndicatorSelected}
|
|
651
|
+
indicator="dc__gender__F__ischemic_heart_disease_diagnosis"
|
|
652
|
+
/>
|
|
653
|
+
</td>
|
|
654
|
+
<td className={styles.darkBorder}></td>
|
|
655
|
+
</tr>
|
|
656
|
+
<tr>
|
|
657
|
+
<td className="darkBorder indent">Heart failure</td>
|
|
658
|
+
<td className={styles.darkBorder}>
|
|
659
|
+
<DataCell
|
|
660
|
+
value={moh740Data.dc__gender__M__heart_failure_diagnosis}
|
|
661
|
+
indicatorSelected={handleIndicatorSelected}
|
|
662
|
+
indicator="dc__gender__M__heart_failure_diagnosis"
|
|
663
|
+
/>
|
|
664
|
+
</td>
|
|
665
|
+
<td className={styles.darkBorder}>
|
|
666
|
+
<DataCell
|
|
667
|
+
value={moh740Data.dc__gender__F__heart_failure_diagnosis}
|
|
668
|
+
indicatorSelected={handleIndicatorSelected}
|
|
669
|
+
indicator="dc__gender__F__heart_failure_diagnosis"
|
|
670
|
+
/>
|
|
671
|
+
</td>
|
|
672
|
+
<td className={styles.darkBorder}></td>
|
|
673
|
+
</tr>
|
|
674
|
+
<tr>
|
|
675
|
+
<td className={styles.darkBorder}>No. of Patients with neuropathies (new diagnosis)</td>
|
|
676
|
+
<td className={styles.darkBorder}>
|
|
677
|
+
<DataCell
|
|
678
|
+
value={moh740Data.dc__gender__M__has_neuropathies}
|
|
679
|
+
indicatorSelected={handleIndicatorSelected}
|
|
680
|
+
indicator="dc__gender__M__has_neuropathies"
|
|
681
|
+
/>
|
|
682
|
+
</td>
|
|
683
|
+
<td className={styles.darkBorder}>
|
|
684
|
+
<DataCell
|
|
685
|
+
value={moh740Data.dc__gender__F__has_neuropathies}
|
|
686
|
+
indicatorSelected={handleIndicatorSelected}
|
|
687
|
+
indicator="dc__gender__F__has_neuropathies"
|
|
688
|
+
/>
|
|
689
|
+
</td>
|
|
690
|
+
<td className={styles.darkBorder}></td>
|
|
691
|
+
</tr>
|
|
692
|
+
|
|
693
|
+
<tr className={styles.sectionHeader}>
|
|
694
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
695
|
+
DIABETIC FOOT
|
|
696
|
+
</td>
|
|
697
|
+
</tr>
|
|
698
|
+
<tr>
|
|
699
|
+
<td className={styles.darkBorder}>No. of patients screened for diabetic foot</td>
|
|
700
|
+
<td className={styles.darkBorder}>
|
|
701
|
+
<DataCell
|
|
702
|
+
value={moh740Data.dc__gender__M__screened_for_diabetic_foot_this_month}
|
|
703
|
+
indicatorSelected={handleIndicatorSelected}
|
|
704
|
+
indicator="dc__gender__M__screened_for_diabetic_foot_this_month"
|
|
705
|
+
/>
|
|
706
|
+
</td>
|
|
707
|
+
<td className={styles.darkBorder}>
|
|
708
|
+
<DataCell
|
|
709
|
+
value={moh740Data.dc__gender__F__screened_for_diabetic_foot_this_month}
|
|
710
|
+
indicatorSelected={handleIndicatorSelected}
|
|
711
|
+
indicator="dc__gender__F__screened_for_diabetic_foot_this_month"
|
|
712
|
+
/>
|
|
713
|
+
</td>
|
|
714
|
+
<td className={styles.darkBorder}></td>
|
|
715
|
+
</tr>
|
|
716
|
+
<tr>
|
|
717
|
+
<td className={styles.darkBorder}>No. of patients with diabetic foot (new diagnosis)</td>
|
|
718
|
+
<td className={styles.darkBorder}>
|
|
719
|
+
<DataCell
|
|
720
|
+
value={moh740Data.dc__gender__M__has_diabetic_foot}
|
|
721
|
+
indicatorSelected={handleIndicatorSelected}
|
|
722
|
+
indicator="dc__gender__M__has_diabetic_foot"
|
|
723
|
+
/>
|
|
724
|
+
</td>
|
|
725
|
+
<td className={styles.darkBorder}>
|
|
726
|
+
<DataCell
|
|
727
|
+
value={moh740Data.dc__gender__F__has_diabetic_foot}
|
|
728
|
+
indicatorSelected={handleIndicatorSelected}
|
|
729
|
+
indicator="dc__gender__F__has_diabetic_foot"
|
|
730
|
+
/>
|
|
731
|
+
</td>
|
|
732
|
+
<td className={styles.darkBorder}></td>
|
|
733
|
+
</tr>
|
|
734
|
+
<tr>
|
|
735
|
+
<td className={styles.darkBorder}>No. of Amputation due to diabetic foot</td>
|
|
736
|
+
<td className={styles.darkBorder}>
|
|
737
|
+
<DataCell
|
|
738
|
+
value={moh740Data.dc__gender__M__amputation_due_to_diabetic_foot}
|
|
739
|
+
indicatorSelected={handleIndicatorSelected}
|
|
740
|
+
indicator="dc__gender__M__amputation_due_to_diabetic_foot"
|
|
741
|
+
/>
|
|
742
|
+
</td>
|
|
743
|
+
<td className={styles.darkBorder}>
|
|
744
|
+
<DataCell
|
|
745
|
+
value={moh740Data.dc__gender__F__amputation_due_to_diabetic_foot}
|
|
746
|
+
indicatorSelected={handleIndicatorSelected}
|
|
747
|
+
indicator="dc__gender__F__amputation_due_to_diabetic_foot"
|
|
748
|
+
/>
|
|
749
|
+
</td>
|
|
750
|
+
<td className={styles.darkBorder}></td>
|
|
751
|
+
</tr>
|
|
752
|
+
|
|
753
|
+
<tr className={styles.sectionHeader}>
|
|
754
|
+
<td className={styles.darkBorder} colSpan={4}>
|
|
755
|
+
OTHER INDICATORS
|
|
756
|
+
</td>
|
|
757
|
+
</tr>
|
|
758
|
+
<tr>
|
|
759
|
+
<td className={styles.darkBorder}>No. with kidney complications (new diagnosis)</td>
|
|
760
|
+
<td className={styles.darkBorder}></td>
|
|
761
|
+
<td className={styles.darkBorder}></td>
|
|
762
|
+
<td className={styles.darkBorder}></td>
|
|
763
|
+
</tr>
|
|
764
|
+
<tr>
|
|
765
|
+
<td className={styles.darkBorder}>No. with diabetic retinopathy (new diagnosis)</td>
|
|
766
|
+
<td className={styles.darkBorder}></td>
|
|
767
|
+
<td className={styles.darkBorder}></td>
|
|
768
|
+
<td className={styles.darkBorder}></td>
|
|
769
|
+
</tr>
|
|
770
|
+
<tr>
|
|
771
|
+
<td className={styles.darkBorder}>No. Screened for Tuberculosis</td>
|
|
772
|
+
<td className={styles.darkBorder}>
|
|
773
|
+
<DataCell
|
|
774
|
+
value={moh740Data.dc__gender__M__screened_for_tb_this_month}
|
|
775
|
+
indicatorSelected={handleIndicatorSelected}
|
|
776
|
+
indicator="dc__gender__M__screened_for_tb_this_month"
|
|
777
|
+
/>
|
|
778
|
+
</td>
|
|
779
|
+
<td className={styles.darkBorder}>
|
|
780
|
+
<DataCell
|
|
781
|
+
value={moh740Data.dc__gender__F__screened_for_tb_this_month}
|
|
782
|
+
indicatorSelected={handleIndicatorSelected}
|
|
783
|
+
indicator="dc__gender__F__screened_for_tb_this_month"
|
|
784
|
+
/>
|
|
785
|
+
</td>
|
|
786
|
+
<td className={styles.darkBorder}></td>
|
|
787
|
+
</tr>
|
|
788
|
+
<tr>
|
|
789
|
+
<td className={styles.darkBorder}>No. Screened Positive for Tuberculosis</td>
|
|
790
|
+
<td className={styles.darkBorder}>
|
|
791
|
+
<DataCell
|
|
792
|
+
value={moh740Data.dc__gender__M__screened_postive_for_tb_this_month}
|
|
793
|
+
indicatorSelected={handleIndicatorSelected}
|
|
794
|
+
indicator="dc__gender__M__screened_postive_for_tb_this_month"
|
|
795
|
+
/>
|
|
796
|
+
</td>
|
|
797
|
+
<td className={styles.darkBorder}>
|
|
798
|
+
<DataCell
|
|
799
|
+
value={moh740Data.dc__gender__M__screened_postive_for_tb_this_month}
|
|
800
|
+
indicatorSelected={handleIndicatorSelected}
|
|
801
|
+
indicator="dc__gender__M__screened_postive_for_tb_this_month"
|
|
802
|
+
/>
|
|
803
|
+
</td>
|
|
804
|
+
<td className={styles.darkBorder}></td>
|
|
805
|
+
</tr>
|
|
806
|
+
<tr>
|
|
807
|
+
<td className={styles.darkBorder}>No. enrolled with NHIF</td>
|
|
808
|
+
<td className={styles.darkBorder}>
|
|
809
|
+
<DataCell
|
|
810
|
+
value={moh740Data.dc__gender__M__covered_by_shif}
|
|
811
|
+
indicatorSelected={handleIndicatorSelected}
|
|
812
|
+
indicator="dc__gender__M__covered_by_shif"
|
|
813
|
+
/>
|
|
814
|
+
</td>
|
|
815
|
+
<td className={styles.darkBorder}>
|
|
816
|
+
<DataCell
|
|
817
|
+
value={moh740Data.dc__gender__F__covered_by_shif}
|
|
818
|
+
indicatorSelected={handleIndicatorSelected}
|
|
819
|
+
indicator="dc__gender__F__covered_by_shif"
|
|
820
|
+
/>
|
|
821
|
+
</td>
|
|
822
|
+
<td className={styles.darkBorder}></td>
|
|
823
|
+
</tr>
|
|
824
|
+
|
|
825
|
+
<tr className={styles.subHeader}>
|
|
826
|
+
<td className={styles.darkBorder}>Total No. admitted (for only inpatients)</td>
|
|
827
|
+
<td className={styles.darkBorder}></td>
|
|
828
|
+
<td className={styles.darkBorder}></td>
|
|
829
|
+
<td className={styles.darkBorder}></td>
|
|
830
|
+
</tr>
|
|
831
|
+
<tr>
|
|
832
|
+
<td className="darkBorder indent">No. admitted with DKA</td>
|
|
833
|
+
<td className={styles.darkBorder}></td>
|
|
834
|
+
<td className={styles.darkBorder}></td>
|
|
835
|
+
<td className={styles.darkBorder}></td>
|
|
836
|
+
</tr>
|
|
837
|
+
<tr>
|
|
838
|
+
<td className="darkBorder indent">No. admitted with Hypoglycemia</td>
|
|
839
|
+
<td className={styles.darkBorder}></td>
|
|
840
|
+
<td className={styles.darkBorder}></td>
|
|
841
|
+
<td className={styles.darkBorder}></td>
|
|
842
|
+
</tr>
|
|
843
|
+
<tr>
|
|
844
|
+
<td className="darkBorder indent">No. admitted with Stroke</td>
|
|
845
|
+
<td className={styles.darkBorder}></td>
|
|
846
|
+
<td className={styles.darkBorder}></td>
|
|
847
|
+
<td className={styles.darkBorder}></td>
|
|
848
|
+
</tr>
|
|
849
|
+
<tr>
|
|
850
|
+
<td className="darkBorder indent">No. admitted with hypertension urgency/emergency</td>
|
|
851
|
+
<td className={styles.darkBorder}></td>
|
|
852
|
+
<td className={styles.darkBorder}></td>
|
|
853
|
+
<td className={styles.darkBorder}></td>
|
|
854
|
+
</tr>
|
|
855
|
+
|
|
856
|
+
<tr>
|
|
857
|
+
<td className={styles.darkBorder}>Total deaths due to diabetes complications</td>
|
|
858
|
+
<td className={styles.darkBorder}></td>
|
|
859
|
+
<td className={styles.darkBorder}></td>
|
|
860
|
+
<td className={styles.darkBorder}></td>
|
|
861
|
+
</tr>
|
|
862
|
+
<tr>
|
|
863
|
+
<td className={styles.darkBorder}>Total deaths due to hypertension complications</td>
|
|
864
|
+
<td className={styles.darkBorder}></td>
|
|
865
|
+
<td className={styles.darkBorder}></td>
|
|
866
|
+
<td className={styles.darkBorder}></td>
|
|
867
|
+
</tr>
|
|
868
|
+
</tbody>
|
|
869
|
+
</table>
|
|
870
|
+
|
|
871
|
+
<div className={styles.signOff}>
|
|
872
|
+
<p>
|
|
873
|
+
Compiled by: Name: ___________________________________ Designation:
|
|
874
|
+
___________________________________
|
|
875
|
+
</p>
|
|
876
|
+
<p>Signature: ___________________________________ Date: ___________________________________</p>
|
|
877
|
+
</div>
|
|
878
|
+
</>
|
|
879
|
+
) : (
|
|
880
|
+
<>No Data to display</>
|
|
881
|
+
)}
|
|
882
|
+
</>
|
|
883
|
+
)}
|
|
884
|
+
</div>
|
|
885
|
+
</>
|
|
886
|
+
) : (
|
|
887
|
+
<></>
|
|
888
|
+
)}
|
|
889
|
+
{view === 'register' ? (
|
|
890
|
+
<>
|
|
891
|
+
<Button kind="primary" onClick={handleBackToReport}>
|
|
892
|
+
Back to report
|
|
893
|
+
</Button>
|
|
894
|
+
<Moh740PatientList
|
|
895
|
+
locationUuid={locationUuid}
|
|
896
|
+
reportingMonth={reportingMonth}
|
|
897
|
+
indicators={selectedIndicator}
|
|
898
|
+
/>
|
|
899
|
+
</>
|
|
900
|
+
) : (
|
|
901
|
+
<></>
|
|
902
|
+
)}
|
|
903
|
+
</div>
|
|
904
|
+
</>
|
|
905
|
+
);
|
|
906
|
+
};
|
|
907
|
+
export default Moh740Report;
|