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 *ngIf="serviceLevelAmbulance">
<div class="accordion ewv" [ngClass]="{'split': isSplitView}">
<input id="{{accordionId}}" type="checkbox" [(ngModel)]="collapseState" role="button" aria-label="Service-Level Ambulance Information Section">
<label for="{{accordionId}}">Service-Level Ambulance Information</label>
<!-- Accordion Content -->
<div class="accordion-content row">
<app-messages [ewvNoInfo]="serviceLevelAmbulance?.length === 0" [ewvMsg]="serviceLvlMsg"></app-messages>
<div class="row"></div>
<div *ngIf="serviceLevelAmbulance?.length !== 0">
<div *ngFor="let service of serviceLevel">
<!-- Added NGIF to DIV below hide null values -->
<div *ngIf= "service?.serviceLineLevelAmbulanceInfo">
<div class="col three" [ngStyle]="{'width': isSplitView ? '788px' : '1191px'}">
<h4 id="HDG_lineNumber_serviceLvlAmbulanceInfo_1">Line Number: {{service.lineNumber}}</h4>
</div>
<!-- Added NGIF to DIV below to hide lines -->
<div class="info-table">
<!-- Service-Level Ambulance Info: SECTION 1 -->
<div class="row col one">
<h4 id="HDG_pickupLocation_serviceLvlAmbulanceInfo_1">Pick-Up Location</h4>
<table id="TBL_pickupLocation_serviceLvlAmbulanceInfo_1">
<tbody>
<tr>
<th>
Address 1:
</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.pickupAddressLine1}}</td>
</tr>
<tr>
<th>
Address 2:
</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.pickupAddressLine2}}</td>
</tr>
<tr>
<th>
City:
</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.pickupCity}}</td>
</tr>
<tr>
<th>
State:
</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.pickupState}}</td>
</tr>
<tr>
<th>
ZIP Code:
</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.pickupZip}}</td>
</tr>
</tbody>
</table>
</div>
<div class="row col one no-flow">
<h4 id="LBL_dropoffLocation_serviceLvlAmbulanceInfo_1">Drop-Off Location</h4>
<table id="TBL_dropoffLocation_serviceLvlAmbulanceInfo_1">
<tbody>
<tr>
<th>Address 1:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.dropoffAddressLine1}}</td>
</tr>
<tr>
<th>Address 2:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.dropoffAddressLine2}}</td>
</tr>
<tr>
<th>City:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.dropoffCity}}</td>
</tr>
<tr>
<th>State:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.dropoffState}}</td>
</tr>
<tr>
<th>ZIP Code:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.dropoffZip}}</td>
</tr>
</tbody>
</table>
</div>
<!-- Service-Level Ambulance Info: SECTION 2 -->
<div>
<div class="row" style="border-bottom: 1px solid #ccc;"></div>
<div class="row col one">
<table id="TBL_transport_claimLvlAmbulanceInfo_1">
<tbody>
<tr>
<th>Transport Reason Code:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.transportReasonCode}}</td>
</tr>
<tr>
<th>
Transport Distance Miles:
</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.transportDistance}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row col one no-flow">
<table id="TBL_transport_claimLvlAmbulanceInfo_2">
<tbody>
<tr>
<th>Round Trip Purpose:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.roundTripPurpose}}</td>
</tr>
<tr>
<th> Stretcher Purpose:</th>
<td>{{service?.serviceLineLevelAmbulanceInfo?.stretcherPurpose}}</td>
</tr>
</tbody>
</table>
</div>
<!-- Service-Level Ambulance Info: SECTION 3 -->
<div>
<div class="row" style="border-bottom: 1px solid #ccc;"></div>
<div class="row col one">
<table id="TBL_certification_claimLvlAmbulanceInfo_1">
<tbody>
<tr *ngFor="let c of service.certs">
<th>Certification Indicator:</th>
<td>{{c?.certIndicator}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row col one no-flow">
<table id="TBL_ambulanceConditionCode_claimLvlAmbulanceInfo_1">
<tbody>
<tr *ngFor="let c of service.certs">
<th>Ambulance Cond. Code:</th>
<td>{{c?.conditionCodes}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>