Browse Source

Claims resolver - Show Diff

Vijayakrishnan 4 years ago
parent
commit
918340252e
2 changed files with 12 additions and 8 deletions
  1. 1 1
      public/css/style.css
  2. 11 7
      resources/views/app/patient/claims-resolver.blade.php

+ 1 - 1
public/css/style.css

@@ -216,7 +216,7 @@ body>nav.navbar {
 .stag-content {
     height: calc(100% - 55px);
 }
-[moe][large] form {
+[moe][large] form, [moe][large] [url] {
     width: 450px;
 }
 [moe][bottom] form {

+ 11 - 7
resources/views/app/patient/claims-resolver.blade.php

@@ -306,14 +306,14 @@
             <td class="p-0">
                 <div>
                     <table class="table table-sm m-0 border-0">
-                @foreach($note->bills as $bill)
+                    @foreach($note->bills as $bill)
                         <tr>
                             <td>{{$bill->code}}</td>
-                            <td>
+                            <td style="width: 60px">
                                 {{str_contains($bill->code, 'Treatment Services') ? floor((float) $bill->number_of_units * 60) . ' mins.' : $bill->number_of_units}}
                             </td>
                         </tr>
-                @endforeach
+                    @endforeach
                     </table>
                 </div>
             </td>
@@ -364,10 +364,14 @@
                 </div>
             </td>
             <td>
-{{--                <div style="max-height: 250px; overflow-y: auto;">--}}
-{{--                    <?php echo Diff::toTable(Diff::compare($lastContentText, $contentText)) ?>--}}
-{{--                </div>--}}
-                <a href="#">Show Diff</a>
+                <div moe large relative no-mask>
+                    <a href="#" start show>Show Diff</a>
+                    <div url="/dummy" right>
+                        <div style="max-height: 250px; overflow-y: auto;">
+                            <?php echo Diff::toTable(Diff::compare($lastContentText, $contentText)) ?>
+                        </div>
+                    </div>
+                </div>
             </td>
         </tr>
         <?php