Skip to content

Commit

Permalink
Modify encounter uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
sainingo committed Dec 14, 2023
1 parent cf50715 commit 96f4f3e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/models/group.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class Group extends BaseModel {
}

public get viralSuppression() {
return this._viralSuppression || 'Unkown ' + '%';
return this._viralSuppression || 'Unkown %';
}

public set viralSuppression(value: string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,7 @@ export class FormentryComponent implements OnInit, OnDestroy {
this.handleSuccessfulFormSubmission(data);
this.formSubmissionService.setSubmitStatus(false);
this.enableSubmitBtn();
if (this.formUuid === 'e2c0990c-4d2b-4c09-806f-cffe50a8fc27') {
if (this.formUuid === 'ca5ccb72-5623-4b94-97a3-6b5dac5f8560') {
this.isOtzProgram = true;
this.enrollPatientToOtzProgram();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export class PatientBannerComponent implements OnInit, OnDestroy, OnChanges {
}

public enrollToOtz() {
const otzEnrollmentFormUuid = 'e2c0990c-4d2b-4c09-806f-cffe50a8fc27';
const otzEnrollmentFormUuid = 'ca5ccb72-5623-4b94-97a3-6b5dac5f8560';
this.router.navigate([
'/patient-dashboard/patient/' +
this.patient.uuid +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class NewProgramComponent
this.selectedProgram.concept.uuid ===
'fd90d6b2-7302-4a9c-ad1b-1f93eff77afb'
) {
const otzEnrollmentFormUuid = 'e2c0990c-4d2b-4c09-806f-cffe50a8fc27';
const otzEnrollmentFormUuid = 'ca5ccb72-5623-4b94-97a3-6b5dac5f8560';
this.showOtzEnrollmentForm = true;
this.router.navigate([
'/patient-dashboard/patient/' +
Expand Down

0 comments on commit 96f4f3e

Please sign in to comment.