Răsfoiți Sursa

removed unneeded metrics

= 3 ani în urmă
părinte
comite
5cb7226ed0

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

@@ -1449,21 +1449,6 @@ ORDER BY claim.created_at ASC
             ->where('number_of_days_with_remote_measurements', '>=', 16 )
             ->count();
 
-        $keyNumbers['careMonthsWithoutCompanyProInfo'] = CareMonth::where('is_bill_closed', false)
-            ->where(function ($q) {
-                $q->whereNull('company_pro_id')
-                    ->orWhereNull('company_pro_payer_id')
-                    ->orWhereNull('company_location_id');
-            })
-            ->count();
-
-        /*$keyNumbers['careMonthsWithoutRMReasons'] = CareMonth::where('is_bill_closed', false)
-            ->whereRaw('(SELECT count(id) FROM care_month_cm_rm_reason WHERE care_month_id = care_month.id) = 0')
-            ->count();*/
-
-        $keyNumbers['careMonthsUnder30RMMinutes'] = CareMonth::where('is_bill_closed', false)
-            ->where('rm_total_time_in_seconds', '<', 1800)
-            ->count();
 
         return  view('app.practice-management.rm-launch-and-clean', compact('keyNumbers'));
     }

+ 1 - 14
resources/views/app/practice-management/rm-launch-and-clean.blade.php

@@ -31,20 +31,7 @@
                 <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>Care Months Without Company/Pro Info</td>
-                <td class="text-warning-mellow font-weight-bold text-right">{{$keyNumbers['careMonthsWithoutCompanyProInfo']}}</td>
-            </tr>
-            {{--
-            <tr>
-                <td>Care Months Without RM Reasons</td>
-                <td class="text-warning-mellow font-weight-bold text-right">{{$keyNumbers['careMonthsWithoutRMReasons']}}</td>
-            </tr>
-            --}}
-            <tr>
-                <td>Care Months Under 30 RM Minutes</td>
-                <td class="text-warning-mellow font-weight-bold text-right">{{$keyNumbers['careMonthsUnder30RMMinutes']}}</td>
-            </tr>
+           
             </tbody>
         </table>
         <div class="d-flex align-items-center">