Browse Source

added moe to process note

= 3 years ago
parent
commit
5323f6021f

+ 28 - 9
resources/views/app/practice-management/notes-resolution-center.blade.php

@@ -41,14 +41,15 @@
                 <th class="border-bottom-0 text-nowrap">Minutes</th>
                 <th class="border-bottom-0 text-nowrap">Note ICDs</th>
                 <th class="border-bottom-0 text-nowrap">Note Link</th>
+                <th class="border-bottom-0 text-nowrap"></th>
+                <th class="border-bottom-0 text-nowrap"></th>
                 <th class="border-bottom-0 text-nowrap">Farah Green?</th>
                 <th class="border-bottom-0 text-nowrap">Shawn Review?</th>
                 <th class="border-bottom-0 text-nowrap">Memo to Shawn</th>
                 <th class="border-bottom-0 text-nowrap">Shawn Green?</th>
                 <th class="border-bottom-0 text-nowrap">Shawn Reject?</th>
                 <th class="border-bottom-0 text-nowrap">Claiming Closed?</th>
-                <th class="border-bottom-0 text-nowrap">Kyle Billed?</th>
-                <th class="border-bottom-0 text-nowrap"></th>
+                <th class="border-bottom-0 text-nowrap d-none">Kyle Billed?</th>
                 <th class="border-bottom-0 w-50 d-none"></th>
             </tr>
             </thead>
@@ -91,13 +92,23 @@
                            href="/resolve-note/{{$row->client_uid}}/{{$row->uid}}">View</a>&nbsp;
 			            <a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on" target="popup" onclick="window.open("/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on",'popup','width=600,height=600,scrollbars=no,resizable=no'); return false;"><i class="fa fa-arrow-right"></i></a>
                     </td>
-                    <td class="font-weight-bold text-success">{!! @$parsedDetailJson->farah_decision && @$parsedDetailJson->farah_decision === 'green' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
-                    <td class="font-weight-bold text-warning-dark">{!! @$parsedDetailJson->farah_decision && @$parsedDetailJson->farah_decision === 'red' ? '<i class="fa fa-exclamation-triangle"></i> Yes' : '' !!}</td>
-                    <td class="font-weight-bold">{{ @$parsedDetailJson->memo_to_shawn }}</td>
-                    <td class="font-weight-bold text-success">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'green' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
-                    <td class="font-weight-bold text-danger">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'red' ? '<i class="fa fa-times"></i> Rejected' : '' !!}</td>
-                    <td class="font-weight-bold text-success">{{ $row->is_claim_closed }}</td>
-                    <td class="font-weight-bold text-success">{!! @$parsedDetailJson->kyle_billed && @$parsedDetailJson->kyle_billed === 'yes' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
+                    <td>
+                        @if($row->visit_number == 1)
+                            <div moe>
+                                <a start show>Process Intake Note</a>
+                                <form url="/api/note/processNoteShortcut">
+                                    <input type="hidden" name="uid" value="{{$row->uid}}">
+                                    <div class="form-group mb-2">
+                                        <p>Are you sure?</p>
+                                    </div>
+                                    <div class="form-group m-0">
+                                        <button submit class="btn btn-primary btn-sm">submit</button>
+                                        <button cancel class="btn btn-primary btn-sm">cancel</button>
+                                    </div>
+                                </form>
+                            </div>
+                        @endif
+                    </td>
                     <td>
                         @if($row->visit_number == 1)
                             <div moe>
@@ -115,6 +126,14 @@
                             </div>
                         @endif
                     </td>
+                    <td class="font-weight-bold text-success">{!! @$parsedDetailJson->farah_decision && @$parsedDetailJson->farah_decision === 'green' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
+                    <td class="font-weight-bold text-warning-dark">{!! @$parsedDetailJson->farah_decision && @$parsedDetailJson->farah_decision === 'red' ? '<i class="fa fa-exclamation-triangle"></i> Yes' : '' !!}</td>
+                    <td class="font-weight-bold">{{ @$parsedDetailJson->memo_to_shawn }}</td>
+                    <td class="font-weight-bold text-success">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'green' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
+                    <td class="font-weight-bold text-danger">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'red' ? '<i class="fa fa-times"></i> Rejected' : '' !!}</td>
+                    <td class="font-weight-bold text-success">{{ $row->is_claim_closed }}</td>
+                    <td class="font-weight-bold text-success d-none">{!! @$parsedDetailJson->kyle_billed && @$parsedDetailJson->kyle_billed === 'yes' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
+                    
                     <td class="d-none">
 		            {{--
 			<a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on" target="popup"