Samson Mutunga 3 лет назад
Родитель
Сommit
4b406857ea

+ 2 - 2
resources/views/app/patient/note/dashboard-bu-b4-pure-soap.blade.php

@@ -1068,11 +1068,11 @@
                                         }
                                     ?>
                                     @if(!$emptyICD)
-                                        <span class="badge badge-info px-2 mb-1 mr-2">{{$noteICD['description']}} ({{ $noteICD['reason'] }})</span>
+                                    <span class="badge badge-info px-2 mb-1 mr-2">{{$noteICD['reason']}} @if(!empty($noteICD['description']))({{ $noteICD['description'] }})@endif</span>
                                     @endif
                                 @endforeach
                             @if($emptyNoteICDs)
-                                <small class="text-warning">No note reasons</small>
+                                <small class="text-dark">-</small>
                             @endif
                         </div>
                     </div>

+ 2 - 2
resources/views/app/patient/note/dashboard-univ.blade.php

@@ -901,11 +901,11 @@
                                                 }
                                             ?>
                                             @if(!$emptyICD)
-                                                <span class="badge badge-info px-2 mb-1 mr-2">{{$noteICD['description']}} ({{ $noteICD['reason'] }})</span>
+                                            <span class="badge badge-info px-2 mb-1 mr-2">{{$noteICD['reason']}} @if(!empty($noteICD['description']))({{ $noteICD['description'] }})@endif</span>
                                             @endif
                                         @endforeach
                                     @if($emptyNoteICDs)
-                                        <small class="text-warning">No note reasons</small>
+                                        <small class="text-dark">-</small>
                                     @endif
                                 </div>
                             </div>

+ 2 - 2
resources/views/app/patient/note/dashboard.blade.php

@@ -1119,11 +1119,11 @@ use App\Models\Handout;
                                         }
                                     ?>
                                     @if(!$emptyICD)
-                                        <span class="badge badge-info px-2 mb-1 mr-2">{{$noteICD['description']}} ({{ $noteICD['reason'] }})</span>
+                                        <span class="badge badge-info px-2 mb-1 mr-2">{{$noteICD['reason']}} @if(!empty($noteICD['description']))({{ $noteICD['description'] }})@endif</span>
                                     @endif
                                 @endforeach
                             @if($emptyNoteICDs)
-                                <small class="text-warning">No note reasons</small>
+                                <small class="text-dark">-</small>
                             @endif
                         </div>                        
                     </div>

+ 1 - 1
resources/views/app/patient/note/rpm-agreement.blade.php

@@ -43,7 +43,7 @@
     <?php $patient = $note->client; ?>
 
     <div class="border rounded p-3 mb-3 max-width-500px" id="rpm-agreement-reasons-{{$note->id}}">
-        <div class="d-flex align-items-center">
+        <div class="d-flex align-items-center mb-2">
             <p class="mb-0 mr-2"><b>RM Reasons</b></p>
             <div>@include('app.patient.partials.put-rm-reasons', ['recordType' => 'CLIENT', 'record' => $patient])</div>
         </div>

+ 10 - 5
resources/views/app/patient/primary-coverage-manual-determination-medicaid-modal.blade.php

@@ -3,12 +3,17 @@
 	$cpc = $patient->latestClientPrimaryCoverage;
 	@endphp
 	<div class="p-3">
-		@if($cpc->mcd_number)
-		<div class="mb-2">
-			<span><b>Medicaid Number:</b> {{$cpc->mcd_number}}</span>
-			<span class="ml-3"><b>Medicaid State:</b> {{$cpc->mcd_payer_id ? $cpc->mcdPayer->name : '-'}}</span>
+		<div class="d-flex flex-wrap">
+			@if($cpc->mcd_number)
+			<div class="mb-2">
+				<span><b>Medicaid Number:</b> {{$cpc->mcd_number}}</span>
+				<span class="ml-3"><b>Medicaid State:</b> {{$cpc->mcd_payer_id ? $cpc->mcdPayer->name : '-'}}</span>
+			</div>
+			@endif
+			<div class="mb-2 mr-2">
+				<span><b>Is Covered:</b> {{$cpc->is_covered}}</span>
+			</div>
 		</div>
-		@endif
 		<form @submit.prevent="submitForm" method="post" class="mcp-theme-1">
 			<input type="hidden" name="clientPrimaryCoverageUid" value="{{$cpc->uid}}" class="form-control input-sm" />
 			<div class="row">

+ 9 - 4
resources/views/app/patient/primary-coverage-manual-determination-medicare-modal.blade.php

@@ -3,11 +3,16 @@
 	$cpc = $patient->latestClientPrimaryCoverage;
 	@endphp
 	<div class="p-3">
-		@if($cpc->mcr_number)
-		<div class="mb-2">
-			<b>Medicare Number:</b> {{$cpc->mcr_number}}
+		<div class="d-flex flex-wrap">
+			@if($cpc->mcr_number)
+			<div class="mb-2">
+				<b>Medicare Number:</b> {{$cpc->mcr_number}}
+			</div>
+			@endif
+			<div class="mb-2 mr-2">
+				<span><b>Is Covered:</b> {{$cpc->is_covered}}</span>
+			</div>
 		</div>
-		@endif
 		<form @submit.prevent="submitForm" method="post" class="mcp-theme-1">
 			<input type="hidden" name="clientPrimaryCoverageUid" value="{{$cpc->uid}}" class="form-control input-sm" />
 			<div class="row">