Explorar o código

Merge branch 'dev' into dev-vj

Vijayakrishnan %!s(int64=4) %!d(string=hai) anos
pai
achega
7b2e8d6e87

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

@@ -817,4 +817,8 @@ class PracticeManagementController extends Controller
         return view('app.practice-management.shipments-multi-print', compact('shipments'));
         return view('app.practice-management.shipments-multi-print', compact('shipments'));
     }
     }
 
 
+    public function claimsReport(Request $request){
+        return view('app.practice-management.claims-report');
+    }
+
 }
 }

+ 7 - 0
resources/views/app/practice-management/claims-report.blade.php

@@ -0,0 +1,7 @@
+@extends ('layouts/template')
+
+@section('content')
+    <div >
+        <iframe class="mt-5" src="/api/dev/view/claimsReport?sessionKey={{$performer->session_key}}" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;"/>
+    </div>
+@endsection

+ 2 - 0
resources/views/layouts/template.blade.php

@@ -116,6 +116,8 @@
 
 
                         <a class="dropdown-item" href="{{ route('practice-management.billingManager') }}">Billing Manager</a>
                         <a class="dropdown-item" href="{{ route('practice-management.billingManager') }}">Billing Manager</a>
 
 
+                        <a class="dropdown-item" href="{{ route('practice-management.claimsReport') }}">Claims Report</a>
+
                         @if($pro && $pro->pro_type == 'ADMIN')
                         @if($pro && $pro->pro_type == 'ADMIN')
                             <a class="dropdown-item" href="{{ route('practice-management.processingBillMatrix') }}">Processing Bills</a>
                             <a class="dropdown-item" href="{{ route('practice-management.processingBillMatrix') }}">Processing Bills</a>
                             <a class="dropdown-item" href="{{ route('practice-management.cellularMeasurements') }}">Cellular Measurements</a>
                             <a class="dropdown-item" href="{{ route('practice-management.cellularMeasurements') }}">Cellular Measurements</a>

+ 1 - 0
routes/web.php

@@ -107,6 +107,7 @@ Route::middleware('pro.auth')->group(function () {
             Route::get('claims-download', 'PracticeManagementController@downloadClaims')->name('download-claims');
             Route::get('claims-download', 'PracticeManagementController@downloadClaims')->name('download-claims');
 
 
             Route::get('treatment-service-util', 'PracticeManagementController@treatmentServiceUtil')->name('treatmentServiceUtil');
             Route::get('treatment-service-util', 'PracticeManagementController@treatmentServiceUtil')->name('treatmentServiceUtil');
+            Route::get('claims-report', 'PracticeManagementController@claimsReport')->name('claimsReport');
 
 
             // old supply-orders & shipments matrices
             // old supply-orders & shipments matrices
             // Route::get('supply-orders', 'PracticeManagementController@supplyOrders')->name('supply-orders');
             // Route::get('supply-orders', 'PracticeManagementController@supplyOrders')->name('supply-orders');