ソースを参照

added 'can create client with invalid mcn' to pro

Josh 4 年 前
コミット
58cee9876c

+ 20 - 0
app/Http/Controllers/pros_SINGLE_Controller.php

@@ -261,6 +261,26 @@ class pros_SINGLE_Controller extends Controller
 		return response()->view('admin/pros_SINGLE/ACTION_setHasAccessToNextPatientButtonToFalse', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
 	}
 
+	// GET /pros/view/{uid}/ACTION_setCanCreateClientWithInvalidMcnToTrue
+	public function ACTION_setCanCreateClientWithInvalidMcnToTrue(Request $request, $uid) {
+		$record = DB::table('pro')->where('uid', $uid)->first();
+		if(!$record) {
+			$record = DB::table('pro')->where('id', $uid)->first();
+			if($record) return redirect('/pros/view/' . $record->uid . '/ACTION_setCanCreateClientWithInvalidMcnToTrue');
+		}
+		return response()->view('admin/pros_SINGLE/ACTION_setCanCreateClientWithInvalidMcnToTrue', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
+	// GET /pros/view/{uid}/ACTION_setCanCreateClientWithInvalidMcnToFalse
+	public function ACTION_setCanCreateClientWithInvalidMcnToFalse(Request $request, $uid) {
+		$record = DB::table('pro')->where('uid', $uid)->first();
+		if(!$record) {
+			$record = DB::table('pro')->where('id', $uid)->first();
+			if($record) return redirect('/pros/view/' . $record->uid . '/ACTION_setCanCreateClientWithInvalidMcnToFalse');
+		}
+		return response()->view('admin/pros_SINGLE/ACTION_setCanCreateClientWithInvalidMcnToFalse', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
 	// GET /pros/view/{uid}/ACTION_setIsVideoVisitAssistantToTrue
 	public function ACTION_setIsVideoVisitAssistantToTrue(Request $request, $uid) {
 		$record = DB::table('pro')->where('uid', $uid)->first();

+ 5 - 0
generatecv/tree.txt

@@ -979,6 +979,8 @@ ADMIN
             setIsEnrolledAsMcpToFalse
             setHasAccessToNextPatientButtonToTrue
             setHasAccessToNextPatientButtonToFalse
+            setCanCreateClientWithInvalidMcnToTrue
+            setCanCreateClientWithInvalidMcnToFalse
             setIsVideoVisitAssistantToTrue
             setIsVideoVisitAssistantToFalse
             removeProfilePicture
@@ -1005,6 +1007,7 @@ ADMIN
                 !grp:HCP Enrollment:is_enrolled_as_hcp,enrolled_hcp_category,enrolled_hcp_subcategory,enrolled_hcp_npi:Update HCP Enrollment Info:circle=>/pros/view/$uid/ACTION_updateEnrolledHcpInfo
                 !grp:MCP Enrollment:is_enrolled_as_mcp
                 !grp:Next Patient Button:has_access_to_next_patient_button
+                !grp:Create Client With Invalid MCN:can_create_client_with_invalid_mcn
                 !grp:Profile Picture:profile_picture_base64:Update Profile Picture:circle=>/pros/view/$uid/ACTION_putProfilePicture
                 !grp:Address:mailing_address_line1,mailing_address_line2,mailing_address_city,mailing_address_state,mailing_address_country,mailing_address_zip,mailing_address_lat,mailing_address_long,home_address_line1,home_address_line2,home_address_city,home_address_state,home_address_country,home_address_zip,home_address_lat,home_address_long:Update Address:circle=>/pros/view/$uid/ACTION_updateAddress
                 !grp:Payment Processing:is_payment_processing_detail_complete,payment_processing_detail
@@ -1031,6 +1034,8 @@ ADMIN
                 !act:is_enrolled_as_mcp:setIsEnrolledAsMcpToTrue:circle:if-not:is_enrolled_as_mcp=>/pros/view/$uid/ACTION_setIsEnrolledAsMcpToTrue
                 !act:has_access_to_next_patient_button:setHasAccessToNextPatientButtonToFalse:circle:if:has_access_to_next_patient_button=>/pros/view/$uid/ACTION_setHasAccessToNextPatientButtonToFalse
                 !act:has_access_to_next_patient_button:setHasAccessToNextPatientButtonToTrue:circle:if-not:has_access_to_next_patient_button=>/pros/view/$uid/ACTION_setHasAccessToNextPatientButtonToTrue
+                !act:can_create_client_with_invalid_mcn:setCanCreateClientWithInvalidMcnToFalse:circle:if:can_create_client_with_invalid_mcn=>/pros/view/$uid/ACTION_setCanCreateClientWithInvalidMcnToFalse
+                !act:can_create_client_with_invalid_mcn:setCanCreateClientWithInvalidMcnToTrue:circle:if-not:can_create_client_with_invalid_mcn=>/pros/view/$uid/ACTION_setCanCreateClientWithInvalidMcnToTrue
                 !act:profile_picture_base64:removeProfilePicture:circle=>/pros/view/$uid/ACTION_removeProfilePicture
                 !nal:
             pro_rates

+ 2 - 0
resources/views/admin/pros/actions.blade.php

@@ -23,6 +23,8 @@
 <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setIsEnrolledAsMcpToFalse?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Set Is Enrolled As Mcp To False</a>
 <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setHasAccessToNextPatientButtonToTrue?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Set Has Access To Next Patient Button To True</a>
 <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setHasAccessToNextPatientButtonToFalse?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Set Has Access To Next Patient Button To False</a>
+<a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setCanCreateClientWithInvalidMcnToTrue?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Set Can Create Client With Invalid Mcn To True</a>
+<a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setCanCreateClientWithInvalidMcnToFalse?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Set Can Create Client With Invalid Mcn To False</a>
 <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setIsVideoVisitAssistantToTrue?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Set Is Video Visit Assistant To True</a>
 <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setIsVideoVisitAssistantToFalse?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Set Is Video Visit Assistant To False</a>
 <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_removeProfilePicture?optimised=1' class='d-block btn btn-sm btn-default mb-3'>Remove Profile Picture</a>

+ 38 - 0
resources/views/admin/pros_SINGLE/ACTION_setCanCreateClientWithInvalidMcnToFalse.blade.php

@@ -0,0 +1,38 @@
+@extends('admin.pros.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Set Can Create Client With Invalid Mcn To False</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/pro/setCanCreateClientWithInvalidMcnToFalse">
+        <input type="hidden" name="_success" value="{{route('pros-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('pros_SINGLE-ACTION_setCanCreateClientWithInvalidMcnToFalse', ['uid' => $record->uid])}}">
+        
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('pros-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 38 - 0
resources/views/admin/pros_SINGLE/ACTION_setCanCreateClientWithInvalidMcnToTrue.blade.php

@@ -0,0 +1,38 @@
+@extends('admin.pros.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Set Can Create Client With Invalid Mcn To True</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/pro/setCanCreateClientWithInvalidMcnToTrue">
+        <input type="hidden" name="_success" value="{{route('pros-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('pros_SINGLE-ACTION_setCanCreateClientWithInvalidMcnToTrue', ['uid' => $record->uid])}}">
+        
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('pros-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 16 - 0
resources/views/admin/pros_SINGLE/SUB_dashboard.blade.php

@@ -170,6 +170,22 @@
     </table>
 </div>
 
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Create Client With Invalid MCN
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Can Create Client With Invalid Mcn</td><td class="w-75 px-2 font-weight-bold"><?= $record->can_create_client_with_invalid_mcn ?>@if( $record->can_create_client_with_invalid_mcn) <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setCanCreateClientWithInvalidMcnToFalse?optimised=1' title='setCanCreateClientWithInvalidMcnToFalse' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Can Create Client With Invalid Mcn To False</span></a> @endif
+@if(! $record->can_create_client_with_invalid_mcn) <a up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href='/pros/view/<?= $record->uid ?>/ACTION_setCanCreateClientWithInvalidMcnToTrue?optimised=1' title='setCanCreateClientWithInvalidMcnToTrue' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Can Create Client With Invalid Mcn To True</span></a> @endif</td></tr>
+        </tbody>
+    </table>
+</div>
+
 <div class="table-responsive p-0 bg-white table-sm mb-3">
     <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
         <thead>

+ 12 - 0
resources/views/pro/care_months_SINGLE/SUB_bills.blade.php

@@ -26,6 +26,7 @@
 <th>Effective Date</th>
 <th>Has Cm Been Paid</th>
 <th>Has Hcp Been Paid</th>
+<th>Has Na Been Paid</th>
 <th>Has Rme Been Paid</th>
 <th>Has Rmm Been Paid</th>
 <th>Hcp Expected Payment Amount</th>
@@ -38,7 +39,10 @@
 <th>Is Submitted</th>
 <th>Marked Cancelled At</th>
 <th>Marked Submitted At</th>
+<th>Memo</th>
 <th>Modifier</th>
+<th>Na Expected Payment Amount</th>
+<th>Na Payment Amount</th>
 <th>Number Of Units</th>
 <th>Reason1</th>
 <th>Reason2</th>
@@ -62,6 +66,8 @@
 <th>Hcp Pro Id</th>
 <th>Marked Cancelled By Session Id</th>
 <th>Marked Submitted By Session Id</th>
+<th>Na Payment Pro Transaction Id</th>
+<th>Na Pro Id</th>
 <th>Note Id</th>
 <th>Note Ally Id</th>
 <th>Rme Payment Pro Transaction Id</th>
@@ -89,6 +95,7 @@
 <td><?= $subRecord->effective_date ?></td>
 <td><?= $subRecord->has_cm_been_paid ?></td>
 <td><?= $subRecord->has_hcp_been_paid ?></td>
+<td><?= $subRecord->has_na_been_paid ?></td>
 <td><?= $subRecord->has_rme_been_paid ?></td>
 <td><?= $subRecord->has_rmm_been_paid ?></td>
 <td><?= $subRecord->hcp_expected_payment_amount ?></td>
@@ -101,7 +108,10 @@
 <td><?= $subRecord->is_submitted ?></td>
 <td><?= friendly_date_time($subRecord->marked_cancelled_at) ?></td>
 <td><?= friendly_date_time($subRecord->marked_submitted_at) ?></td>
+<td><?= $subRecord->memo ?></td>
 <td><?= $subRecord->modifier ?></td>
+<td><?= $subRecord->na_expected_payment_amount ?></td>
+<td><?= $subRecord->na_payment_amount ?></td>
 <td><?= $subRecord->number_of_units ?></td>
 <td><?= $subRecord->reason1 ?></td>
 <td><?= $subRecord->reason2 ?></td>
@@ -125,6 +135,8 @@
 <td><?= $subRecord->hcp_pro_id ?></td>
 <td><?= $subRecord->marked_cancelled_by_session_id ?></td>
 <td><?= $subRecord->marked_submitted_by_session_id ?></td>
+<td><?= $subRecord->na_payment_pro_transaction_id ?></td>
+<td><?= $subRecord->na_pro_id ?></td>
 <td><?= $subRecord->note_id ?></td>
 <td><?= $subRecord->note_ally_id ?></td>
 <td><?= $subRecord->rme_payment_pro_transaction_id ?></td>

+ 12 - 0
resources/views/pro/clients_SINGLE/SUB_bills.blade.php

@@ -26,6 +26,7 @@
 <th>Effective Date</th>
 <th>Has Cm Been Paid</th>
 <th>Has Hcp Been Paid</th>
+<th>Has Na Been Paid</th>
 <th>Has Rme Been Paid</th>
 <th>Has Rmm Been Paid</th>
 <th>Hcp Expected Payment Amount</th>
@@ -38,7 +39,10 @@
 <th>Is Submitted</th>
 <th>Marked Cancelled At</th>
 <th>Marked Submitted At</th>
+<th>Memo</th>
 <th>Modifier</th>
+<th>Na Expected Payment Amount</th>
+<th>Na Payment Amount</th>
 <th>Number Of Units</th>
 <th>Reason1</th>
 <th>Reason2</th>
@@ -62,6 +66,8 @@
 <th>Hcp Pro Id</th>
 <th>Marked Cancelled By Session Id</th>
 <th>Marked Submitted By Session Id</th>
+<th>Na Payment Pro Transaction Id</th>
+<th>Na Pro Id</th>
 <th>Note Id</th>
 <th>Note Ally Id</th>
 <th>Rme Payment Pro Transaction Id</th>
@@ -89,6 +95,7 @@
 <td><?= $subRecord->effective_date ?></td>
 <td><?= $subRecord->has_cm_been_paid ?></td>
 <td><?= $subRecord->has_hcp_been_paid ?></td>
+<td><?= $subRecord->has_na_been_paid ?></td>
 <td><?= $subRecord->has_rme_been_paid ?></td>
 <td><?= $subRecord->has_rmm_been_paid ?></td>
 <td><?= $subRecord->hcp_expected_payment_amount ?></td>
@@ -101,7 +108,10 @@
 <td><?= $subRecord->is_submitted ?></td>
 <td><?= friendly_date_time($subRecord->marked_cancelled_at) ?></td>
 <td><?= friendly_date_time($subRecord->marked_submitted_at) ?></td>
+<td><?= $subRecord->memo ?></td>
 <td><?= $subRecord->modifier ?></td>
+<td><?= $subRecord->na_expected_payment_amount ?></td>
+<td><?= $subRecord->na_payment_amount ?></td>
 <td><?= $subRecord->number_of_units ?></td>
 <td><?= $subRecord->reason1 ?></td>
 <td><?= $subRecord->reason2 ?></td>
@@ -125,6 +135,8 @@
 <td><?= $subRecord->hcp_pro_id ?></td>
 <td><?= $subRecord->marked_cancelled_by_session_id ?></td>
 <td><?= $subRecord->marked_submitted_by_session_id ?></td>
+<td><?= $subRecord->na_payment_pro_transaction_id ?></td>
+<td><?= $subRecord->na_pro_id ?></td>
 <td><?= $subRecord->note_id ?></td>
 <td><?= $subRecord->note_ally_id ?></td>
 <td><?= $subRecord->rme_payment_pro_transaction_id ?></td>

+ 24 - 0
resources/views/pro/leads/index.blade.php

@@ -13,12 +13,36 @@
             <thead>
             <tr>
 <th>&nbsp;</th>
+<th>Program</th>
+<th>Name First</th>
+<th>Name Last</th>
+<th>Dob</th>
+<th>Mcn</th>
+<th>Is Mcn Valid</th>
+<th>Client Id</th>
+<th>Full Lead Form Data</th>
+<th>Full Eligible Api Response</th>
+<th>Created At</th>
+<th>Created By Session Id</th>
+<th>Type</th>
             </tr>
             </thead>
             <tbody>
             @foreach($records as $record)
                 <tr>
 <td><a href="/leads/view/<?= $record->uid ?>"><i class="fas fa-share-square"></i></a></td>
+<td><?= $record->program ?></td>
+<td><?= $record->name_first ?></td>
+<td><?= $record->name_last ?></td>
+<td><?= $record->dob ?></td>
+<td><?= $record->mcn ?></td>
+<td><?= $record->is_mcn_valid ?></td>
+<td><?= $record->client_id ?></td>
+<td><?= $record->full_lead_form_data ?></td>
+<td><?= $record->full_eligible_api_response ?></td>
+<td><?= friendly_date_time($record->created_at) ?></td>
+<td><?= $record->created_by_session_id ?></td>
+<td><?= $record->type ?></td>
                 </tr>
             @endforeach
             </tbody>

+ 12 - 0
resources/views/pro/notes_SINGLE/SUB_bills.blade.php

@@ -26,6 +26,7 @@
 <th>Effective Date</th>
 <th>Has Cm Been Paid</th>
 <th>Has Hcp Been Paid</th>
+<th>Has Na Been Paid</th>
 <th>Has Rme Been Paid</th>
 <th>Has Rmm Been Paid</th>
 <th>Hcp Expected Payment Amount</th>
@@ -38,7 +39,10 @@
 <th>Is Submitted</th>
 <th>Marked Cancelled At</th>
 <th>Marked Submitted At</th>
+<th>Memo</th>
 <th>Modifier</th>
+<th>Na Expected Payment Amount</th>
+<th>Na Payment Amount</th>
 <th>Number Of Units</th>
 <th>Reason1</th>
 <th>Reason2</th>
@@ -62,6 +66,8 @@
 <th>Hcp Pro Id</th>
 <th>Marked Cancelled By Session Id</th>
 <th>Marked Submitted By Session Id</th>
+<th>Na Payment Pro Transaction Id</th>
+<th>Na Pro Id</th>
 <th>Note Id</th>
 <th>Note Ally Id</th>
 <th>Rme Payment Pro Transaction Id</th>
@@ -89,6 +95,7 @@
 <td><?= $subRecord->effective_date ?></td>
 <td><?= $subRecord->has_cm_been_paid ?></td>
 <td><?= $subRecord->has_hcp_been_paid ?></td>
+<td><?= $subRecord->has_na_been_paid ?></td>
 <td><?= $subRecord->has_rme_been_paid ?></td>
 <td><?= $subRecord->has_rmm_been_paid ?></td>
 <td><?= $subRecord->hcp_expected_payment_amount ?></td>
@@ -101,7 +108,10 @@
 <td><?= $subRecord->is_submitted ?></td>
 <td><?= friendly_date_time($subRecord->marked_cancelled_at) ?></td>
 <td><?= friendly_date_time($subRecord->marked_submitted_at) ?></td>
+<td><?= $subRecord->memo ?></td>
 <td><?= $subRecord->modifier ?></td>
+<td><?= $subRecord->na_expected_payment_amount ?></td>
+<td><?= $subRecord->na_payment_amount ?></td>
 <td><?= $subRecord->number_of_units ?></td>
 <td><?= $subRecord->reason1 ?></td>
 <td><?= $subRecord->reason2 ?></td>
@@ -125,6 +135,8 @@
 <td><?= $subRecord->hcp_pro_id ?></td>
 <td><?= $subRecord->marked_cancelled_by_session_id ?></td>
 <td><?= $subRecord->marked_submitted_by_session_id ?></td>
+<td><?= $subRecord->na_payment_pro_transaction_id ?></td>
+<td><?= $subRecord->na_pro_id ?></td>
 <td><?= $subRecord->note_id ?></td>
 <td><?= $subRecord->note_ally_id ?></td>
 <td><?= $subRecord->rme_payment_pro_transaction_id ?></td>

+ 2 - 0
routes/generated.php

@@ -356,6 +356,8 @@ Route::prefix('/pros/view/{uid}')->group(function () {
 	Route::get('ACTION_setIsEnrolledAsMcpToFalse', 'pros_SINGLE_Controller@ACTION_setIsEnrolledAsMcpToFalse')->name('pros_SINGLE-ACTION_setIsEnrolledAsMcpToFalse');
 	Route::get('ACTION_setHasAccessToNextPatientButtonToTrue', 'pros_SINGLE_Controller@ACTION_setHasAccessToNextPatientButtonToTrue')->name('pros_SINGLE-ACTION_setHasAccessToNextPatientButtonToTrue');
 	Route::get('ACTION_setHasAccessToNextPatientButtonToFalse', 'pros_SINGLE_Controller@ACTION_setHasAccessToNextPatientButtonToFalse')->name('pros_SINGLE-ACTION_setHasAccessToNextPatientButtonToFalse');
+	Route::get('ACTION_setCanCreateClientWithInvalidMcnToTrue', 'pros_SINGLE_Controller@ACTION_setCanCreateClientWithInvalidMcnToTrue')->name('pros_SINGLE-ACTION_setCanCreateClientWithInvalidMcnToTrue');
+	Route::get('ACTION_setCanCreateClientWithInvalidMcnToFalse', 'pros_SINGLE_Controller@ACTION_setCanCreateClientWithInvalidMcnToFalse')->name('pros_SINGLE-ACTION_setCanCreateClientWithInvalidMcnToFalse');
 	Route::get('ACTION_setIsVideoVisitAssistantToTrue', 'pros_SINGLE_Controller@ACTION_setIsVideoVisitAssistantToTrue')->name('pros_SINGLE-ACTION_setIsVideoVisitAssistantToTrue');
 	Route::get('ACTION_setIsVideoVisitAssistantToFalse', 'pros_SINGLE_Controller@ACTION_setIsVideoVisitAssistantToFalse')->name('pros_SINGLE-ACTION_setIsVideoVisitAssistantToFalse');
 	Route::get('ACTION_removeProfilePicture', 'pros_SINGLE_Controller@ACTION_removeProfilePicture')->name('pros_SINGLE-ACTION_removeProfilePicture');

+ 0 - 0
routes/test.json