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
<h4 id="clinic-profile-based-on-types-of-care-heading" class="table-heading" tabindex="0">Clinic Profile Based Types of Care</h4>
<div class="panel panel-default">
<div class="panel-body">
<!-- type of care table -->
<div class="list-table page-table page">
<div class="header">
<div>
<span class="table-header-separator" tabindex="0">
<span>Type of Care<br>(Primary/Secondary Stop Code)</span>
</span>
<span class="table-header-separator" tabindex="0">
<span>Supported at this Facility?</span>
</span>
<span class="table-header-separator" tabindex="0">
<span required-field is-required="true"><span class="sr-only">is required</span>Last seen within (Months)</span>
</span>
<span tabindex="0">
<span required-field is-required="true"><span class="sr-only">is required</span>Submitted Request Limit</span>
</span>
</div>
</div>
<ul>
<li ng-repeat="request in request.requestSettings | orderBy:'typeOfCare' | movePrimaryCareToTop">
<span class="type-of-care-cell"> <!-- type of care column -->
<span>
<span class="sr-only">Type of Care</span>
<span class="cell-content">{{request.typeOfCare}}<br>
<span class="sr-only">(Primary/Secondary Stop Code)</span>
<span class="cell-stop-codes" ng-repeat="stopCode in request.stopCodes">{{$first ? '(' : ''}}{{stopCode|formatStopCodes}}{{!$last ? ', ' : ')'}}</span>
<span ng-if="request.enterpriseSubmittedRequestLimit === 0"><br>VA does not support request submission at this time.</span>
</span>
</span>
</span>
<span> <!-- supported at this facility column -->
<span>
<label for="{{formatter.toDashCase(request.typeOfCare)}}-request-supported" class="sr-only">
Supported at this Facility? {{request.typeOfCare}}
<span>stop codes - </span><span ng-repeat="stopCode in request.stopCodes">{{$first ? '(' : ''}}{{stopCode|formatStopCodes}}{{!$last ? ', ' : ')'}}</span>
</label>
<!-- primary care dropdown -->
<select formatted-empty-string-to-null-value
id="{{formatter.toDashCase(request.typeOfCare)}}-request-supported"
ng-if="request.id === '323'"
name="{{formatter.toDashCase(request.typeOfCare)}}-request-supported"
class="form-control"
ng-model="request.patientHistoryRequired"
ng-disabled = "isDisabled(request.enterpriseSubmittedRequestLimit)"
ng-options="isSupported.value as isSupported.response for isSupported in supportedMenu | filter: {value: 'No'}">
<option value="">No</option>
</select>
<!-- other type dropdown -->
<select formatted-empty-string-to-null-value
id="{{formatter.toDashCase(request.typeOfCare)}}-request-supported"
ng-if="request.id !== '323'"
name="{{formatter.toDashCase(request.typeOfCare)}}-request-supported"
class="form-control"
ng-model="request.patientHistoryRequired"
ng-disabled = "isDisabled(request.enterpriseSubmittedRequestLimit)"
ng-options="isSupported.value as isSupported.response for isSupported in supportedMenu">
<option value="">No</option>
</select>
</span>
</span>
<span> <!-- last seen within months column -->
<span ng-if="request.patientHistoryRequired === 'Yes'">
<label required-field is-required="true" for="{{formatter.toDashCase(request.typeOfCare)}}-request-last-seen" class="sr-only">
Last Seen Within (Months) {{request.typeOfCare}}
<span>stop codes - </span><span ng-repeat="stopCode in request.stopCodes">{{$first ? '(' : ''}}{{stopCode|formatStopCodes}}{{!$last ? ', ' : ')'}}</span>
</label>
<select required required-non-zero-value
id="{{formatter.toDashCase(request.typeOfCare)}}-request-last-seen"
name="{{formatter.toDashCase(request.typeOfCare)}}-request-last-seen"
class="form-control"
ng-model="request.patientHistoryDuration"
ng-options="lastSeen.value as lastSeen.days for lastSeen in lastSeenMenu">
<option value="">Select</option>
</select>
</span>
</span>
<span> <!-- submitted request limit column -->
<span ng-if = "request.patientHistoryRequired">
<label required-field is-required="true" for="{{formatter.toDashCase(request.typeOfCare)}}-request-limit" class="sr-only">
Submitted Request Limit {{request.typeOfCare}}
<span>stop codes - </span><span ng-repeat="stopCode in request.stopCodes">{{$first ? '(' : ''}}{{stopCode|formatStopCodes}}{{!$last ? ', ' : ')'}}</span>
</label>
<select required required-non-zero-value
id="{{formatter.toDashCase(request.typeOfCare)}}-request-limit"
name="{{formatter.toDashCase(request.typeOfCare)}}-request-limit"
class="form-control"
ng-model="request.submittedRequestLimit"
ng-options="numbers.value as numbers.max for numbers in maxSubmittedRequestMenu | filterSubmittedRequestLimit: request.enterpriseSubmittedRequestLimit">
<option value="">Select</option>
</select>
</span>
</span>
</li>
</ul>
</div>
<div class="resetting-panel-btn">
<button id="type-of-care-reset-btn" type="button" class="btn btn-secondary" ng-click="resetTypeOfCare()">Reset</button>
</div>
</div>
</div>