|
@@ -1653,47 +1653,13 @@
|
|
|
</td>
|
|
|
<td class="border-right p-0">
|
|
|
|
|
|
- <!-- status -->
|
|
|
- <div class="p-1 border-bottom">
|
|
|
- <div>
|
|
|
- {{$claim->status ? $claim->status : '(not set)'}}
|
|
|
- @if($claim->status !== 'CANCELLED')
|
|
|
- <span moe class="d-inline-block text-left ml-1" title="Update Status">
|
|
|
- <a class="" href="" show start><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/claim/updateStatus">
|
|
|
- <input type="hidden" name="uid" value="{{$claim->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label for="" class="control-label">Status</label>
|
|
|
- <select name="status" class="form-control form-control-sm" required>
|
|
|
- <option value="">-- select --</option>
|
|
|
- <option value="NEW" {{$claim->status === 'NEW' ? 'selected' : ''}}>New</option>
|
|
|
- <option value="PROCESSING" {{$claim->status === 'PROCESSING' ? 'selected' : ''}}>Processing</option>
|
|
|
- <option value="SUBMITTED" {{$claim->status === 'SUBMITTED' ? 'selected' : ''}}>Submitted</option>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label for="" class="control-label">Status Memo</label>
|
|
|
- <textarea name="memo" class="form-control"></textarea>
|
|
|
- </div>
|
|
|
- <div class="mb-0">
|
|
|
- <button class="btn btn-primary btn-sm" submit>Submit</button>
|
|
|
- <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- @if($claim->status_memo)
|
|
|
- <div class="text-secondary font-italic text-sm">{{$claim->status_memo}}</div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
-
|
|
|
<!-- payer, company, location -->
|
|
|
<div class="p-1">
|
|
|
<div class="mt-1">
|
|
|
+ <div>
|
|
|
<span class="text-secondary text-sm">Payer (1°): </span>
|
|
|
<b>{{$claim->primaryPayer ? $claim->primaryPayer->name : '-'}}</b>
|
|
|
- @if($claim->status !== 'CANCELLED')
|
|
|
+ @if(0 && $claim->status !== 'CANCELLED')
|
|
|
<span moe class="ml-1">
|
|
|
<a class="text-primary" href="" show start><i class="fa fa-edit"></i></a>
|
|
|
<form url="/api/claim/putPrimaryPayer">
|
|
@@ -1727,6 +1693,44 @@
|
|
|
</span>
|
|
|
@endif
|
|
|
@endif
|
|
|
+ </div>
|
|
|
+ <div class="py-1 border-bottom d-flex align-items-center">
|
|
|
+ <span class="text-secondary text-sm pr-1">Status: </span>
|
|
|
+ <div>
|
|
|
+ {{$claim->status ? $claim->status : '(not set)'}}
|
|
|
+ @if($claim->status !== 'CANCELLED')
|
|
|
+ <span moe class="d-inline-block text-left ml-1" title="Update Status">
|
|
|
+ <a class="" href="" show start><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/claim/updateStatus">
|
|
|
+ <input type="hidden" name="uid" value="{{$claim->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label for="" class="control-label">Status</label>
|
|
|
+ <select name="status" class="form-control form-control-sm" required>
|
|
|
+ <option value="">-- select --</option>
|
|
|
+ <option value="NEW" {{$claim->status === 'NEW' ? 'selected' : ''}}>New</option>
|
|
|
+ <option value="SUBMITTED" {{$claim->status === 'SUBMITTED' ? 'selected' : ''}}>Submitted</option>
|
|
|
+ <option value="IN_PROCESS" {{$claim->status === 'IN_PROCESS' ? 'selected' : ''}}>In Process</option>
|
|
|
+ <option value="ACCEPTED" {{$claim->status === 'ACCEPTED' ? 'selected' : ''}}>Accepted</option>
|
|
|
+ <option value="REJECTED" {{$claim->status === 'REJECTED' ? 'selected' : ''}}>Rejected</option>
|
|
|
+ <option value="ABANDONED" {{$claim->status === 'ABANDONED' ? 'selected' : ''}}>Abandoned</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label for="" class="control-label">Status Memo</label>
|
|
|
+ <textarea name="memo" class="form-control"></textarea>
|
|
|
+ </div>
|
|
|
+ <div class="mb-0">
|
|
|
+ <button class="btn btn-primary btn-sm" submit>Submit</button>
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </span>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ @if($claim->status_memo)
|
|
|
+ <div class="text-secondary font-italic text-sm">{{$claim->status_memo}}</div>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div class="mt-1">
|
|
@@ -1737,7 +1741,7 @@
|
|
|
<div class="mt-1">
|
|
|
<span class="text-secondary text-sm">Company: </span>
|
|
|
<b>{{$claim->companyPro && $claim->companyPro->company ? $claim->companyPro->company->name : '-'}}</b>
|
|
|
- @if($claim->status !== 'CANCELLED')
|
|
|
+ @if(0 && $claim->status !== 'CANCELLED')
|
|
|
<span moe class="ml-1">
|
|
|
<a class="text-primary" href="" show start><i class="fa fa-edit"></i></a>
|
|
|
<form url="/api/claim/putCompanyPro">
|
|
@@ -1776,7 +1780,7 @@
|
|
|
<div class="mt-1">
|
|
|
<span class="text-secondary text-sm">Location: </span>
|
|
|
<b>{{$claim->companyLocation ? $claim->companyLocation->line1 . ', ' . $claim->companyLocation->city : '-'}}</b>
|
|
|
- @if($claim->status !== 'CANCELLED')
|
|
|
+ @if(0 && $claim->status !== 'CANCELLED')
|
|
|
<span moe class="ml-1">
|
|
|
<a class="text-primary" href="" show start><i class="fa fa-edit"></i></a>
|
|
|
<form url="/api/claim/putCompanyLocation">
|