ソースを参照

Note > grey out cancelled claims

Vijayakrishnan 4 年 前
コミット
df5a5f59ba
1 ファイル変更7 行追加2 行削除
  1. 7 2
      resources/views/app/patient/note/dashboard.blade.php

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

@@ -1333,8 +1333,13 @@
                             </thead>
                             <tbody>
                             @foreach ($note->claims as $claim)
-                                <tr>
-                                    <td class="pl-2">{{ $claim->iid }}</td>
+                                <tr class="{{ $claim->is_cancelled ? 'text-secondary bg-light on-hover-opaque' : '' }}"">
+                                    <td class="pl-2">
+                                        {{ $claim->iid }}
+                                        @if($claim->is_cancelled)
+                                            <div class="text-secondary font-weight-bold text-sm mt-1">[CANCELLED]</div>
+                                        @endif
+                                    </td>
                                     <td class="p-0">
                                         @if($claim->lines->count())
                                             <table class="table table-sm table-condensed border-left border-right mb-0">