Samson Mutunga пре 3 година
родитељ
комит
086b691f90

+ 1 - 1
config/app.php

@@ -65,7 +65,7 @@ return [
 
     'hrm2_url' => env('HRM2_URL'),
 
-    'asset_version' => 75,
+    'asset_version' => 76,
 
     'temp_dir' => env('TEMP_DIR'),
 

+ 23 - 0
public/css/style.css

@@ -3422,3 +3422,26 @@ table.v-top td,
 table.v-top th {
     vertical-align:top;
 }
+
+.icd-input {
+    width: 95px;
+    height: calc(1.5em + 0.5rem + 2px);
+    padding: 0.25rem 0.5rem;
+    font-size: 12px;
+    line-height: 1.5;
+    border-radius: 0.2rem;
+    font-weight: 400;
+    color: #495057;
+    background-color: #fff;
+    background-clip: padding-box;
+    border: 1px solid #ced4da;
+    border-radius: 0.25rem;
+    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
+}
+.icd-input:focus {
+    color: #495057;
+    background-color: #fff;
+    border-color: #80bdff;
+    outline: 0;
+    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
+}

+ 5 - 5
resources/views/app/patient/care-month/put-rm-reasons.blade.php

@@ -13,7 +13,7 @@
 				<tbody>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code data-target="input[name=rmReasonIcd1Description]" name="rmReasonIcd1" value="{{ $careMonth->rm_reason_icd1 }}" placeholder="ICD 1" />
+							<input type="text" class="icd-input" icd-autocomplete-code data-target="input[name=rmReasonIcd1Description]" name="rmReasonIcd1" value="{{ $careMonth->rm_reason_icd1 }}" placeholder="ICD 1" />
 						</td>
 						<td>
 							<input id="" type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd1Description" value="{{ $careMonth->rm_reason_icd1description }}">
@@ -21,7 +21,7 @@
 					</tr>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code name="rmReasonIcd2" data-target="input[name=rmReasonIcd2Description]" value="{{ $careMonth->rm_reason_icd2 }}" placeholder="ICD 2" />
+							<input type="text" class="icd-input" icd-autocomplete-code name="rmReasonIcd2" data-target="input[name=rmReasonIcd2Description]" value="{{ $careMonth->rm_reason_icd2 }}" placeholder="ICD 2" />
 						</td>
 						<td>
 							<input type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd2Description" value="{{ $careMonth->rm_reason_icd2description }}">
@@ -29,15 +29,15 @@
 					</tr>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code name="rmReasonIcd3" data-target="input[name=rmReasonIcd3Description]" value="{{ $careMonth->rm_reason_icd3 }}" placeholder="ICD 3" />
+							<input type="text" class="icd-input" icd-autocomplete-code name="rmReasonIcd3" data-target="input[name=rmReasonIcd3Description]" value="{{ $careMonth->rm_reason_icd3 }}" placeholder="ICD 3" />
 						</td>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd3Description" value="{{ $careMonth->rm_reason_icd3description }}">
+							<input type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd3Description" value="{{ $careMonth->rm_reason_icd3description }}" >
 						</td>
 					</tr>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code name="rmReasonIcd4" data-target="input[name=rmReasonIcd4Description]" value="{{ $careMonth->rm_reason_icd4 }}" />
+							<input type="text" class="icd-input" icd-autocomplete-code name="rmReasonIcd4" data-target="input[name=rmReasonIcd4Description]" value="{{ $careMonth->rm_reason_icd4 }}" placeholder="ICD 4"/>
 						</td>
 						<td>
 							<input type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd4Description" value="{{ $careMonth->rm_reason_icd4description }}">

+ 5 - 5
resources/views/app/patient/care-month/rm-reasons.blade.php

@@ -6,7 +6,7 @@
     <table class="table table-sm table-striped table-bordered">
         <tbody>
             <tr>
-                <td class="text-nowrap">RM Reason Icd 1</td>
+                <td class="text-nowrap">ICD 1</td>
                 <td>
                     <div class="d-flex">
                         <span class="font-weight-bold text-sm mr-2" style="min-width:60px;">{{ $careMonth->rm_reason_icd1 ? $careMonth->rm_reason_icd1 . ':' : '' }}</span>
@@ -15,7 +15,7 @@
                 </td>
             </tr>
             <tr>
-                <td class="text-nowrap">RM Reason Icd 2</td>
+                <td class="text-nowrap">ICD 2</td>
                 <td>
                     <div class="d-flex">
                         <span class="font-weight-bold text-sm mr-2" style="min-width:60px;">{{ $careMonth->rm_reason_icd2 ? $careMonth->rm_reason_icd2 . ':' :'' }}</span>
@@ -24,7 +24,7 @@
                 </td>
             </tr>
             <tr>
-                <td class="text-nowrap">RM Reason Icd 3</td>
+                <td class="text-nowrap">ICD 3</td>
                 <td>
                     <div class="d-flex">
                         <span class="font-weight-bold text-sm mr-2" style="min-width:60px;">{{ $careMonth->rm_reason_icd3 ? $careMonth->rm_reason_icd3 . ':' : '' }}</span>
@@ -33,7 +33,7 @@
                 </td>
             </tr>
             <tr>
-                <td class="text-nowrap">RM Reason Icd 4</td>
+                <td class="text-nowrap">ICD 4</td>
                 <td>
                     <div class="d-flex">
                         <span class="font-weight-bold text-sm mr-2" style="min-width:60px;">{{ $careMonth->rm_reason_icd4 ? $careMonth->rm_reason_icd4 . ':' : '' }}</span>
@@ -42,7 +42,7 @@
                 </td>
             </tr>
             <tr>
-                <td class="text-nowrap">RM Reason Memo</td>
+                <td class="text-nowrap">Memo</td>
                 <td class="text-muted text-sm">{{ $careMonth->rm_reason_memo }}</td>
             </tr>
         </tbody>

+ 1 - 1
resources/views/app/patient/partials/client_bp_weight_phone_number_status.blade.php

@@ -1,7 +1,7 @@
 <div class="mb-1">
     <div class="border-bottom mb-2">
         <div>
-            Please ask the client to save the following numbers for receiving measurement sms messages.
+            Please ask the client to save the following numbers for receiving measurement SMS messages.
         </div>
         <div>
             Cardio1st BP sms number: {{config('app.bpSmsNumber')}}   

+ 4 - 4
resources/views/app/patient/partials/put-rm-reasons.blade.php

@@ -13,7 +13,7 @@
 				<tbody>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code data-target="input[name=rmReasonIcd1Description]" name="rmReasonIcd1" value="{{ $patient->rm_reason_icd1 }}" placeholder="ICD 1" />
+							<input type="text" class="icd-input" icd-autocomplete-code data-target="input[name=rmReasonIcd1Description]" name="rmReasonIcd1" value="{{ $patient->rm_reason_icd1 }}" placeholder="ICD 1" />
 						</td>
 						<td>
 							<input id="" type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd1Description" value="{{ $patient->rm_reason_icd1description }}">
@@ -21,7 +21,7 @@
 					</tr>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code name="rmReasonIcd2" data-target="input[name=rmReasonIcd2Description]" value="{{ $patient->rm_reason_icd2 }}" placeholder="ICD 2" />
+							<input type="text" class="icd-input" icd-autocomplete-code name="rmReasonIcd2" data-target="input[name=rmReasonIcd2Description]" value="{{ $patient->rm_reason_icd2 }}" placeholder="ICD 2" />
 						</td>
 						<td>
 							<input type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd2Description" value="{{ $patient->rm_reason_icd2description }}">
@@ -29,7 +29,7 @@
 					</tr>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code name="rmReasonIcd3" data-target="input[name=rmReasonIcd3Description]" value="{{ $patient->rm_reason_icd3 }}" placeholder="ICD 3" />
+							<input type="text" class="icd-input" icd-autocomplete-code name="rmReasonIcd3" data-target="input[name=rmReasonIcd3Description]" value="{{ $patient->rm_reason_icd3 }}" placeholder="ICD 3" />
 						</td>
 						<td>
 							<input type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd3Description" value="{{ $patient->rm_reason_icd3description }}">
@@ -37,7 +37,7 @@
 					</tr>
 					<tr>
 						<td>
-							<input type="text" class="form-control form-control-sm" icd-autocomplete-code name="rmReasonIcd4" data-target="input[name=rmReasonIcd4Description]" value="{{ $patient->rm_reason_icd4 }}" placeholder="ICD 4" />
+							<input type="text" class="icd-input" icd-autocomplete-code name="rmReasonIcd4" data-target="input[name=rmReasonIcd4Description]" value="{{ $patient->rm_reason_icd4 }}" placeholder="ICD 4" />
 						</td>
 						<td>
 							<input type="text" class="form-control form-control-sm" icd-autocomplete-description name="rmReasonIcd4Description" value="{{ $patient->rm_reason_icd4description }}">

+ 5 - 5
resources/views/app/patient/partials/rm-reasons-display.blade.php

@@ -1,7 +1,7 @@
 <table class="table table-sm table-striped table-bordered mb-0">
 	<tbody>
 		<tr>
-			<td class="text-nowrap">RM Reason Icd 1</td>
+			<td class="text-nowrap">ICD 1</td>
 			<td>
 				<div class="d-flex">
 					<span class="font-weight-bold text-sm mr-2" style="min-width: 60px;">{{ $patient->rm_reason_icd1 ? $patient->rm_reason_icd1. ':':'' }}</span>
@@ -10,7 +10,7 @@
 			</td>
 		</tr>
 		<tr>
-			<td class="text-nowrap">RM Reason Icd 2</td>
+			<td class="text-nowrap">ICD 2</td>
 			<td>
 				<div class="d-flex">
 					<span class="font-weight-bold text-sm mr-2" style="min-width: 60px;">{{ $patient->rm_reason_icd2 ? $patient->rm_reason_icd2 . ':':'' }}</span>
@@ -19,7 +19,7 @@
 			</td>
 		</tr>
 		<tr>
-			<td class="text-nowrap">RM Reason Icd 3</td>
+			<td class="text-nowrap">ICD 3</td>
 			<td>
 				<div class="d-flex">
 					<span class="font-weight-bold text-sm mr-2" style="min-width: 60px;">{{ $patient->rm_reason_icd3 ? $patient->rm_reason_icd3 . ':':'' }}</span>
@@ -28,7 +28,7 @@
 			</td>
 		</tr>
 		<tr>
-			<td class="text-nowrap">RM Reason Icd 4</td>
+			<td class="text-nowrap">ICD 4</td>
 			<td>
 				<div class="d-flex">
 					<span class="font-weight-bold text-sm mr-2" style="min-width: 60px;">{{ $patient->rm_reason_icd4 ? $patient->rm_reason_icd4. ':' : '' }}</span>
@@ -37,7 +37,7 @@
 			</td>
 		</tr>
 		<tr>
-			<td class="text-nowrap">RM Reason Memo</td>
+			<td class="text-nowrap">Memo</td>
 			<td class="text-muted text-sm">{{ $patient->rm_reason_memo }}</td>
 		</tr>
 	</tbody>