Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
<div class="sr-only">Beginning of Modal Dialog. Press escape to return to main screen.</div>
<div class="modal-header text-left">
<h2 class="modal-title detail-popup-title" tabIndex="0">
<span class="data-label">Provider Narrative:</span> {{ data.description }}
</h2>
<span class="text-right data-label detail-popup-label">Problem</span>
</div>
<div class="modal-body detail-popup-body">
<div class="container-fluid">
<div class="row mx-1 ">
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Problem Category: </span>
<span class="data-value">{{ data.category }}</span>
</div>
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Diagnosis: </span>
<span class="data-value">{{ data.diagnosis }}</span>
</div>
</div>
<div class="row mx-1 ">
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Coding System: </span>
<span class="data-value">{{ data.codingSystem }}</span>
</div>
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Code Number: </span>
<span class="data-value">{{ data.diagnosisCode }}</span>
</div>
</div><br />
<div class="row mx-1 ">
<div class="col-sm-12" tabIndex="0">
<span class="data-label">Onset Date: </span>
<span class="data-value">{{ data.onsetDate | date: 'MM/dd/yyyy HH:mm' }}</span>
</div>
</div>
<div class="row mx-1 ">
<div class="col-sm-12" tabIndex="0">
<span class="data-label">Status/Verified/Immediacy: </span>
<span class="data-value">{{ data.status }}/{{ data.verified }}/{{ data.immediacy }}
</span>
</div>
</div>
<div class="row mx-1 ">
<div class="col-sm-12" tabIndex="0">
<span class="data-label">Service Connected Condition: </span>
<span class="data-value">{{ data.serviceConnected ? 'Yes' : 'No' }}</span>
</div>
</div>
<div class="row mx-1">
<div class="col-sm-12" tabIndex="0">
<span class="data-label">Exposure: </span>
<span *ngIf="data.exposures">
<span class="data-value" *ngFor="let exp of data.exposures; let i = index">
<span *ngIf="i == 0">{{ exp }}</span>
<span *ngIf="i > 0" style="margin-left:60px;">{{ exp }}</span><br />
</span>
</span>
<span *ngIf="!data.exposures">None</span>
</div>
</div><br />
<div class="row mx-1 ">
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Provider: </span>
<span class="data-value">{{ data.provider }}</span>
</div>
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Service: </span>
<span class="data-value">{{ data.service }}</span>
</div>
</div>
<div class="row mx-1 ">
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Clinic: </span>
<span class="data-value">{{ data.clinic }}</span>
</div>
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Facility: </span>
<span class="data-value" *ngIf="data.facility">{{ data.facility.siteName
+ '(' + data.facility.stationNumber + ')' }}</span>
</div>
</div><br />
<div class="row mx-1 ">
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Date Recorded: </span>
<span class="data-value">{{ data.recordedDate | date: 'MM/dd/yyyy HH:mm' }}</span>
</div>
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Recorded By: </span>
<span class="data-value">{{ data.recordedBy }}</span>
</div>
</div>
<div class="row mx-1 ">
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Date Entered: </span>
<span class="data-value">{{ data.entryDate | date: 'MM/dd/yyyy HH:mm' }}</span>
</div>
<div class="col-sm-6" tabIndex="0">
<span class="data-label">Entered By: </span>
<span class="data-value">{{ data.enteredBy }}</span>
</div>
</div>
<div class="row mx-1 ">
<div class="col-sm-12" tabIndex="0">
<span class="data-label">Last Updated: </span>
<span class="data-value">{{ data.lastUpdatedDate | date: 'MM/dd/yyyy HH:mm' }}</span>
</div>
</div><br />
<div class="row mx-1 ">
<div class="col-sm-12" tabIndex="0">
<span class="data-label">Comments: </span>
<span *ngIf="data.comments">
<span class="data-value" *ngFor="let comment of data.comments">
<br /><span>Date Note Added: {{ comment.signature?.signDate | date: 'MM/dd/yyyy HH:mm' }}</span>
<span style="margin-left:30px;">Author: {{ comment.signature?.signator }}</span><br />
<span>Note Narrative: {{ comment.text }}</span><br />
</span>
</span>
</div>
</div><br />
<div class="row mx-1 ">
<div class="col-sm-12" tabIndex="0">
<span class="data-label">Audit History: </span>
<span *ngIf="data.auditHistory">
<span class="data-value" *ngFor="let audit of data.auditHistory">
<br /><span>Date/Time Modified: {{ audit.modifiedDate | date: 'MM/dd/yyyy HH:mm' }}</span>
<span style="margin-left:15px;">Who Modified: {{ audit.modifiedBy }}</span><br />
<span>{{ audit.fieldChanged }} changed from {{ audit.oldValue }} to {{ audit.newValue }}</span>
<br />
</span>
</span>
</div>
</div><br />
<div class="modal-footer" style="justify-content:space-around">
<button type="button" class="btn btn-outline-dark" (click)="cancel()">Close</button>
</div>
</div>
</div>