|
@@ -73,14 +73,29 @@
|
|
|
<div class="d-flex align-items-start mt-2 pt-1 border-top">
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_name') ? 'text-info' : 'text-secondary'}}">Name</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_ces') && request()->input('f_ces') !== 'ACTIVE' ? 'font-weight-bold text-info' : 'text-secondary'}}">Status</label>
|
|
|
+ <select name="f_ces" class="mr-2 form-control form-control-sm min-width-unset max-width-110px pl-0">
|
|
|
+ <option {{!request()->input('f_ces') || request()->input('f_ces') === 'ACTIVE' ? 'selected' : ''}} value="ACTIVE">Active</option>
|
|
|
+ <option {{request()->input('f_ces') === 'INACTIVE' ? 'selected' : ''}} value="INACTIVE">Inactive</option>
|
|
|
+ <option {{request()->input('f_ces') === 'ENTRY_ERROR' ? 'selected' : ''}} value="ENTRY_ERROR">Entry Error</option>
|
|
|
+ <option {{request()->input('f_ces') === 'DUMMY' ? 'selected' : ''}} value="DUMMY">Test Chart</option>
|
|
|
+ <option {{request()->input('f_ces') === 'DECEASED' ? 'selected' : ''}} value="DECEASED">Deceased</option>
|
|
|
+ <option {{request()->input('f_ces') === 'DUPLICATE' ? 'selected' : ''}} value="DUPLICATE">Duplicate</option>
|
|
|
+ <option {{request()->input('f_ces') === 'NO_LONGER_INTERESTED' ? 'selected' : ''}} value="NO_LONGER_INTERESTED">No Longer Interested</option>
|
|
|
+ <option {{request()->input('f_ces') === 'BAD_RECORD' ? 'selected' : ''}} value="BAD_RECORD">Bad Record</option>
|
|
|
+ <option {{request()->input('f_ces') === 'NO_LONGER_ELIGIBLE' ? 'selected' : ''}} value="NO_LONGER_ELIGIBLE">No Longer Eligible</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_name') ? 'font-weight-bold text-info' : 'text-secondary'}}">Name</label>
|
|
|
<input type="text"
|
|
|
class="mr-2 form-control form-control-sm min-width-unset max-width-110px"
|
|
|
name="f_name" value="{{request()->input('f_name')}}">
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_dob') ? 'text-info' : 'text-secondary'}}">DOB</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_dob') ? 'font-weight-bold text-info' : 'text-secondary'}}">DOB</label>
|
|
|
<div class="d-flex align-items-start">
|
|
|
<select name="f_dob_op"
|
|
|
class="mr-1 form-control form-control-sm min-width-unset width-40px pl-0">
|
|
@@ -97,7 +112,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_rpm') && request()->input('f_rpm') !== 'any' ? 'text-info' : 'text-secondary'}}">RPM</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_rpm') && request()->input('f_rpm') !== 'any' ? 'font-weight-bold text-info' : 'text-secondary'}}">RPM</label>
|
|
|
<select name="f_rpm"
|
|
|
class="mr-2 form-control form-control-sm min-width-unset width-70px pl-0">
|
|
|
<option {{request()->input('f_rpm') === 'any' ? 'selected' : ''}} value="any">Any</option>
|
|
@@ -107,7 +122,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_cell_bp') && request()->input('f_cell_bp') !== 'any' ? 'text-info' : 'text-secondary'}}">Cell. BP</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_cell_bp') && request()->input('f_cell_bp') !== 'any' ? 'font-weight-bold text-info' : 'text-secondary'}}">Cell. BP</label>
|
|
|
<select name="f_cell_bp"
|
|
|
class="mr-2 form-control form-control-sm min-width-unset width-70px pl-0">
|
|
|
<option {{request()->input('f_cell_bp') === 'any' ? 'selected' : ''}} value="any">Any</option>
|
|
@@ -117,7 +132,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_cell_wt') && request()->input('f_cell_wt') !== 'any' ? 'text-info' : 'text-secondary'}}">Cell. Wt</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_cell_wt') && request()->input('f_cell_wt') !== 'any' ? 'font-weight-bold text-info' : 'text-secondary'}}">Cell. Wt</label>
|
|
|
<select name="f_cell_wt"
|
|
|
class="mr-2 form-control form-control-sm min-width-unset width-70px pl-0">
|
|
|
<option {{request()->input('f_cell_wt') === 'any' ? 'selected' : ''}} value="any">Any</option>
|
|
@@ -127,7 +142,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_comm') && request()->input('f_comm') !== 'any' ? 'text-info' : 'text-secondary'}}">Comm.</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_comm') && request()->input('f_comm') !== 'any' ? 'font-weight-bold text-info' : 'text-secondary'}}">Comm.</label>
|
|
|
<select name="f_comm"
|
|
|
class="mr-2 form-control form-control-sm min-width-unset width-70px pl-0">
|
|
|
<option {{request()->input('f_comm') === 'any' ? 'selected' : ''}} value="any">Any</option>
|
|
@@ -137,7 +152,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_md') ? 'text-info' : 'text-secondary'}}">Meas. Days</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_md') ? 'font-weight-bold text-info' : 'text-secondary'}}">Meas. Days</label>
|
|
|
<div class="d-flex align-items-start">
|
|
|
<select name="f_md_op"
|
|
|
class="mr-1 form-control form-control-sm min-width-unset width-40px pl-0">
|
|
@@ -154,7 +169,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_unst') ? 'text-info' : 'text-secondary'}}">Unstamped</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_unst') ? 'font-weight-bold text-info' : 'text-secondary'}}">Unstamped</label>
|
|
|
<div class="d-flex align-items-start">
|
|
|
<select name="f_unst_op"
|
|
|
class="mr-1 form-control form-control-sm min-width-unset width-40px pl-0">
|
|
@@ -171,7 +186,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_mcp_mins') ? 'text-info' : 'text-secondary'}}">MCP Mins.</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_mcp_mins') ? 'font-weight-bold text-info' : 'text-secondary'}}">MCP Mins.</label>
|
|
|
<div class="d-flex align-items-start">
|
|
|
<select name="f_mcp_mins_op"
|
|
|
class="mr-1 form-control form-control-sm min-width-unset width-40px pl-0">
|
|
@@ -188,7 +203,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_rmm_mins') ? 'text-info' : 'text-secondary'}}">RMM Mins.</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_rmm_mins') ? 'font-weight-bold text-info' : 'text-secondary'}}">RMM Mins.</label>
|
|
|
<div class="d-flex align-items-start">
|
|
|
<select name="f_rmm_mins_op"
|
|
|
class="mr-1 form-control form-control-sm min-width-unset width-40px pl-0">
|
|
@@ -206,7 +221,7 @@
|
|
|
|
|
|
{{--
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_mcp_billable') && request()->input('f_mcp_billable') !== 'any' ? 'text-info' : 'text-secondary'}}">MCP Billable</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_mcp_billable') && request()->input('f_mcp_billable') !== 'any' ? 'font-weight-bold text-info' : 'text-secondary'}}">MCP Billable</label>
|
|
|
<select name="f_mcp_billable"
|
|
|
class="mr-2 form-control form-control-sm min-width-unset width-70px pl-0">
|
|
|
<option {{request()->input('f_mcp_billable') === 'all' ? 'selected' : ''}} value="any">All</option>
|
|
@@ -216,7 +231,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="mb-0 text-sm {{request()->input('f_rmm_billable') && request()->input('f_rmm_billable') !== 'any' ? 'text-info' : 'text-secondary'}}">RMM Billable</label>
|
|
|
+ <label class="mb-0 text-sm {{request()->input('f_rmm_billable') && request()->input('f_rmm_billable') !== 'any' ? 'font-weight-bold text-info' : 'text-secondary'}}">RMM Billable</label>
|
|
|
<select name="f_rmm_billable"
|
|
|
class="mr-2 form-control form-control-sm min-width-unset width-70px pl-0">
|
|
|
<option {{request()->input('f_rmm_billable') === 'all' ? 'selected' : ''}} value="any">All</option>
|