= před 3 roky
rodič
revize
0753ce49bf

+ 3 - 0
app/Http/Controllers/PracticeManagementController.php

@@ -1456,6 +1456,9 @@ ORDER BY claim.created_at DESC
             ->where('number_of_days_with_remote_measurements', '>=', 16 )
             ->count();
 
+        $keyNumbers['careMonthsWith16OrMoreMeasurementDays'] = CareMonth::where('is_bill_closed', false)
+            ->where('number_of_days_with_remote_measurements', '>=', 16 )
+            ->count();
 
         return  view('app.practice-management.rm-launch-and-clean', compact('keyNumbers'));
     }

+ 5 - 0
resources/views/app/practice-management/rm-launch-and-clean.blade.php

@@ -31,6 +31,11 @@
                 <td class="text-nowrap">Care Months Eligible For <b>RM30 HCP + 20 EXTRA IF HAD INTERACTION</b></td>
                 <td class="text-success font-weight-bold text-right">{{$keyNumbers['careMonthsEligibleForBillGeneration_RM30_HCP_PLUS_20_ifHadInteraction']}}</td>
             </tr>
+
+            <tr>
+                <td class="text-nowrap">Care Months With <b>16+ Measurement Days</b></td>
+                <td class="text-success font-weight-bold text-right">{{$keyNumbers['careMonthsWith16OrMoreMeasurementDays']}}</td>
+            </tr>
            
             </tbody>
         </table>