Skip to content

Commit

Permalink
POC-39:Separate CCC Number From Other Identifiers (AMPATH#1549)
Browse files Browse the repository at this point in the history
Co-authored-by: Kipchumba C. Bett <[email protected]>
  • Loading branch information
2 people authored and hiqedme committed Apr 4, 2023
1 parent 5207bd6 commit 9f76724
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ export class PatientStatusChangeListComponent implements OnInit, OnDestroy {
width: 200,
field: 'cur_meds'
},
{
headerName: 'CCC Identifier',
width: 200,
field: 'ccc_number'
},
{
headerName: 'Latest VL',
width: 75,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,27 @@ export class PatientGainsAndLosesPatientListComponent implements OnInit {
{
headerName: 'Name',
field: 'person_name',
width: 250,
width: 200,
pinned: true
},
{
headerName: 'CCC Identifier',
field: 'ccc_number',
width: 100,
pinned: 'left'
},
{
headerName: 'OVCID',
field: 'ovcid_id',
width: 100,
pinned: 'left'
},
{
headerName: 'NUPI Identifier',
field: 'upi_number',
width: 100,
pinned: 'left'
},
{ headerName: 'Gender', field: 'gender', width: 100 },
{ headerName: 'Age', field: 'age', width: 100 }
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,36 @@ export class PatientListColumns {
filter: 'text',
cellClass: 'identifier-column'
},
{
headerName: 'CCC Identifier',
width: 120,
field: 'ccc_number',
cellStyle: {
'white-space': 'normal'
},
pinned: true,
filter: 'text'
},
{
headerName: 'OVCID',
width: 120,
field: 'ovcid_id',
cellStyle: {
'white-space': 'normal'
},
pinned: true,
filter: 'text'
},
{
headerName: 'NUPI Identifier',
width: 120,
field: 'upi_number',
cellStyle: {
'white-space': 'normal'
},
pinned: true,
filter: 'text'
},
{
headerName: 'Person Name',
width: 120,
Expand Down

0 comments on commit 9f76724

Please sign in to comment.