diff --git a/angular/src/app/patients/all-patients/all-patients.component.html b/angular/src/app/patients/all-patients/all-patients.component.html
index 3874c1c..08f7a61 100644
--- a/angular/src/app/patients/all-patients/all-patients.component.html
+++ b/angular/src/app/patients/all-patients/all-patients.component.html
@@ -104,13 +104,14 @@
Patient ID |
+ Card ID |
Full Name |
Gender |
- Date of Admission |
Blood Group |
Mobile |
+ Age |
Email |
- Status |
+ Insurance |
Actions |
@@ -118,22 +119,18 @@
{{ patient.id }} |
+ {{patient.patientCardId}} |
{{ patient.name }} |
{{ gender[patient.gender] }}
|
- {{ patient.admissionDate | date }} |
{{ patient.bloodGroup }} |
{{ patient.mobile }} |
+ {{patient.age}} |
{{ patient.email }} |
-
-
- {{ status[patient.status] }}
-
- |
+ {{patient.insuranceProvider}} |
|
@@ -101,15 +87,19 @@
{{ gender[patientrecord.patients.gender] }}
+
{{'Dr. ' + patientrecord.doctorAssigned?.firstName + ' '
+ +
+ patientrecord.doctorAssigned?.lastName}} |
{{ patientrecord.dateOfAdmission | date }} |
+ {{ patientrecord.dischargeDate | date }} |
+ {{ patientrecord.nextFollowUp | date }} |
{{ patientrecord.diagnosis }} |
|
|
- {{ patientrecord.nextFollowUp | date }} |
- {{ status[patientrecord.patients.status] }}
+ [ngClass]="patientrecord.status === 1 ? 'bg-success' : (patientrecord.status === 2 ? 'bg-primary':'bg-danger')">
+ {{ status[patientrecord.status] }}
|
@@ -136,38 +126,82 @@
[closable]="true" [style]="{width: '70%', height: 'auto'}">
|