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

<ng-container *ngIf='type === "remark"'>
<div class="rarc-code">
<div class="description tooltip">
<a (mouseleave)="hideTooltip()" (blur)="hideTooltip()" (mouseenter)="showTooltip()" (focus)="showTooltip()" tabindex="0">{{data.remarkLong}}
<span [class.showTooltip]="displayTooltip">{{data.code}}: {{data.remarkLong}}</span>
</a>
</div>
</div>
</ng-container>

<ng-container *ngIf='type === "remark_v2"'>
<button (mouseleave)="hideTooltip()" (blur)="hideTooltip()" (mouseenter)="showTooltip()" (focus)="showTooltip()" tabindex="0"
class="description tooltip button-links">{{data.code}}
<span [class.showTooltip]="displayTooltip">{{data.code}}: {{data.remarkLong}}</span>
</button>
</ng-container>

<ng-container *ngIf='type === "tableAdj"'>
<a (mouseleave)="hideTooltip()" (blur)="hideTooltip()" (mouseenter)="showTooltip()" (focus)="showTooltip()" tabindex="0"
class="description tooltip"> {{ data.adjustment?.adjustmentCode }}
<span [class.showTooltip]="displayTooltip">{{ data.adjustment?.descriptionLong }}</span>
</a>
</ng-container>
<!-- [tabindex]="data ? 0 : -1" -->

<!-- added tabindex logic to pull span out of tab flow if there is no data -->
<ng-container *ngIf='type === "tableAdj_v2"'>
<a (mouseleave)="hideTooltip()" (blur)="hideTooltip()" (mouseenter)="showTooltip()" (focus)="showTooltip()" [tabindex]="data ? 0 : -1"
class="description tooltip"> {{ data?.adjustmentCode }}
<span [class.showTooltip]="displayTooltip">{{ data?.descriptionLong }}</span>
</a>
</ng-container>

<ng-container *ngIf='type === "tob"'>
<a tabindex="0" (mouseleave)="hideTooltip()" (blur)="hideTooltip()" (mouseenter)="showTooltip()" (focus)="showTooltip()"
class="description tooltip">
<strong>TOB: {{ data?.typeOfBill }}</strong>/{{ data?.frequency }}
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('0')">Non-Payment/Zero Claim</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('1')">Admit Through Discharge Claim</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('2')">Interim &ndash; First Claim</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('3')">Interim &ndash; Continuing Claim</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('4')">Interim &ndash; Last Claim</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('5')">Late Charge Only</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('6')">Adjustment of Prior Claim</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('7')">Replacement of Prior Claim</span>
<span [class.showTooltip]="displayTooltip" *ngIf="data?.frequency.includes('8')">Void/Cancel of Prior Claim</span>
</a>
</ng-container>