Skip to content

Commit

Permalink
Added indentifier check for BHIM and Prep identifiers in patient crea…
Browse files Browse the repository at this point in the history
…tion (AMPATH#1297)
  • Loading branch information
maikofelix47 authored Sep 2, 2020
1 parent ee1fa7f commit 8f20735
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/patient-creation/patient-creation.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,14 @@ export class PatientCreationService {
{
label: 'KUZA ID', format: '^KUZA\\d{5}$', checkdigit: 0,
val: 'd1e5ef63-126f-4b1f-bd3f-496c16c4098d'
},
{
label: 'BHIM', format: '^B\\d{5}-\\d{5}$', checkdigit: 0,
val: '5b91df4a-db7d-4c52-ac85-ac519420d82e'
},
{
label: 'PrEP', format: '^\\d{5}-\\d{4}-\\d{5}$', checkdigit: 0,
val: '91099b3f-69be-4607-a309-bd358d85af46'
}
];
}
Expand Down

0 comments on commit 8f20735

Please sign in to comment.