Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Registers for presentation #1753

Draft
wants to merge 40 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
0f9f49e
POC-737: Development of MOH Registers
Alfred-Mutai May 23, 2024
624b758
POC-737: Development of MOH Registers
Alfred-Mutai May 23, 2024
09c6223
POC-746: MOH 366 Care and Treatment Daily Activity
Alfred-Mutai May 24, 2024
5a10e2c
POC-746 added data for HEI
hiqedme Jun 5, 2024
a5232dc
Poc 739 (#1752)
hiqedme Jun 6, 2024
148920e
POC-746: MOH 366 Care and Treatment Daily Activity
Alfred-Mutai May 24, 2024
ac43659
POC-746 added data for HEI
hiqedme Jun 5, 2024
913d9d8
POC-746 added data for HEI
hiqedme Jun 6, 2024
fc99ebf
Merge pull request #33 from hiqedme/POC-746
hiqedme Jun 6, 2024
fa3ef39
POC-746 added data for HEI
hiqedme Jun 6, 2024
97a7a8e
POC-737: Development of MOH Registers
Alfred-Mutai May 23, 2024
7c1602b
POC-745: MOH 267 PrEP Daily Activity Register
Alfred-Mutai May 27, 2024
143a6f7
Added data
Alfred-Mutai Jun 6, 2024
71a6672
Initial MOH731 template
Alfred-Mutai May 2, 2024
9646e25
Initial MOH731 template
Alfred-Mutai May 2, 2024
d3e8c22
MOH-731 added section 2 and 5
hiqedme May 3, 2024
c062771
MOH-731 added section 4.3
hiqedme May 3, 2024
88fe84c
Updated MOH template
Alfred-Mutai May 6, 2024
dd89299
MOH-731: Updated report
Alfred-Mutai May 8, 2024
5e4b3bc
Sorted formatting
Alfred-Mutai May 8, 2024
7209edd
Sorted formatting
Alfred-Mutai May 8, 2024
4118a33
Updated PSW to FSW
Alfred-Mutai May 9, 2024
7e76fb4
Sorted formatting
Alfred-Mutai May 14, 2024
f15256e
POC-743: MOH 406 PNC Register.
Alfred-Mutai May 30, 2024
e490455
POC-730: Internal movement form, add Patient type with options Antena…
Alfred-Mutai May 16, 2024
835edd7
POC-730: Internal movement form, add Patient type with options Antena…
Alfred-Mutai May 16, 2024
4770e9f
mch bugfix
Alfred-Mutai May 28, 2024
4b6bb5a
POC-738: Initial commit
Alfred-Mutai May 28, 2024
949a95c
POC-738: MOH 405 ANC Register
Alfred-Mutai May 29, 2024
572f218
POC-738: MOH 405 ANC Register
Alfred-Mutai May 29, 2024
c35f77b
POC-738: MOH 405 ANC Register
Alfred-Mutai May 30, 2024
a7295e3
POC-746: MOH 366 Care and Treatment Daily Activity
Alfred-Mutai May 24, 2024
3d8f0e7
POC-739: MOH 408 HIV Exposed Infant Registers
Alfred-Mutai May 23, 2024
5c0b6c3
POC-741: MOH 333 Maternity Register
Alfred-Mutai May 30, 2024
bbbb55f
POC-742: MOH 362 HTS Lab Refferal & Linkage Register.
Alfred-Mutai May 30, 2024
ff30018
POC-740: MOH 407 Nutrition Service RegisterMOH 407 Nutrition Service …
Alfred-Mutai May 31, 2024
ec2b536
POC-740: MOH 407 Nutrition Service RegisterMOH 407 Nutrition Service …
Alfred-Mutai May 31, 2024
82ef807
Updated registers
Alfred-Mutai Jun 12, 2024
3b7f217
Updated registers
Alfred-Mutai Jun 12, 2024
3db0482
Updated registers
Alfred-Mutai Jun 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ import { TxMmdReportComponent } from './datim-reports/tx-mmd-report.component';
import { TxRttReportComponent } from './datim-reports/tx-rtt-report.component';
import { AhdReportComponent } from './ahd-report/ahd-report.component';
import { PlhivNcdV2ReportComponent } from './plhiv-ncd-v2-report/plhiv-ncd-v2-report.component';
import { RegistersComponent } from './registers/registers.component';
import { HeiRegisterComponent } from './registers/hei-register/hei-register.component';
import { AncRegisterComponent } from './registers/anc-register/anc-register.component';
import { NutritionRegisterComponent } from './registers/nutrition-register/nutrition-register.component';
import { MaternityRegisterComponent } from './registers/maternity-register/maternity-register.component';
import { HtsrefferallinkageRegisterComponent } from './registers/htsrefferallinkage-register/htsrefferallinkage-register.component';
import { PncRegisterComponent } from './registers/pnc-register/pnc-register.component';
import { DefaultertracingRegisterComponent } from './registers/defaultertracing-register/defaultertracing-register.component';
import { PrepdailyRegisterComponent } from './registers/prepdaily-register/prepdaily-register.component';
import { CntdailyRegisterComponent } from './registers/cntdaily-register/cntdaily-register.component';

@NgModule({
imports: [
Expand Down Expand Up @@ -97,7 +107,17 @@ import { PlhivNcdV2ReportComponent } from './plhiv-ncd-v2-report/plhiv-ncd-v2-re
TxMmdReportComponent,
TxRttReportComponent,
PlhivNcdV2ReportComponent,
AhdReportComponent
AhdReportComponent,
RegistersComponent,
HeiRegisterComponent,
AncRegisterComponent,
NutritionRegisterComponent,
MaternityRegisterComponent,
HtsrefferallinkageRegisterComponent,
PncRegisterComponent,
DefaultertracingRegisterComponent,
PrepdailyRegisterComponent,
CntdailyRegisterComponent
],
providers: [
DataAnalyticsDashboardService,
Expand Down
100 changes: 100 additions & 0 deletions src/app/data-analytics-dashboard/hiv/data-analytics-hiv.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ import { AhdReportComponent } from './ahd-report/ahd-report.component';
import { AhdMonthlyReportPatientlistComponent } from 'src/app/hiv-care-lib/ahd-monthly-report/ahd-monthly-report-patientlist/ahd-monthly-report-patientlist.component';
import { PlhivNcdV2ReportPatientListComponent } from 'src/app/hiv-care-lib/plhiv-ncd-v2-report/plhiv-ncd-v2-report-patient-list/plhiv-ncd-v2-report-patient-list.component';
import { PlhivNcdV2ReportComponent } from './plhiv-ncd-v2-report/plhiv-ncd-v2-report.component';
import { RegistersComponent } from './registers/registers.component';
import { HeiRegisterComponent } from './registers/hei-register/hei-register.component';
import { AncRegisterComponent } from './registers/anc-register/anc-register.component';
import { NutritionRegisterComponent } from './registers/nutrition-register/nutrition-register.component';
import { MaternityRegisterComponent } from './registers/maternity-register/maternity-register.component';
import { HtsrefferallinkageRegisterComponent } from './registers/htsrefferallinkage-register/htsrefferallinkage-register.component';
import { PncRegisterComponent } from './registers/pnc-register/pnc-register.component';
import { DefaultertracingRegisterComponent } from './registers/defaultertracing-register/defaultertracing-register.component';
import { PrepdailyRegisterComponent } from './registers/prepdaily-register/prepdaily-register.component';
import { CntdailyRegisterComponent } from './registers/cntdaily-register/cntdaily-register.component';

const routes: Routes = [
{
Expand Down Expand Up @@ -285,6 +295,96 @@ const routes: Routes = [
}
]
},
{
path: 'registers',
children: [
{
path: '',
component: RegistersComponent
},
{
path: 'hei-register',
children: [
{
path: '',
component: HeiRegisterComponent
}
]
},
{
path: 'anc-register',
children: [
{
path: '',
component: AncRegisterComponent
}
]
},
{
path: 'nutrition-register',
children: [
{
path: '',
component: NutritionRegisterComponent
}
]
},
{
path: 'maternity-register',
children: [
{
path: '',
component: MaternityRegisterComponent
}
]
},
{
path: 'htsrefferallinkage-register',
children: [
{
path: '',
component: HtsrefferallinkageRegisterComponent
}
]
},
{
path: 'pnc-register',
children: [
{
path: '',
component: PncRegisterComponent
}
]
},
{
path: 'defaultertracing-register',
children: [
{
path: '',
component: DefaultertracingRegisterComponent
}
]
},
{
path: 'prepdaily-register',
children: [
{
path: '',
component: PrepdailyRegisterComponent
}
]
},
{
path: 'cntdaily-register',
children: [
{
path: '',
component: CntdailyRegisterComponent
}
]
}
]
},
{
path: 'datim-report',
children: [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
tr,
.table-bordered th,
.table-bordered td {
border: 2px solid #000; /* Darker border color */
}
tbody tr {
height: 20px; /* Adjust the height as per your design */
}
.vertical-text {
writing-mode: vertical-rl;
text-orientation: mixed;
transform: rotate(180deg);
white-space: nowrap;
}
th {
min-width: 70px;
}
Loading
Loading