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 #1757

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 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
7a9a298
POC-739: MOH 408 HIV Exposed Infant Registers
Alfred-Mutai May 23, 2024
e7fe89b
POC-739 added data for HEI
hiqedme Jun 5, 2024
d8cab96
POC-730: Internal movement form, add Patient type with options Antena…
Alfred-Mutai May 28, 2024
046f8cb
POC-746: MOH 366 Care and Treatment Daily Activity
Alfred-Mutai May 24, 2024
601b066
POC-746 added data for HEI
hiqedme Jun 5, 2024
5021108
POC-739 added data for HEI
hiqedme Jun 5, 2024
6fafa51
POC-746 added data for HEI
hiqedme Jun 6, 2024
614f3be
POC-737: Development of MOH Registers
Alfred-Mutai May 23, 2024
835ced2
POC-745: MOH 267 PrEP Daily Activity Register
Alfred-Mutai May 27, 2024
20ea139
Added data
Alfred-Mutai Jun 6, 2024
ff631c6
Initial MOH731 template
Alfred-Mutai May 2, 2024
826adc0
Initial MOH731 template
Alfred-Mutai May 2, 2024
bff5f26
MOH-731 added section 2 and 5
hiqedme May 3, 2024
9084b7d
MOH-731 added section 4.3
hiqedme May 3, 2024
f3d7dd5
Updated MOH template
Alfred-Mutai May 6, 2024
2747695
MOH-731: Updated report
Alfred-Mutai May 8, 2024
ff4498f
Sorted formatting
Alfred-Mutai May 8, 2024
32a8c94
Sorted formatting
Alfred-Mutai May 8, 2024
6c4c7d9
Updated PSW to FSW
Alfred-Mutai May 9, 2024
26adbbe
Sorted formatting
Alfred-Mutai May 14, 2024
537eb5b
POC-743: MOH 406 PNC Register.
Alfred-Mutai May 30, 2024
f465d33
POC-730: Internal movement form, add Patient type with options Antena…
Alfred-Mutai May 16, 2024
6059a2f
POC-730: Internal movement form, add Patient type with options Antena…
Alfred-Mutai May 16, 2024
f1de209
mch bugfix
Alfred-Mutai May 28, 2024
204d461
POC-738: Initial commit
Alfred-Mutai May 28, 2024
28dbffe
POC-738: MOH 405 ANC Register
Alfred-Mutai May 29, 2024
82b009e
POC-738: MOH 405 ANC Register
Alfred-Mutai May 29, 2024
4bffc2e
POC-738: MOH 405 ANC Register
Alfred-Mutai May 30, 2024
9253940
POC-746: MOH 366 Care and Treatment Daily Activity
Alfred-Mutai May 24, 2024
58a74cf
POC-741: MOH 333 Maternity Register
Alfred-Mutai May 30, 2024
f9d565d
POC-742: MOH 362 HTS Lab Refferal & Linkage Register.
Alfred-Mutai May 30, 2024
9bf9afd
POC-740: MOH 407 Nutrition Service RegisterMOH 407 Nutrition Service …
Alfred-Mutai May 31, 2024
3208bd5
POC-740: MOH 407 Nutrition Service RegisterMOH 407 Nutrition Service …
Alfred-Mutai May 31, 2024
99b3235
POC-746 added data for HEI
hiqedme Jun 5, 2024
89c395d
POC-737: Development of MOH Registers
Alfred-Mutai May 23, 2024
529fa76
POC-737: Development of MOH Registers
Alfred-Mutai May 23, 2024
059ab43
POC-746 added PrEP changes
hiqedme Jun 6, 2024
793b6f6
POC-746 added PrEP changes
hiqedme Jun 6, 2024
bda9c23
POC-746 added PrEP changes
hiqedme Jun 6, 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
4 changes: 2 additions & 2 deletions src/app/build-version/build-version.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { VERSION } from '../../environments/version';
})
export class BuildVersionComponent implements OnInit {
public version: string;
public buildDate: Date;
public buildDate: any;
public hash: string;
constructor() {}

Expand All @@ -20,7 +20,7 @@ export class BuildVersionComponent implements OnInit {
try {
this.version = VERSION.version;
this.hash = VERSION.hash;
this.buildDate = new Date(VERSION.buildDate);
this.buildDate = 'Feb 15, 2024, 6:38:55 PM'; // new Date(VERSION.buildDate);
} catch (e) {}
}
}
16 changes: 15 additions & 1 deletion src/app/constants/program.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ const PMTCT_PROGRAM: Program = {
dept: 'HIV',
compatibleWithOtherDeptPrograms: false
};
const ANC_PROGRAM: Program = {
uuid: '52aeb285-fb18-455b-893e-3e53ccc77ceb',
name: 'ANTENATAL CARE PROGRAM',
dept: 'HIV',
compatibleWithOtherDeptPrograms: false
};
const PNC_PROGRAM: Program = {
uuid: 'd2552058-d7bd-47c6-aed1-480a4308027a',
name: 'POSTNATAL PROGRAM',
dept: 'HIV',
compatibleWithOtherDeptPrograms: false
};
const STANDARD_HIV_PROGRAM: Program = {
uuid: '781d85b0-1359-11df-a1f1-0026b9348838',
name: 'STANDARD HIV TREATMENT',
Expand Down Expand Up @@ -122,5 +134,7 @@ export const Programs = {
EXPRESS_CARE_PROGRAM,
DTG_PHARMACO_VIGILANCE_PROGRAM,
HIV_SOCIAL_WORK_PROGRAM,
NUTRITION_PROGRAM
NUTRITION_PROGRAM,
ANC_PROGRAM,
PNC_PROGRAM
};
6 changes: 5 additions & 1 deletion src/app/constants/referral-concepts.contants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const PPP_REFERRAL_CONCEPT = '4e6d1c61-624c-4350-a604-374f835aa481';
const PATIENT_PREFERENCE_CONCEPT = '7e7d4555-362a-498a-b5ed-abcddcfce2a7';
const STANDARD_HIV_CARE_REFERRAL_CONCEPT =
'b412ae76-4ab4-4d00-800e-bd8d167769e1';
const ANC_CONCEPT = '375e6d4a-ba94-41ac-8ac3-5a56015c4d92';
const PNC_CONCEPT = 'c5789e91-2c76-450a-94f7-94fce32335d3';

export const ReferralConcepts = {
differentiatedCareConceptUuid,
Expand All @@ -27,5 +29,7 @@ export const ReferralConcepts = {
BACK_TO_CCC_REFERRAL_CONCEPT,
PPP_REFERRAL_CONCEPT,
PATIENT_PREFERENCE_CONCEPT,
STANDARD_HIV_CARE_REFERRAL_CONCEPT
STANDARD_HIV_CARE_REFERRAL_CONCEPT,
ANC_CONCEPT,
PNC_CONCEPT
};
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