Переглянути джерело

Updated default mcr & mcd numbers

Samson Mutunga 3 роки тому
батько
коміт
26c210f612

+ 3 - 2
resources/views/app/patient/primary-coverage-form.blade.php

@@ -1,5 +1,6 @@
 <?php
 	$medicaidStates = Config::get('constants.medicaid_states');
+	$cpc = $patient->latestClientPrimaryCoverage;
 ?>
 	<div id="new-coverage-form-{{$patient->uid}}">
 		<div class="p-3">
@@ -155,7 +156,7 @@
 
 					<div class="form-group col-md-6">
 						<label class="control-label">Medicaid Number</label>
-						<input type="text" name="mcdNumber" class="form-control input-sm" oninput="this.value = this.value.toUpperCase()">
+						<input type="text" name="mcdNumber" class="form-control input-sm" value="{{ $cpc->mcd_number ?? '' }}" oninput="this.value = this.value.toUpperCase()">
 					</div>
 				</div>
 
@@ -165,7 +166,7 @@
 					</div>
 					<div class="form-group col-md-6">
 						<label class="control-label">Medicare Number</label>
-						<input type="text" name="mcrNumber" class="form-control input-sm" oninput="this.value = this.value.toUpperCase()">
+						<input type="text" name="mcrNumber" class="form-control input-sm" value="{{ $cpc->mcr_number ?? '' }}" oninput="this.value = this.value.toUpperCase()">
 					</div>
 
 				</div>

+ 3 - 3
resources/views/app/patient/primary-coverage-manual-determination-view-commercial.blade.php

@@ -3,9 +3,9 @@
 	<table class="table table-sm table-bordered table-striped">
 		<thead>
 			<tr>
-				<th></th>
-				<th>Automatic</th>
-				<th>Override</th>
+				<th class="border-bottom-0"></th>
+				<th class="border-bottom-0">Automatic</th>
+				<th class="border-bottom-0">Override</th>
 			</tr>
 		</thead>
 		<tbody>

+ 3 - 3
resources/views/app/patient/primary-coverage-manual-determination-view-medicaid.blade.php

@@ -3,9 +3,9 @@
 	<table class="table table-sm table-bordered table-striped">
 		<thead>
 			<tr>
-				<th></th>
-				<th>Automatic</th>
-				<th>Override</th>
+				<th class="border-bottom-0"></th>
+				<th class="border-bottom-0">Automatic</th>
+				<th class="border-bottom-0">Override</th>
 			</tr>
 		</thead>
 		<tbody>

+ 3 - 3
resources/views/app/patient/primary-coverage-manual-determination-view-medicare.blade.php

@@ -3,9 +3,9 @@
 	<table class="table table-sm table-bordered table-striped">
 		<thead>
 			<tr>
-				<th></th>
-				<th>Automatic</th>
-				<th>Override</th>
+				<th class="border-bottom-0"></th>
+				<th class="border-bottom-0">Automatic</th>
+				<th class="border-bottom-0">Override</th>
 			</tr>
 		</thead>
 		<tbody>