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="accordion ewv" [ngClass]="{'split': isSplitView}">
<!-- Accordion Trigger -->
<input id={{accordionId}} type="checkbox" [(ngModel)]="collapseState" role="button" aria-label="Vendor Information Section">
<label for={{accordionId}}>Vendor Information</label>
<!-- Accordion Content -->
<div class="accordion-content row">
<app-messages [ewvNoInfo]="!serviceLocationInfo" [ewvMsg]="vendorInfoMsg"></app-messages>
<div class="row"></div>
<div class="row">
<div class="info-table">
<!-- Vendor Column One -->
<div *ngIf="serviceLocationInfo" class="col one icon-func">
<h4>Service Location Information
<img class="clickable" src="./../../assets/images/ic_copy_address_blue_24.svg" title="Copy Service Location Address" alt="Copy Service Location Address"
tabindex="0" (click)="copyServiceLocationInformationAddressToClipboard()" (keyup.enter)="copyServiceLocationInformationAddressToClipboard()">
</h4>
<table id="TBL_infoColumn_vendorInfo_1" *ngIf="serviceLocationInfo">
<tbody>
<tr>
<th>
Tax ID:
</th>
<td>
{{serviceLocationInfo?.taxIdNumber || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Vendor:
</th>
<td>
{{serviceLocationInfo?.name || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Address 1:
</th>
<td>
{{serviceLocationInfo?.addressLineOne || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Address 2:
</th>
<td>
{{serviceLocationInfo?.addressLineTwo || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
City:
</th>
<td>
{{serviceLocationInfo?.city || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
State:
</th>
<td>
{{serviceLocationInfo?.state || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
ZIP Code:
</th>
<td>
{{serviceLocationInfo?.postalCode || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Country:
</th>
<td>
{{serviceLocationInfo?.country || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
NPI:
</th>
<td>
{{serviceLocationInfo?.npi || '\u2013\u2013\u2013'}}
</td>
</tr>
</tbody>
</table>
</div>
<!-- Vendor Column Two -->
<div *ngIf="billingProviderInfo" class="col one no-flow icon-func">
<h4>Billing Provider Information
<img class="clickable" src="./../../assets/images/ic_copy_address_blue_24.svg" title="Copy Vendor Address" title="Copy Billing Provider Address"
tabindex="0" (click)="copyBillingProviderInformationAddressToClipboard()" (keyup.enter)="copyBillingProviderInformationAddressToClipboard()">
</h4>
<table id="TBL_infoColumn_vendorInfo_2" *ngIf="billingProviderInfo">
<tbody>
<tr>
<th>
Tax ID:
</th>
<td>
{{billingProviderInfo?.taxIdNumber || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Vendor:
</th>
<td>
{{billingProviderInfo?.name || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Address 1:
</th>
<td>
{{billingProviderInfo?.addressLineOne || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Address 2:
</th>
<td>
{{billingProviderInfo?.addressLineTwo || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
City:
</th>
<td>
{{billingProviderInfo?.city || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
State:
</th>
<td>
{{billingProviderInfo?.state || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
ZIP Code:
</th>
<td>
{{billingProviderInfo?.postalCode || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Country:
</th>
<td>
{{billingProviderInfo?.country || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
NPI:
</th>
<td>
{{billingProviderInfo?.npi || '\u2013\u2013\u2013'}}
</td>
</tr>
<tr>
<th>
Taxonomy Code:
</th>
<td>
{{billingProviderInfo?.billingVendorTaxonomyCode || '\u2013\u2013\u2013'}}
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>