123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154 |
- <?php
- namespace App\Http\Controllers;
- use App\Lib\Backend;
- use App\Models\Appointment;
- use App\Models\AppointmentConfirmationDecision;
- use App\Models\AppSession;
- use App\Models\CareMonth;
- use App\Models\ClientMemo;
- use App\Models\ClientProChange;
- use App\Models\ClientSMS;
- use App\Models\Facility;
- use App\Models\IncomingReport;
- use App\Models\MBPayer;
- use App\Models\ProProAccess;
- use App\Models\SupplyOrder;
- use App\Models\Ticket;
- use DateTime;
- use App\Models\Client;
- use App\Models\Bill;
- use App\Models\Measurement;
- use App\Models\Note;
- use App\Models\Pro;
- use App\Models\ProTransaction;
- use GuzzleHttp\Cookie\CookieJar;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Cookie;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Http;
- use App\Models\OutgoingEmailTemplate;
- class HomeController extends Controller
- {
- public function nop() {
- return json_encode(["success" => true]);
- }
- public function confirmSmsAuthToken(Request $request)
- {
- return view('app/confirm_sms_auth_token');
- }
- public function setPassword(Request $request)
- {
- return view('app/set_password');
- }
- public function setSecurityQuestions(Request $request)
- {
- return view('app/set_security_questions');
- }
- public function postConfirmSmsAuthToken(Request $request)
- {
- try {
- $url = config('stag.backendUrl') . '/session/confirmSmsAuthToken';
- $data = [
- 'cellNumber' => $request->input('cellNumber'),
- 'token' => $request->input('token'),
- ];
- $response = Http::asForm()
- ->withHeaders(['sessionKey' => $request->cookie('sessionKey')])
- ->post($url, $data)
- ->json();
- if (!isset($response['success']) || !$response['success']) {
- $message = 'API error';
- if (isset($response['error'])) {
- $message = $response['error'];
- if (isset($response['path'])) $message .= ': ' . $response['path'];
- } else if (isset($response['message'])) $message = $response['message'];
- return redirect('/confirm_sms_auth_token')
- ->withInput()
- ->with('message', $message);
- }
- return redirect('/');
- } catch (\Exception $e) {
- return redirect()->back()
- ->with('message', 'Unable to process your request at the moment. Please try again later.')
- ->withInput($request->input());
- }
- }
- public function resendSmsAuthToken(Request $request)
- {
- try {
- $url = config('stag.backendUrl') . '/session/resendSmsAuthToken';
- $data = [];
- $response = Http::asForm()
- ->withHeaders(['sessionKey' => $request->cookie('sessionKey')])
- ->post($url, $data)
- ->json();
- if (!isset($response['success']) || !$response['success']) {
- $message = 'API error';
- if (isset($response['error'])) {
- $message = $response['error'];
- if (isset($response['path'])) $message .= ': ' . $response['path'];
- } else if (isset($response['message'])) $message = $response['message'];
- return redirect('/confirm_sms_auth_token')
- ->withInput()
- ->with('message', $message);
- }
- return redirect()->back()->withInput()->with('message', "SMS Auth Token sent.");
- } catch (\Exception $e) {
- return redirect()->back()
- ->with('message', 'Unable to process your request at the moment. Please try again later.')
- ->withInput($request->input());
- }
- }
- public function postSetPassword(Request $request)
- {
- try {
- $url = config('stag.backendUrl') . '/pro/selfPutPassword';
- $data = [
- 'newPassword' => $request->input('newPassword'),
- 'newPasswordConfirmation' => $request->input('newPasswordConfirmation'),
- ];
- $response = Http::asForm()
- ->withHeaders(['sessionKey' => $request->cookie('sessionKey')])
- ->post($url, $data)
- ->json();
- if (!isset($response['success']) || !$response['success']) {
- $message = 'API error';
- if (isset($response['error'])) {
- $message = $response['error'];
- if (isset($response['path'])) $message .= ': ' . $response['path'];
- } else if (isset($response['message'])) $message = $response['message'];
- return redirect('/set_password')
- ->withInput()
- ->with('message', $message);
- }
- return redirect('/');
- } catch (\Exception $e) {
- return redirect()->back()
- ->with('message', 'Unable to process your request at the moment. Please try again later.')
- ->withInput($request->input());
- }
- }
- public function postSetSecurityQuestions(Request $request)
- {
- try {
- $url = env('BACKEND_URL', 'http://localhost:8080/api') . '/pro/selfPutSecurityQuestions';
- $data = [
- 'securityQuestion1' => $request->input('securityQuestion1'),
- 'securityAnswer1' => $request->input('securityAnswer1'),
- 'securityQuestion2' => $request->input('securityQuestion2'),
- 'securityAnswer2' => $request->input('securityAnswer2'),
- ];
- $response = Http::asForm()
- ->withHeaders(['sessionKey' => $request->cookie('sessionKey')])
- ->post($url, $data)
- ->json();
- if (!isset($response['success']) || !$response['success']) {
- $message = 'API error';
- if (isset($response['error'])) {
- $message = $response['error'];
- if (isset($response['path'])) $message .= ': ' . $response['path'];
- } else if (isset($response['message'])) $message = $response['message'];
- return redirect('/set_password')
- ->withInput()
- ->with('message', $message);
- }
- return redirect('/');
- } catch (\Exception $e) {
- return redirect()->back()
- ->with('message', 'Unable to process your request at the moment. Please try again later.')
- ->withInput($request->input());
- }
- }
- public function dashboard_MCP(Request $request){
- $keyNumbers = [];
- // Patients // SELECT * FROM client WHERE mcp_pro_id = :me.id;
- // New Patients Awaiting Visit // SELECT * FROM client WHERE mcp_pro_id = :me.id AND hasMcpDoneOnboardingVisit != 'YES';
- // Notes Pending Signature // SELECT * FROM note WHERE hcp_pro_id = :me.id AND is_cancelled IS NOT TRUE AND has_hcp_signed IS NOT TRUE;
- // Notes Pending Billing // SELECT * FROM note WHERE hcp_pro_id = :me.id AND is_cancelled IS NOT TRUE AND has_hcp_signed IS TRUE AND is_billing_marked_done IS FALSE;
- // Reports Pending Signature // SELECT * FROM incoming_report WHERE hcp_pro_id = :me.id AND isEntryError IS NOT TRUE AND hasHcpProSigned IS NOT TRUE;
- // Patients w/o Appointments // SELECT * FROM client WHERE mcp_pro_id = :me.id AND client.next_mcp_appointment_date < today();
- // Patients Overdue for Visit // SELECT * FROM client WHERE mcp_pro_id = :me.id AND client.next_expected_mcp_visit_date < today();
- // Cancelled Appts. Pending Review // SELECT * FROM appointment WHERE hcp_pro_id = :me.id AND status = 'REJECTED' AND wasAcknowledgedByAppointmentPro IS NOT TRUE;
- // Cancelled Bills Pending Review // SELECT * FROM bill WHERE bill_service_type = 'NOTE' AND is_cancelled IS TRUE AND isCancellationAcknowledged IS FALSE;
- // Cancelled Supply Orders Pending Review // SELECT * FROM supply_order WHERE signed_by_pro_id = :me.id AND is_cancelled IS TRUE AND isCancellationAcknowledged IS NOT TRUE;
- // ERx & Orders Pending Signature // SELECT * FROM erx WHERE hcp_pro_id = :me.id AND pro_declared_status <> 'CANCELLED' AND hasHcpProSigned IS NOT TRUE;
- // Supply Orders Pending Signature // SELECT supply_order.id FROM supply_order WHERE signed_by_pro_id IS NOT TRUE AND is_cancelled IS NOT TRUE AND created_by_pro_id = :me.id;
- $performer = $this->performer();
- $pro = $performer->pro;
- $performerProID = $performer->pro->id;
- $keyNumbers = [];
- $queryClients = $this->performer()->pro->getAccessibleClientsQuery();
- $pendingNotesToSign = Note
- ::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->orWhere(function ($query) use ($performerProID) {
- $query->where('ally_pro_id', $performerProID)->where('is_signed_by_ally', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->count();
- $keyNumbers['pendingNotesToSign'] = $pendingNotesToSign;
- // notes pending mcp sign (applicable to dnas only)
- $pendingNotesToSignMCP = Note
- ::where(function ($query) use ($performerProID) {
- $query->where('ally_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->count();
- $keyNumbers['$pendingNotesToSignMCP'] = $pendingNotesToSignMCP;
- $pendingNotesToSignAllySigned = Note::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_signed_by_ally', true)->where('is_cancelled', false)->where('is_core_note', false);;
- })->count();
- $keyNumbers['pendingNotesToSignAllySigned'] = $pendingNotesToSignAllySigned;
- $signedNotesWithoutBills = Note::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', true)->where('is_cancelled', false);
- })->whereDoesntHave('bills')->count();
- $keyNumbers['signedNotesWithoutBills'] = $signedNotesWithoutBills;
- // open tickets
- $keyNumbers['numOpenTickets'] = Ticket::where('is_open', true)
- ->where(function ($q) use ($performerProID) {
- $q->where('assigned_pro_id', $performerProID)
- ->orWhere('manager_pro_id', $performerProID)
- ->orWhere('ordering_pro_id', $performerProID)
- ->orWhere('initiating_pro_id', $performerProID);
- })
- ->count();
- // unacknowledged cancelled bills for authed pro
- $keyNumbers['unacknowledgedCancelledBills'] = Bill::where('hcp_pro_id', $performerProID)
- ->where('is_cancelled', true)
- ->where('is_cancellation_acknowledged', false)
- ->count();
- // unacknowledged cancelled supply orders for authed pro
- $keyNumbers['unacknowledgedCancelledSupplyOrders'] = SupplyOrder::where('signed_by_pro_id', $performerProID)
- ->where('is_cancelled', true)
- ->where('is_cancellation_acknowledged', false)
- ->count();
- // unsigned supply orders created by authed pro
- $keyNumbers['unsignedSupplyOrders'] = SupplyOrder
- ::where('is_cancelled', false)
- ->where('is_signed_by_pro', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session WHERE pro_id = ?)', [$performerProID])
- ->count();
- // patientsHavingBirthdayToday
- $queryClients = $this->performer()->pro->getAccessibleClientsQuery();
- $keyNumbers['patientsHavingBirthdayToday'] = $queryClients
- ->whereRaw('EXTRACT(DAY from dob) = ?', [date('d')])
- ->whereRaw('EXTRACT(MONTH from dob) = ?', [date('m')])
- ->count();
- $reimbursement = [];
- $reimbursement["currentBalance"] = $performer->pro->balance;
- $reimbursement["nextPaymentDate"] = '--';
- $lastPayment = ProTransaction::where('pro_id', $performerProID)->where('plus_or_minus', 'PLUS')->orderBy('created_at', 'DESC')->first();
- if ($lastPayment) {
- $reimbursement["lastPayment"] = $lastPayment->amount;
- $reimbursement["lastPaymentDate"] = $lastPayment->created_at;
- } else {
- $reimbursement["lastPayment"] = '--';
- $reimbursement["lastPaymentDate"] = '--';
- }
- //if today is < 15th, next payment is 15th, else nextPayment is
- $today = strtotime(date('Y-m-d'));
- $todayDate = date('j', $today);
- $todayMonth = date('m', $today);
- $todayYear = date('Y', $today);
- if ($todayDate < 15) {
- $nextPaymentDate = new DateTime();
- $nextPaymentDate->setDate($todayYear, $todayMonth, 15);
- $reimbursement['nextPaymentDate'] = $nextPaymentDate->format('m/d/Y');
- } else {
- $nextPaymentDate = new \DateTime();
- $lastDayOfMonth = date('t', $today);
- $nextPaymentDate->setDate($todayYear, $todayMonth, $lastDayOfMonth);
- $reimbursement['nextPaymentDate'] = $nextPaymentDate->format('m/d/Y');
- }
- //expectedPay
- $expectedForHcp = DB::select(DB::raw("SELECT coalesce(SUM(hcp_expected_payment_amount),0) as expected_pay FROM bill WHERE hcp_pro_id = :performerProID AND has_hcp_been_paid = false AND is_signed_by_hcp IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForCm = DB::select(DB::raw("SELECT coalesce(SUM(cm_expected_payment_amount),0) as expected_pay FROM bill WHERE cm_pro_id = :performerProID AND has_cm_been_paid = false AND is_signed_by_cm IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForRme = DB::select(DB::raw("SELECT coalesce(SUM(rme_expected_payment_amount),0) as expected_pay FROM bill WHERE rme_pro_id = :performerProID AND has_rme_been_paid = false AND is_signed_by_rme IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForRmm = DB::select(DB::raw("SELECT coalesce(SUM(rmm_expected_payment_amount),0) as expected_pay FROM bill WHERE rmm_pro_id = :performerProID AND has_rmm_been_paid = false AND is_signed_by_rmm IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForNa = DB::select(DB::raw("SELECT coalesce(SUM(generic_pro_expected_payment_amount),0) as expected_pay FROM bill WHERE generic_pro_id = :performerProID AND has_generic_pro_been_paid = false AND is_signed_by_generic_pro IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $totalExpectedAmount = $expectedForHcp + $expectedForCm + $expectedForRme + $expectedForRmm + $expectedForNa;
- $reimbursement['nextPaymentAmount'] = $totalExpectedAmount;
- $milliseconds = strtotime(date('Y-m-d')) . '000';
- // bills & claims
- $businessNumbers = [];
- // Notes with bills to resolve
- $businessNumbers['notesWithBillsToResolve'] = Note::where('is_cancelled', '!=', true)
- ->where('is_bill_closed', '!=', true)
- ->whereRaw('(SELECT count(id) FROM bill WHERE note_id = note.id AND is_cancelled = false AND is_verified = false) > 0')
- ->count();
- // Notes pending bill closure
- $businessNumbers['notesPendingBillingClosure'] = Note::where('is_cancelled', '!=', true)
- ->where('is_bill_closed', '!=', true)
- ->whereRaw('(SELECT count(id) FROM bill WHERE note_id = note.id AND (is_cancelled = true OR is_verified = true)) = 0')
- ->count();
- // incoming reports not signed
- $incomingReports = IncomingReport::where('hcp_pro_id', $performerProID)
- ->where('has_hcp_pro_signed', false)
- ->where('is_entry_error', false)
- ->orderBy('created_at', 'ASC')
- ->get();
- // erx, labs & imaging that are not closed
- $tickets = Ticket::where('ordering_pro_id', $performerProID)
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->orderBy('created_at', 'ASC')
- ->get();
- $supplyOrders = SupplyOrder::where('is_cleared_for_shipment', false)
- ->where('is_cancelled', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session where pro_id = ?)', [$performer->pro->id])
- ->orderBy('created_at', 'ASC')
- ->get();
- $numERx = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'erx')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numLabs = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'lab')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numImaging = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'imaging')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numSupplyOrders = SupplyOrder::where('is_cleared_for_shipment', false)
- ->where('is_cancelled', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session where pro_id = ?)', [$performer->pro->id])
- ->count();
- $newMCPAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'MCP')
- ->whereNull('current_client_pro_change_decision_id')
- ->get();
- $newNAAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'DEFAULT_NA')
- ->whereNull('current_client_pro_change_decision_id')
- ->get();
- // unstamped client memos
- // for mcp
- $mcpClientMemos = DB::select(
- DB::raw("
- SELECT c.uid as client_uid, c.name_first, c.name_last,
- cm.uid, cm.content, cm.created_at
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.mcp_pro_id = {$performerProID} AND
- cm.mcp_stamp_id IS NULL
- AND (is_admin_only IS FALSE OR is_admin_only IS NULL)
- ORDER BY cm.created_at DESC
- OFFSET 0 LIMIT 10
- ")
- );
- $mcpClientMemosCount = DB::select(
- DB::raw("
- SELECT count(c.uid)
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.mcp_pro_id = {$performerProID} AND
- cm.mcp_stamp_id IS NULL
- AND (is_admin_only IS FALSE OR is_admin_only IS NULL)
- ")
- );
- if($mcpClientMemosCount && count($mcpClientMemosCount)) {
- $mcpClientMemosCount = $mcpClientMemosCount[0]->count;
- }
- // for na
- $naClientMemos = DB::select(
- DB::raw("
- SELECT c.uid as client_uid, c.name_first, c.name_last,
- cm.uid, cm.content, cm.created_at
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.default_na_pro_id = {$performerProID} AND
- cm.default_na_stamp_id IS NULL
- ORDER BY cm.created_at DESC
- ")
- );
- $keyNumbers['rmBillsToSign'] = Bill
- ::where('is_cancelled', false)
- ->where('cm_or_rm', 'RM')
- ->where(function ($q) use ($performerProID) {
- $q
- ->where(function ($q2) use ($performerProID) {
- $q2->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('rme_pro_id', $performerProID)->where('is_signed_by_rme', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('rmm_pro_id', $performerProID)->where('is_signed_by_rmm', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('generic_pro_id', $performerProID)->where('is_signed_by_generic_pro', false);
- });
- })
- ->count();
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.number_of_days_with_remote_measurements < 16 OR care_month.number_of_days_with_remote_measurements IS NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithLT16MD'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.number_of_days_with_remote_measurements >= 16 AND care_month.number_of_days_with_remote_measurements IS NOT NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithGTE16MD'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.has_anyone_interacted_with_client_about_rm_outside_note = TRUE AND care_month.has_anyone_interacted_with_client_about_rm_outside_note IS NOT NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithWhomCommDone'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.has_anyone_interacted_with_client_about_rm_outside_note = FALSE OR care_month.has_anyone_interacted_with_client_about_rm_outside_note IS NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithWhomCommNotDone'] = $count[0]->cnt;
- if($performer->pro->pro_type === 'ADMIN') {
- // patients without coverage information
- $keyNumbers['patientsWithoutCoverageInformation'] = DB::select(DB::raw("
- SELECT count(DISTINCT (cl.id)) as cnt
- FROM client cl
- WHERE cl.shadow_pro_id IS NULL AND cl.effective_client_primary_coverage_id IS NULL -- no coverage record"
- ))[0]->cnt;
- // patients pending coverage verification
- $keyNumbers['patientsPendingCoverageVerification'] = DB::select(DB::raw("
- SELECT count(DISTINCT (cl.id)) as cnt
- FROM client cl
- LEFT JOIN client_primary_coverage cpc ON cl.effective_client_primary_coverage_id = cpc.id
- WHERE cl.shadow_pro_id IS NULL
- AND (cl.effective_client_primary_coverage_id IS NOT NULL -- coverage exists, but status is null or unknown
- AND (
- (cpc.plan_type = 'MEDICARE' AND (cpc.is_partbprimary = 'UNKNOWN' OR cpc.is_partbprimary IS NULL))
- OR
- (cpc.plan_type != 'MEDICARE' AND
- (cpc.manual_determination_category = 'UNKNOWN' OR cpc.manual_determination_category IS NULL))
- ))"
- ))[0]->cnt;
- }
- $incomingSmsMessagesPendingReply = DB::select("
- SELECT cs.* ,c.uid as client_uid, c.name_first as client_name_first, c.name_last as client_name_last FROM client_sms cs LEFT JOIN client c ON c.id = cs.client_id
- WHERE cs.is_reply_needed = 'YES' AND c.mcp_pro_id = :mcp_pro_id AND incoming_or_outgoing = 'INCOMING'
- AND (cs.created_at > c.last_sms_sent_to_client_at OR c.last_sms_sent_to_client_at IS NULL)
- ORDER BY created_at DESC
- ", ['mcp_pro_id' => $performer->pro->id]);
- $careMonthsWithMeasurementsPendingStamping = CareMonth::select('id')
- ->where('mcp_pro_id', $this->performer->pro->id)
- ->where('rm_num_measurements_not_stamped_by_mcp', '>', 0)
- ->whereNotNull('rm_num_measurements_not_stamped_by_mcp')
- ->orderBy('created_at', 'DESC')
- ->get()
- ->map(function($_x) {
- return $_x->id;
- })
- ->toArray();
- $measurementsPendingStamping = Measurement::whereIn('care_month_id', $careMonthsWithMeasurementsPendingStamping)
- ->orderBy('created_at', 'DESC')
- ->whereNotNull('ts')
- ->whereNotIn('label', ['SBP', 'DBP'])
- ->where('is_cellular_zero', '<>', true)
- ->where('is_active', true)
- ->where('has_been_stamped_by_mcp', false)
- ->whereNotNull('client_bdt_measurement_id')
- ->paginate(15);
- $flaggedMeasurementsPendingStamping = Measurement::whereIn('care_month_id', $careMonthsWithMeasurementsPendingStamping)
- ->orderBy('created_at', 'DESC')
- ->whereNotNull('ts')
- ->whereNotIn('label', ['SBP', 'DBP'])
- ->where('is_cellular_zero', '<>', true)
- ->where('is_active', true)
- ->where('has_been_stamped_by_mcp', false)
- ->whereRaw("(color = 'RED' OR color = 'YELLOW')")
- ->whereNotNull('client_bdt_measurement_id')
- ->paginate(15);
- return view('app/dashboard-mcp', compact('keyNumbers', 'reimbursement', 'milliseconds',
- 'businessNumbers',
- 'incomingReports', 'tickets', 'supplyOrders',
- 'numERx', 'numLabs', 'numImaging', 'numSupplyOrders',
- 'newMCPAssociations', 'newNAAssociations',
- 'measurementsPendingStamping', 'flaggedMeasurementsPendingStamping',
- 'careMonthsWithMeasurementsPendingStamping',
- 'mcpClientMemos', 'mcpClientMemosCount', 'naClientMemos', 'incomingSmsMessagesPendingReply'));
- }
- public function dashboard_HCP(Request $request){
- //TODO provide hcp specific data. Currently is based on MCP context
- $keyNumbers = [];
- // Patients // SELECT * FROM client WHERE mcp_pro_id = :me.id;
- // New Patients Awaiting Visit // SELECT * FROM client WHERE mcp_pro_id = :me.id AND hasMcpDoneOnboardingVisit != 'YES';
- // Notes Pending Signature // SELECT * FROM note WHERE hcp_pro_id = :me.id AND is_cancelled IS NOT TRUE AND has_hcp_signed IS NOT TRUE;
- // Notes Pending Billing // SELECT * FROM note WHERE hcp_pro_id = :me.id AND is_cancelled IS NOT TRUE AND has_hcp_signed IS TRUE AND is_billing_marked_done IS FALSE;
- // Reports Pending Signature // SELECT * FROM incoming_report WHERE hcp_pro_id = :me.id AND isEntryError IS NOT TRUE AND hasHcpProSigned IS NOT TRUE;
- // Patients w/o Appointments // SELECT * FROM client WHERE mcp_pro_id = :me.id AND client.next_mcp_appointment_date < today();
- // Patients Overdue for Visit // SELECT * FROM client WHERE mcp_pro_id = :me.id AND client.next_expected_mcp_visit_date < today();
- // Cancelled Appts. Pending Review // SELECT * FROM appointment WHERE hcp_pro_id = :me.id AND status = 'REJECTED' AND wasAcknowledgedByAppointmentPro IS NOT TRUE;
- // Cancelled Bills Pending Review // SELECT * FROM bill WHERE bill_service_type = 'NOTE' AND is_cancelled IS TRUE AND isCancellationAcknowledged IS FALSE;
- // Cancelled Supply Orders Pending Review // SELECT * FROM supply_order WHERE signed_by_pro_id = :me.id AND is_cancelled IS TRUE AND isCancellationAcknowledged IS NOT TRUE;
- // ERx & Orders Pending Signature // SELECT * FROM erx WHERE hcp_pro_id = :me.id AND pro_declared_status <> 'CANCELLED' AND hasHcpProSigned IS NOT TRUE;
- // Supply Orders Pending Signature // SELECT supply_order.id FROM supply_order WHERE signed_by_pro_id IS NOT TRUE AND is_cancelled IS NOT TRUE AND created_by_pro_id = :me.id;
- $performer = $this->performer();
- $pro = $performer->pro;
- $performerProID = $performer->pro->id;
- $keyNumbers = [];
- $queryClients = $this->performer()->pro->getAccessibleClientsQuery();
- $pendingNotesToSign = Note
- ::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->orWhere(function ($query) use ($performerProID) {
- $query->where('ally_pro_id', $performerProID)->where('is_signed_by_ally', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->count();
- $keyNumbers['pendingNotesToSign'] = $pendingNotesToSign;
- // notes pending mcp sign (applicable to dnas only)
- $pendingNotesToSignMCP = Note
- ::where(function ($query) use ($performerProID) {
- $query->where('ally_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->count();
- $keyNumbers['$pendingNotesToSignMCP'] = $pendingNotesToSignMCP;
- $pendingNotesToSignAllySigned = Note::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_signed_by_ally', true)->where('is_cancelled', false)->where('is_core_note', false);;
- })->count();
- $keyNumbers['pendingNotesToSignAllySigned'] = $pendingNotesToSignAllySigned;
- $signedNotesWithoutBills = Note::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', true)->where('is_cancelled', false);
- })->whereDoesntHave('bills')->count();
- $keyNumbers['signedNotesWithoutBills'] = $signedNotesWithoutBills;
- // open tickets
- $keyNumbers['numOpenTickets'] = Ticket::where('is_open', true)
- ->where(function ($q) use ($performerProID) {
- $q->where('assigned_pro_id', $performerProID)
- ->orWhere('manager_pro_id', $performerProID)
- ->orWhere('ordering_pro_id', $performerProID)
- ->orWhere('initiating_pro_id', $performerProID);
- })
- ->count();
- // unacknowledged cancelled bills for authed pro
- $keyNumbers['unacknowledgedCancelledBills'] = Bill::where('hcp_pro_id', $performerProID)
- ->where('is_cancelled', true)
- ->where('is_cancellation_acknowledged', false)
- ->count();
- // unacknowledged cancelled supply orders for authed pro
- $keyNumbers['unacknowledgedCancelledSupplyOrders'] = SupplyOrder::where('signed_by_pro_id', $performerProID)
- ->where('is_cancelled', true)
- ->where('is_cancellation_acknowledged', false)
- ->count();
- // unsigned supply orders created by authed pro
- $keyNumbers['unsignedSupplyOrders'] = SupplyOrder
- ::where('is_cancelled', false)
- ->where('is_signed_by_pro', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session WHERE pro_id = ?)', [$performerProID])
- ->count();
- // patientsHavingBirthdayToday
- $queryClients = $this->performer()->pro->getAccessibleClientsQuery();
- $keyNumbers['patientsHavingBirthdayToday'] = $queryClients
- ->whereRaw('EXTRACT(DAY from dob) = ?', [date('d')])
- ->whereRaw('EXTRACT(MONTH from dob) = ?', [date('m')])
- ->count();
- $reimbursement = [];
- $reimbursement["currentBalance"] = $performer->pro->balance;
- $reimbursement["nextPaymentDate"] = '--';
- $lastPayment = ProTransaction::where('pro_id', $performerProID)->where('plus_or_minus', 'PLUS')->orderBy('created_at', 'DESC')->first();
- if ($lastPayment) {
- $reimbursement["lastPayment"] = $lastPayment->amount;
- $reimbursement["lastPaymentDate"] = $lastPayment->created_at;
- } else {
- $reimbursement["lastPayment"] = '--';
- $reimbursement["lastPaymentDate"] = '--';
- }
- //if today is < 15th, next payment is 15th, else nextPayment is
- $today = strtotime(date('Y-m-d'));
- $todayDate = date('j', $today);
- $todayMonth = date('m', $today);
- $todayYear = date('Y', $today);
- if ($todayDate < 15) {
- $nextPaymentDate = new DateTime();
- $nextPaymentDate->setDate($todayYear, $todayMonth, 15);
- $reimbursement['nextPaymentDate'] = $nextPaymentDate->format('m/d/Y');
- } else {
- $nextPaymentDate = new \DateTime();
- $lastDayOfMonth = date('t', $today);
- $nextPaymentDate->setDate($todayYear, $todayMonth, $lastDayOfMonth);
- $reimbursement['nextPaymentDate'] = $nextPaymentDate->format('m/d/Y');
- }
- //expectedPay
- $expectedForHcp = DB::select(DB::raw("SELECT coalesce(SUM(hcp_expected_payment_amount),0) as expected_pay FROM bill WHERE hcp_pro_id = :performerProID AND has_hcp_been_paid = false AND is_signed_by_hcp IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForCm = DB::select(DB::raw("SELECT coalesce(SUM(cm_expected_payment_amount),0) as expected_pay FROM bill WHERE cm_pro_id = :performerProID AND has_cm_been_paid = false AND is_signed_by_cm IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForRme = DB::select(DB::raw("SELECT coalesce(SUM(rme_expected_payment_amount),0) as expected_pay FROM bill WHERE rme_pro_id = :performerProID AND has_rme_been_paid = false AND is_signed_by_rme IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForRmm = DB::select(DB::raw("SELECT coalesce(SUM(rmm_expected_payment_amount),0) as expected_pay FROM bill WHERE rmm_pro_id = :performerProID AND has_rmm_been_paid = false AND is_signed_by_rmm IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForNa = DB::select(DB::raw("SELECT coalesce(SUM(generic_pro_expected_payment_amount),0) as expected_pay FROM bill WHERE generic_pro_id = :performerProID AND has_generic_pro_been_paid = false AND is_signed_by_generic_pro IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $totalExpectedAmount = $expectedForHcp + $expectedForCm + $expectedForRme + $expectedForRmm + $expectedForNa;
- $reimbursement['nextPaymentAmount'] = $totalExpectedAmount;
- $milliseconds = strtotime(date('Y-m-d')) . '000';
- // bills & claims
- $businessNumbers = [];
- // Notes with bills to resolve
- $businessNumbers['notesWithBillsToResolve'] = Note::where('is_cancelled', '!=', true)
- ->where('is_bill_closed', '!=', true)
- ->whereRaw('(SELECT count(id) FROM bill WHERE note_id = note.id AND is_cancelled = false AND is_verified = false) > 0')
- ->count();
- // Notes pending bill closure
- $businessNumbers['notesPendingBillingClosure'] = Note::where('is_cancelled', '!=', true)
- ->where('is_bill_closed', '!=', true)
- ->whereRaw('(SELECT count(id) FROM bill WHERE note_id = note.id AND (is_cancelled = true OR is_verified = true)) = 0')
- ->count();
- // incoming reports not signed
- $incomingReports = IncomingReport::where('hcp_pro_id', $performerProID)
- ->where('has_hcp_pro_signed', false)
- ->where('is_entry_error', false)
- ->orderBy('created_at', 'ASC')
- ->get();
- // erx, labs & imaging that are not closed
- $tickets = Ticket::where('ordering_pro_id', $performerProID)
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->orderBy('created_at', 'ASC')
- ->get();
- $supplyOrders = SupplyOrder::where('is_cleared_for_shipment', false)
- ->where('is_cancelled', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session where pro_id = ?)', [$performer->pro->id])
- ->orderBy('created_at', 'ASC')
- ->get();
- $numERx = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'erx')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numLabs = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'lab')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numImaging = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'imaging')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numSupplyOrders = SupplyOrder::where('is_cleared_for_shipment', false)
- ->where('is_cancelled', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session where pro_id = ?)', [$performer->pro->id])
- ->count();
- $newMCPAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'MCP')
- ->whereNull('current_client_pro_change_decision_id')
- ->get();
- $newNAAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'DEFAULT_NA')
- ->whereNull('current_client_pro_change_decision_id')
- ->get();
- // unstamped client memos
- // for mcp
- $mcpClientMemos = DB::select(
- DB::raw("
- SELECT c.uid as client_uid, c.name_first, c.name_last,
- cm.uid, cm.content, cm.created_at
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.mcp_pro_id = {$performerProID} AND
- cm.mcp_stamp_id IS NULL
- AND (is_admin_only IS FALSE OR is_admin_only IS NULL)
- ORDER BY cm.created_at DESC
- OFFSET 0 LIMIT 10
- ")
- );
- $mcpClientMemosCount = DB::select(
- DB::raw("
- SELECT count(c.uid)
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.mcp_pro_id = {$performerProID} AND
- cm.mcp_stamp_id IS NULL
- AND (is_admin_only IS FALSE OR is_admin_only IS NULL)
- ")
- );
- if($mcpClientMemosCount && count($mcpClientMemosCount)) {
- $mcpClientMemosCount = $mcpClientMemosCount[0]->count;
- }
- // for na
- $naClientMemos = DB::select(
- DB::raw("
- SELECT c.uid as client_uid, c.name_first, c.name_last,
- cm.uid, cm.content, cm.created_at
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.default_na_pro_id = {$performerProID} AND
- cm.default_na_stamp_id IS NULL
- ORDER BY cm.created_at DESC
- ")
- );
- $keyNumbers['rmBillsToSign'] = Bill
- ::where('is_cancelled', false)
- ->where('cm_or_rm', 'RM')
- ->where(function ($q) use ($performerProID) {
- $q
- ->where(function ($q2) use ($performerProID) {
- $q2->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('rme_pro_id', $performerProID)->where('is_signed_by_rme', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('rmm_pro_id', $performerProID)->where('is_signed_by_rmm', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('generic_pro_id', $performerProID)->where('is_signed_by_generic_pro', false);
- });
- })
- ->count();
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.number_of_days_with_remote_measurements < 16 OR care_month.number_of_days_with_remote_measurements IS NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithLT16MD'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.number_of_days_with_remote_measurements >= 16 AND care_month.number_of_days_with_remote_measurements IS NOT NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithGTE16MD'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.has_anyone_interacted_with_client_about_rm_outside_note = TRUE AND care_month.has_anyone_interacted_with_client_about_rm_outside_note IS NOT NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithWhomCommDone'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.has_anyone_interacted_with_client_about_rm_outside_note = FALSE OR care_month.has_anyone_interacted_with_client_about_rm_outside_note IS NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithWhomCommNotDone'] = $count[0]->cnt;
- if($performer->pro->pro_type === 'ADMIN') {
- // patients without coverage information
- $keyNumbers['patientsWithoutCoverageInformation'] = DB::select(DB::raw("
- SELECT count(DISTINCT (cl.id)) as cnt
- FROM client cl
- WHERE cl.shadow_pro_id IS NULL AND cl.effective_client_primary_coverage_id IS NULL -- no coverage record"
- ))[0]->cnt;
- // patients pending coverage verification
- $keyNumbers['patientsPendingCoverageVerification'] = DB::select(DB::raw("
- SELECT count(DISTINCT (cl.id)) as cnt
- FROM client cl
- LEFT JOIN client_primary_coverage cpc ON cl.effective_client_primary_coverage_id = cpc.id
- WHERE cl.shadow_pro_id IS NULL
- AND (cl.effective_client_primary_coverage_id IS NOT NULL -- coverage exists, but status is null or unknown
- AND (
- (cpc.plan_type = 'MEDICARE' AND (cpc.is_partbprimary = 'UNKNOWN' OR cpc.is_partbprimary IS NULL))
- OR
- (cpc.plan_type != 'MEDICARE' AND
- (cpc.manual_determination_category = 'UNKNOWN' OR cpc.manual_determination_category IS NULL))
- ))"
- ))[0]->cnt;
- }
- $incomingSmsMessagesPendingReply = DB::select("
- SELECT cs.* ,c.uid as client_uid, c.name_first as client_name_first, c.name_last as client_name_last FROM client_sms cs LEFT JOIN client c ON c.id = cs.client_id
- WHERE cs.is_reply_needed = 'YES' AND c.mcp_pro_id = :mcp_pro_id AND incoming_or_outgoing = 'INCOMING'
- AND (cs.created_at > c.last_sms_sent_to_client_at OR c.last_sms_sent_to_client_at IS NULL)
- ORDER BY created_at DESC
- ", ['mcp_pro_id' => $performer->pro->id]);
- $careMonthsWithMeasurementsPendingStamping = CareMonth::select('id')
- ->where('mcp_pro_id', $this->performer->pro->id)
- ->where('rm_num_measurements_not_stamped_by_mcp', '>', 0)
- ->whereNotNull('rm_num_measurements_not_stamped_by_mcp')
- ->orderBy('created_at', 'DESC')
- ->get()
- ->map(function($_x) {
- return $_x->id;
- })
- ->toArray();
- $measurementsPendingStamping = Measurement::whereIn('care_month_id', $careMonthsWithMeasurementsPendingStamping)
- ->orderBy('created_at', 'DESC')
- ->whereNotNull('ts')
- ->whereNotIn('label', ['SBP', 'DBP'])
- ->where('is_cellular_zero', '<>', true)
- ->where('is_active', true)
- ->where('has_been_stamped_by_mcp', false)
- ->whereNotNull('client_bdt_measurement_id')
- ->paginate(15);
- return view('app/dashboard-hcp', compact('keyNumbers', 'reimbursement', 'milliseconds',
- 'businessNumbers',
- 'incomingReports', 'tickets', 'supplyOrders',
- 'numERx', 'numLabs', 'numImaging', 'numSupplyOrders',
- 'newMCPAssociations', 'newNAAssociations',
- 'measurementsPendingStamping', 'careMonthsWithMeasurementsPendingStamping',
- 'mcpClientMemos', 'mcpClientMemosCount', 'naClientMemos', 'incomingSmsMessagesPendingReply'));
- }
- public function dashboard_DNA(Request $request){
- $performer = $this->performer();
- $pro = $performer->pro;
- $performerProID = $performer->pro->id;
- $milliseconds = strtotime(date('Y-m-d')) . '000'; //required by the calendar
- return view('app/dashboard-dna', compact( 'milliseconds'));
- }
- public function dashboard_ADMIN(Request $request){
- $keyNumbers = [];
- // Patients // SELECT * FROM client WHERE mcp_pro_id = :me.id;
- // New Patients Awaiting Visit // SELECT * FROM client WHERE mcp_pro_id = :me.id AND hasMcpDoneOnboardingVisit != 'YES';
- // Notes Pending Signature // SELECT * FROM note WHERE hcp_pro_id = :me.id AND is_cancelled IS NOT TRUE AND has_hcp_signed IS NOT TRUE;
- // Notes Pending Billing // SELECT * FROM note WHERE hcp_pro_id = :me.id AND is_cancelled IS NOT TRUE AND has_hcp_signed IS TRUE AND is_billing_marked_done IS FALSE;
- // Reports Pending Signature // SELECT * FROM incoming_report WHERE hcp_pro_id = :me.id AND isEntryError IS NOT TRUE AND hasHcpProSigned IS NOT TRUE;
- // Patients w/o Appointments // SELECT * FROM client WHERE mcp_pro_id = :me.id AND client.next_mcp_appointment_date < today();
- // Patients Overdue for Visit // SELECT * FROM client WHERE mcp_pro_id = :me.id AND client.next_expected_mcp_visit_date < today();
- // Cancelled Appts. Pending Review // SELECT * FROM appointment WHERE hcp_pro_id = :me.id AND status = 'REJECTED' AND wasAcknowledgedByAppointmentPro IS NOT TRUE;
- // Cancelled Bills Pending Review // SELECT * FROM bill WHERE bill_service_type = 'NOTE' AND is_cancelled IS TRUE AND isCancellationAcknowledged IS FALSE;
- // Cancelled Supply Orders Pending Review // SELECT * FROM supply_order WHERE signed_by_pro_id = :me.id AND is_cancelled IS TRUE AND isCancellationAcknowledged IS NOT TRUE;
- // ERx & Orders Pending Signature // SELECT * FROM erx WHERE hcp_pro_id = :me.id AND pro_declared_status <> 'CANCELLED' AND hasHcpProSigned IS NOT TRUE;
- // Supply Orders Pending Signature // SELECT supply_order.id FROM supply_order WHERE signed_by_pro_id IS NOT TRUE AND is_cancelled IS NOT TRUE AND created_by_pro_id = :me.id;
- $performer = $this->performer();
- $pro = $performer->pro;
- $performerProID = $performer->pro->id;
- $keyNumbers = [];
- $queryClients = $this->performer()->pro->getAccessibleClientsQuery();
- $pendingNotesToSign = Note
- ::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->orWhere(function ($query) use ($performerProID) {
- $query->where('ally_pro_id', $performerProID)->where('is_signed_by_ally', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->count();
- $keyNumbers['pendingNotesToSign'] = $pendingNotesToSign;
- // notes pending mcp sign (applicable to dnas only)
- $pendingNotesToSignMCP = Note
- ::where(function ($query) use ($performerProID) {
- $query->where('ally_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_cancelled', false)->where('is_core_note', false);
- })
- ->count();
- $keyNumbers['$pendingNotesToSignMCP'] = $pendingNotesToSignMCP;
- $pendingNotesToSignAllySigned = Note::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false)->where('is_signed_by_ally', true)->where('is_cancelled', false)->where('is_core_note', false);;
- })->count();
- $keyNumbers['pendingNotesToSignAllySigned'] = $pendingNotesToSignAllySigned;
- $signedNotesWithoutBills = Note::where(function ($query) use ($performerProID) {
- $query->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', true)->where('is_cancelled', false);
- })->whereDoesntHave('bills')->count();
- $keyNumbers['signedNotesWithoutBills'] = $signedNotesWithoutBills;
- // open tickets
- $keyNumbers['numOpenTickets'] = Ticket::where('is_open', true)
- ->where(function ($q) use ($performerProID) {
- $q->where('assigned_pro_id', $performerProID)
- ->orWhere('manager_pro_id', $performerProID)
- ->orWhere('ordering_pro_id', $performerProID)
- ->orWhere('initiating_pro_id', $performerProID);
- })
- ->count();
- // unacknowledged cancelled bills for authed pro
- $keyNumbers['unacknowledgedCancelledBills'] = Bill::where('hcp_pro_id', $performerProID)
- ->where('is_cancelled', true)
- ->where('is_cancellation_acknowledged', false)
- ->count();
- // unacknowledged cancelled supply orders for authed pro
- $keyNumbers['unacknowledgedCancelledSupplyOrders'] = SupplyOrder::where('signed_by_pro_id', $performerProID)
- ->where('is_cancelled', true)
- ->where('is_cancellation_acknowledged', false)
- ->count();
- // unsigned supply orders created by authed pro
- $keyNumbers['unsignedSupplyOrders'] = SupplyOrder
- ::where('is_cancelled', false)
- ->where('is_signed_by_pro', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session WHERE pro_id = ?)', [$performerProID])
- ->count();
- // patientsHavingBirthdayToday
- $queryClients = $this->performer()->pro->getAccessibleClientsQuery();
- $keyNumbers['patientsHavingBirthdayToday'] = $queryClients
- ->whereRaw('EXTRACT(DAY from dob) = ?', [date('d')])
- ->whereRaw('EXTRACT(MONTH from dob) = ?', [date('m')])
- ->count();
- $reimbursement = [];
- $reimbursement["currentBalance"] = $performer->pro->balance;
- $reimbursement["nextPaymentDate"] = '--';
- $lastPayment = ProTransaction::where('pro_id', $performerProID)->where('plus_or_minus', 'PLUS')->orderBy('created_at', 'DESC')->first();
- if ($lastPayment) {
- $reimbursement["lastPayment"] = $lastPayment->amount;
- $reimbursement["lastPaymentDate"] = $lastPayment->created_at;
- } else {
- $reimbursement["lastPayment"] = '--';
- $reimbursement["lastPaymentDate"] = '--';
- }
- //if today is < 15th, next payment is 15th, else nextPayment is
- $today = strtotime(date('Y-m-d'));
- $todayDate = date('j', $today);
- $todayMonth = date('m', $today);
- $todayYear = date('Y', $today);
- if ($todayDate < 15) {
- $nextPaymentDate = new DateTime();
- $nextPaymentDate->setDate($todayYear, $todayMonth, 15);
- $reimbursement['nextPaymentDate'] = $nextPaymentDate->format('m/d/Y');
- } else {
- $nextPaymentDate = new \DateTime();
- $lastDayOfMonth = date('t', $today);
- $nextPaymentDate->setDate($todayYear, $todayMonth, $lastDayOfMonth);
- $reimbursement['nextPaymentDate'] = $nextPaymentDate->format('m/d/Y');
- }
- //expectedPay
- $expectedForHcp = DB::select(DB::raw("SELECT coalesce(SUM(hcp_expected_payment_amount),0) as expected_pay FROM bill WHERE hcp_pro_id = :performerProID AND has_hcp_been_paid = false AND is_signed_by_hcp IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForCm = DB::select(DB::raw("SELECT coalesce(SUM(cm_expected_payment_amount),0) as expected_pay FROM bill WHERE cm_pro_id = :performerProID AND has_cm_been_paid = false AND is_signed_by_cm IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForRme = DB::select(DB::raw("SELECT coalesce(SUM(rme_expected_payment_amount),0) as expected_pay FROM bill WHERE rme_pro_id = :performerProID AND has_rme_been_paid = false AND is_signed_by_rme IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForRmm = DB::select(DB::raw("SELECT coalesce(SUM(rmm_expected_payment_amount),0) as expected_pay FROM bill WHERE rmm_pro_id = :performerProID AND has_rmm_been_paid = false AND is_signed_by_rmm IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $expectedForNa = DB::select(DB::raw("SELECT coalesce(SUM(generic_pro_expected_payment_amount),0) as expected_pay FROM bill WHERE generic_pro_id = :performerProID AND has_generic_pro_been_paid = false AND is_signed_by_generic_pro IS TRUE AND is_cancelled = false"), ['performerProID' => $performerProID])[0]->expected_pay;
- $totalExpectedAmount = $expectedForHcp + $expectedForCm + $expectedForRme + $expectedForRmm + $expectedForNa;
- $reimbursement['nextPaymentAmount'] = $totalExpectedAmount;
- $milliseconds = strtotime(date('Y-m-d')) . '000';
- // bills & claims
- $businessNumbers = [];
- // Notes with bills to resolve
- $businessNumbers['notesWithBillsToResolve'] = Note::where('is_cancelled', '!=', true)
- ->where('is_bill_closed', '!=', true)
- ->whereRaw('(SELECT count(id) FROM bill WHERE note_id = note.id AND is_cancelled = false AND is_verified = false) > 0')
- ->count();
- // Notes pending bill closure
- $businessNumbers['notesPendingBillingClosure'] = Note::where('is_cancelled', '!=', true)
- ->where('is_bill_closed', '!=', true)
- ->whereRaw('(SELECT count(id) FROM bill WHERE note_id = note.id AND (is_cancelled = true OR is_verified = true)) = 0')
- ->count();
- // incoming reports not signed
- $incomingReports = IncomingReport::where('hcp_pro_id', $performerProID)
- ->where('has_hcp_pro_signed', false)
- ->where('is_entry_error', false)
- ->orderBy('created_at', 'ASC')
- ->get();
- // erx, labs & imaging that are not closed
- $tickets = Ticket::where('ordering_pro_id', $performerProID)
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->orderBy('created_at', 'ASC')
- ->get();
- $supplyOrders = SupplyOrder::where('is_cleared_for_shipment', false)
- ->where('is_cancelled', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session where pro_id = ?)', [$performer->pro->id])
- ->orderBy('created_at', 'ASC')
- ->get();
- $numERx = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'erx')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numLabs = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'lab')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numImaging = Ticket::where('ordering_pro_id', $performerProID)
- ->where('category', 'imaging')
- ->where('is_entry_error', false)
- ->where('is_open', true)
- ->count();
- $numSupplyOrders = SupplyOrder::where('is_cleared_for_shipment', false)
- ->where('is_cancelled', false)
- ->whereRaw('created_by_session_id IN (SELECT id FROM app_session where pro_id = ?)', [$performer->pro->id])
- ->count();
- $newMCPAssociations = [];
- if($request->input('mcpas')) {
- $newMCPAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'MCP')
- ->whereNull('current_client_pro_change_decision_id')
- ->get();
- }
- else {
- $newMCPAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'MCP')
- ->whereNull('current_client_pro_change_decision_id')
- ->count();
- }
- $newNAAssociations = [];
- if($request->input('naas')) {
- $newNAAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'DEFAULT_NA')
- ->whereNull('current_client_pro_change_decision_id')
- ->get();
- }
- else {
- $newNAAssociations = ClientProChange
- ::where('new_pro_id', $performerProID)
- ->where('responsibility_type', 'DEFAULT_NA')
- ->whereNull('current_client_pro_change_decision_id')
- ->count();
- }
- $proApptUpdates = AppointmentConfirmationDecision
- ::select('appointment_confirmation_decision.uid', 'client.name_first', 'client.name_last', 'appointment.start_time')
- ->rightJoin('appointment', 'appointment.id', '=', 'appointment_confirmation_decision.appointment_id')
- ->rightJoin('client', 'client.id', '=', 'appointment.client_id')
- ->where('appointment_confirmation_decision.was_acknowledged_by_appointment_pro', false)
- ->where('appointment.status', '!=', 'CREATED')
- ->where('appointment.status', '!=', 'COMPLETED')
- ->where('appointment.status', '!=', 'ABANDONED')
- ->where('appointment.pro_id', $performerProID)
- ->where('client.mcp_pro_id', $performerProID)
- ->orderBy('appointment.start_time', 'DESC')
- ->get();
- $naApptUpdates = AppointmentConfirmationDecision
- ::select('appointment_confirmation_decision.uid', 'client.name_first', 'client.name_last', 'pro.name_first as pro_name_first', 'pro.name_last as pro_name_last', 'appointment.start_time')
- ->rightJoin('appointment', 'appointment.id', '=', 'appointment_confirmation_decision.appointment_id')
- ->rightJoin('client', 'client.id', '=', 'appointment.client_id')
- ->rightJoin('pro', 'pro.id', '=', 'appointment.pro_id')
- ->where('appointment_confirmation_decision.was_acknowledged_by_client_default_na', false)
- ->where('appointment.status', '!=', 'CREATED')
- ->where('appointment.status', '!=', 'COMPLETED')
- ->where('appointment.status', '!=', 'ABANDONED')
- ->where('client.default_na_pro_id', $performerProID)
- ->orderBy('appointment.start_time', 'DESC')
- ->get();
- // $naApptUpdates = AppointmentConfirmationDecision
- // ::join('appointment', 'appointment.id', '=', 'appointment_confirmation_decision.appointment_id')
- // ->join('client', 'client.id', '=', 'appointment.client_id')
- // ->where('client.default_na_pro_id', $performerProID)
- // ->where('appointment_confirmation_decision.was_acknowledged_by_client_default_na', false)
- // ->orderBy('appointment.start_time DESC')
- // ->get();
- // unstamped client memos
- // for mcp
- $mcpClientMemos = [];
- if($request->input('mcpcm')) {
- $mcpClientMemos = DB::select(
- DB::raw("
- SELECT c.uid as client_uid, c.name_first, c.name_last,
- cm.uid, cm.content, cm.created_at
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.mcp_pro_id = {$performerProID} AND
- cm.mcp_stamp_id IS NULL
- ORDER BY cm.created_at DESC
- ")
- );
- }
- else {
- $mcpClientMemos = DB::select(
- DB::raw("
- SELECT COUNT(cm.id)
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.mcp_pro_id = {$performerProID} AND
- cm.mcp_stamp_id IS NULL
- ")
- );
- }
- // for na
- $naClientMemos = [];
- if($request->input('nacm')) {
- $naClientMemos = DB::select(
- DB::raw("
- SELECT c.uid as client_uid, c.name_first, c.name_last,
- cm.uid, cm.content, cm.created_at
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.default_na_pro_id = {$performerProID} AND
- cm.default_na_stamp_id IS NULL
- ORDER BY cm.created_at DESC
- ")
- );
- }
- else {
- $naClientMemos = DB::select(
- DB::raw("
- SELECT COUNT(cm.id)
- FROM client c join client_memo cm on c.id = cm.client_id
- WHERE
- c.default_na_pro_id = {$performerProID} AND
- cm.default_na_stamp_id IS NULL
- ")
- );
- }
- $keyNumbers['rmBillsToSign'] = Bill
- ::where('is_cancelled', false)
- ->where('cm_or_rm', 'RM')
- ->where(function ($q) use ($performerProID) {
- $q
- ->where(function ($q2) use ($performerProID) {
- $q2->where('hcp_pro_id', $performerProID)->where('is_signed_by_hcp', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('rme_pro_id', $performerProID)->where('is_signed_by_rme', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('rmm_pro_id', $performerProID)->where('is_signed_by_rmm', false);
- })
- ->orWhere(function ($q2) use ($performerProID) {
- $q2->where('generic_pro_id', $performerProID)->where('is_signed_by_generic_pro', false);
- });
- })
- ->count();
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.number_of_days_with_remote_measurements < 16 OR care_month.number_of_days_with_remote_measurements IS NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithLT16MD'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.number_of_days_with_remote_measurements >= 16 AND care_month.number_of_days_with_remote_measurements IS NOT NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithGTE16MD'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.has_anyone_interacted_with_client_about_rm_outside_note = TRUE AND care_month.has_anyone_interacted_with_client_about_rm_outside_note IS NOT NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithWhomCommDone'] = $count[0]->cnt;
- $count = DB::select(
- DB::raw(
- "
- SELECT count(client.id) as cnt FROM client join care_month on care_month.client_id = client.id
- WHERE ((client.mcp_pro_id = {$performer->pro->id}) OR (client.rmm_pro_id = {$performer->pro->id})
- OR (client.rme_pro_id = {$performer->pro->id}) OR (client.default_na_pro_id = {$performer->pro->id}))
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from now())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from now())
- AND (care_month.has_anyone_interacted_with_client_about_rm_outside_note = FALSE OR care_month.has_anyone_interacted_with_client_about_rm_outside_note IS NULL)
- "
- )
- );
- $keyNumbers['rmPatientsWithWhomCommNotDone'] = $count[0]->cnt;
- if($performer->pro->pro_type === 'ADMIN') {
- // patients without coverage information
- $keyNumbers['patientsWithoutCoverageInformation'] = DB::select(DB::raw("
- SELECT count(DISTINCT (cl.id)) as cnt
- FROM client cl
- WHERE cl.shadow_pro_id IS NULL AND cl.effective_client_primary_coverage_id IS NULL -- no coverage record"
- ))[0]->cnt;
- // patients pending coverage verification
- $keyNumbers['patientsPendingCoverageVerification'] = DB::select(DB::raw("
- SELECT count(DISTINCT (cl.id)) as cnt
- FROM client cl
- LEFT JOIN client_primary_coverage cpc ON cl.effective_client_primary_coverage_id = cpc.id
- WHERE cl.shadow_pro_id IS NULL
- AND (cl.effective_client_primary_coverage_id IS NOT NULL -- coverage exists, but status is null or unknown
- AND (
- (cpc.plan_type = 'MEDICARE' AND (cpc.is_partbprimary = 'UNKNOWN' OR cpc.is_partbprimary IS NULL))
- OR
- (cpc.plan_type != 'MEDICARE' AND
- (cpc.manual_determination_category = 'UNKNOWN' OR cpc.manual_determination_category IS NULL))
- ))"
- ))[0]->cnt;
- }
- return view('app/dashboard-admin', compact('keyNumbers', 'reimbursement', 'milliseconds',
- 'businessNumbers',
- 'incomingReports', 'tickets', 'supplyOrders',
- 'numERx', 'numLabs', 'numImaging', 'numSupplyOrders',
- 'newMCPAssociations', 'newNAAssociations',
- 'mcpClientMemos', 'naClientMemos',
- 'proApptUpdates', 'naApptUpdates'));
- }
- public function dashboard(Request $request)
- {
- $performer = $this->performer();
- $pro = $performer->pro;
-
- if($pro->pro_type === 'ADMIN'){
- return $this->dashboard_ADMIN($request);
- }elseif($pro->is_enrolled_as_mcp && $pro->is_considered_for_mcp_assignment) {
- return $this->dashboard_MCP($request);
- }elseif($pro->is_hcp){
- return $this->dashboard_HCP($request); //TODO for HCP
- }elseif($pro->is_considered_for_supervising_physician){
- return redirect()->route('ps.dashboard');
- }else{
- return $this->dashboard_DNA($request);
- }
- }
- public function dashboardMeasurementsTab(Request $request, $page = 1) {
- $performer = $this->performer();
- $myClientIDs = [];
- if ($performer->pro->pro_type != 'ADMIN') {
- $myClientIDs = $this->getMyClientIds();
- $myClientIDs = implode(", ", $myClientIDs);
- }
- $ifNotAdmin = " AND (
- client.mcp_pro_id = {$performer->pro->id}
- OR client.rmm_pro_id = {$performer->pro->id}
- OR client.rme_pro_id = {$performer->pro->id}
- OR client.physician_pro_id = {$performer->pro->id}
- OR client.id in (SELECT client_id FROM client_pro_access WHERE is_active AND pro_id = {$performer->pro->id})
- OR client.id in (SELECT client_id FROM appointment WHERE status NOT IN ('CANCELLED') AND pro_id = {$performer->pro->id})
- )";
- $numMeasurements = DB::select(
- DB::raw(
- "
- SELECT count(measurement.id) as cnt
- FROM measurement
- join client on measurement.client_id = client.id
- WHERE measurement.label NOT IN ('SBP', 'DBP')
- AND (measurement.is_cellular_zero = FALSE or measurement.is_cellular_zero IS NULL)
- AND measurement.is_active IS TRUE
- AND measurement.has_been_stamped_by_mcp IS FALSE
- AND measurement.ts IS NOT NULL
- AND measurement.client_bdt_measurement_id IS NOT NULL
- AND (measurement.status IS NULL OR (measurement.status <> 'ACK' AND measurement.status <> 'INVALID_ACK'))
- AND EXTRACT(MONTH from measurement.created_at) = EXTRACT(MONTH from NOW())
- AND EXTRACT(YEAR from measurement.created_at) = EXTRACT(YEAR from NOW())
- " .
- (
- $performer->pro->pro_type != 'ADMIN' ? $ifNotAdmin : ''
- )
- )
- );
- $numMeasurements = $numMeasurements[0]->cnt;
- $measurements = DB::select(
- DB::raw(
- "
- SELECT measurement.uid as uid,
- care_month.uid as care_month_uid,
- care_month.start_date as care_month_start_date,
- measurement.label,
- measurement.value,
- measurement.sbp_mm_hg,
- measurement.dbp_mm_hg,
- measurement.numeric_value,
- measurement.value_pulse,
- measurement.value_irregular,
- measurement.ts,
- client.id as client_id,
- client.mcp_pro_id,
- client.default_na_pro_id,
- client.rmm_pro_id,
- client.rme_pro_id,
- client.uid as client_uid,
- client.name_last,
- client.name_first,
- care_month.rm_total_time_in_seconds
- FROM measurement
- join client on measurement.client_id = client.id
- join care_month on client.id = care_month.client_id
- WHERE measurement.label NOT IN ('SBP', 'DBP')
- AND (measurement.is_cellular_zero = FALSE or measurement.is_cellular_zero IS NULL)
- AND measurement.is_active IS TRUE
- AND measurement.has_been_stamped_by_mcp IS FALSE
- AND measurement.ts IS NOT NULL
- AND measurement.client_bdt_measurement_id IS NOT NULL
- AND (measurement.status IS NULL OR (measurement.status <> 'ACK' AND measurement.status <> 'INVALID_ACK'))
- AND EXTRACT(MONTH from measurement.created_at) = EXTRACT(MONTH from NOW())
- AND EXTRACT(YEAR from measurement.created_at) = EXTRACT(YEAR from NOW())
- AND EXTRACT(MONTH from care_month.start_date) = EXTRACT(MONTH from NOW())
- AND EXTRACT(YEAR from care_month.start_date) = EXTRACT(YEAR from NOW())
- " .
- (
- $performer->pro->pro_type != 'ADMIN' ? $ifNotAdmin : ''
- )
- ) .
- " ORDER BY measurement.ts DESC LIMIT 20 OFFSET " . (($page - 1) * 20)
- );
- return view('app.dashboard.measurements', compact('numMeasurements', 'measurements', 'page'));
- }
- public function dashboardAppointmentDates(Request $request, $from, $to) {
- $performer = $this->performer();
- $performerProID = $performer->pro->id;
- $isAdmin = ($performer->pro->pro_type === 'ADMIN');
- $results = DB::table('appointment')->select('raw_date')->distinct()->where("start_time", '>=', $from)->where("start_time", '<=', $to.' 23:59:00+00');
- $results = $results->leftJoin('client AS c', 'c.id', '=', 'appointment.id');
- if(!$isAdmin) {
- $results = $results->where(function($query) use ($performerProID){
- return $query->where('appointment.pro_id', $performerProID)
- ->orWhere('c.default_na_pro_id', $performerProID);
- });
- }
- $results = $results->get();
- $dates = [];
- foreach ($results as $result) {
- // $dates[] = strtotime($result->raw_date) . '000';
- $dates[] = $result->raw_date;
- }
- // foreach ($results as $result) {
- // $results->dateYMD = date('Y-m-d', strtotime($result->raw_date));
- // }
- return json_encode($dates);
- }
- public function dashboardAppointments(Request $request, $from, $to) {
- $performer = $this->performer();
- $performerProID = $performer->pro->id;
- $isAdmin = ($performer->pro->pro_type === 'ADMIN');
- // $appointments = Appointment::where("start_time", '>=', $from)->where("start_time", '<=', $to.' 23:59:00+00');
- $appointments = Appointment::where("raw_date", '=', $from);
- if(!$isAdmin) {
- $appointments = $appointments->where(function($q) use ($performerProID) {
- return $q->where("pro_id", $performerProID)
- ->orWhereHas('client', function($clientQuery) use ($performerProID){
- return $clientQuery->where('default_na_pro_id', $performerProID);
- });
- });
- }
- $appointments = $appointments
- // ->whereRaw('status NOT IN (\'CANCELLED\', \'COMPLETED\')')
- ->orderBy('start_time', 'asc')
- ->get();
- foreach ($appointments as $appointment) {
- $date = explode(" ", $appointment->start_time)[0];
- $appointment->milliseconds = strtotime($date) . '000';
- $appointment->newStatus = $appointment->status;
- $appointment->dateYMD = date('Y-m-d', strtotime($appointment->raw_date));
- $appointment->clientName = $appointment->client->displayName();
- $appointment->clientInitials = substr($appointment->client->name_first, 0, 1) . substr($appointment->client->name_last, 0, 1);
- $appointment->isClientShadowOfPro = $appointment->client->shadow_pro_id ? true : false;
- $appointment->proInitials = substr($appointment->pro->name_first, 0, 1) . substr($appointment->pro->name_last, 0, 1);
- $appointment->friendlyStartTime = friendly_time($appointment->raw_start_time);
- $appointment->friendlyEndTime = friendly_time($appointment->raw_end_time);
- $appointment->clientSummary = friendly_date_time($appointment->client->dob, false) . ' (' .
- $appointment->client->age_in_years . ' y.o' .
- ($appointment->client->sex ? ' ' . $appointment->client->sex : '') .
- ')';
- $appointment->clientAge = $appointment->client->age_in_years;
- $appointment->clientSex = $appointment->client->sex;
- $appointment->createdBy = $appointment->creator ? $appointment->creator->displayName() : '';
- $appointment->createdAt = friendly_date($appointment->created_at);
- $appointment->started = false;
- $appointment->inHowManyHours = date_diff(date_create('now'), date_create($appointment->start_time), false)
- ->format('%R%h h, %i m');
- if ($appointment->inHowManyHours[0] === '-') {
- $appointment->inHowManyHours = substr($appointment->inHowManyHours, 1) . ' ago';
- $appointment->started = true;
- } else {
- $appointment->inHowManyHours = 'Appt. in ' . substr($appointment->inHowManyHours, 1);
- }
- $appointment->clientUid = $appointment->client->uid;
- $appointment->proUid = $appointment->pro->uid;
- $appointment->proName = $appointment->pro->displayName();
- // insurance information
- $appointment->coverage = $appointment->client->getPrimaryCoverageStatus();
- unset($appointment->client);
- unset($appointment->pro);
- unset($appointment->detail_json);
- }
- return json_encode($appointments);
- }
- public function dashboardAppointmentsDisplay(Request $request, $from, $to) {
- $performer = $this->performer();
- $performerProID = $performer->pro->id;
- $isAdmin = ($performer->pro->pro_type === 'ADMIN');
- // $appointments = Appointment::where("start_time", '>=', $from)->where("start_time", '<=', $to.' 23:59:00+00');
- $appointments = Appointment::where("raw_date", '=', $from);
- if(!$isAdmin) {
- $appointments = $appointments->where(function($q) use ($performerProID) {
- return $q->where("pro_id", $performerProID)
- ->orWhereHas('client', function($clientQuery) use ($performerProID){
- return $clientQuery->where('default_na_pro_id', $performerProID);
- });
- });
- }
- $appointments = $appointments
- ->orderBy('start_time', 'asc')
- ->orderBy('end_time', 'asc')
- ->get();
- foreach ($appointments as $appointment) {
- $date = explode(" ", $appointment->start_time)[0];
- $appointment->milliseconds = strtotime($date) . '000';
- $appointment->newStatus = $appointment->status;
- $appointment->dateYMD = date('Y-m-d', strtotime($appointment->raw_date));
- $appointment->clientName = $appointment->client->displayName();
- $appointment->clientInitials = substr($appointment->client->name_first, 0, 1) . substr($appointment->client->name_last, 0, 1);
- $appointment->isClientShadowOfPro = $appointment->client->shadow_pro_id ? true : false;
- $appointment->proInitials = substr($appointment->pro->name_first, 0, 1) . substr($appointment->pro->name_last, 0, 1);
- $appointment->friendlyStartTime = friendly_time($appointment->raw_start_time);
- $appointment->friendlyEndTime = friendly_time($appointment->raw_end_time);
- $appointment->clientSummary = friendly_date_time($appointment->client->dob, false) . ' (' .
- $appointment->client->age_in_years . ' y.o' .
- ($appointment->client->sex ? ' ' . $appointment->client->sex : '') .
- ')';
- $appointment->clientAge = $appointment->client->age_in_years;
- $appointment->clientSex = $appointment->client->sex;
- $appointment->started = false;
- $appointment->inHowManyHours = date_diff(date_create('now'), date_create($appointment->start_time), false)
- ->format('%R%h h, %i m');
- if ($appointment->inHowManyHours[0] === '-') {
- $appointment->inHowManyHours = substr($appointment->inHowManyHours, 1) . ' ago';
- $appointment->started = true;
- } else {
- $appointment->inHowManyHours = 'Appt. in ' . substr($appointment->inHowManyHours, 1);
- }
- $appointment->clientUid = $appointment->client->uid;
- $appointment->proUid = $appointment->pro->uid;
- $appointment->proName = $appointment->pro->displayName();
- // insurance information
- $appointment->coverage = $appointment->client->getPrimaryCoverageStatus();
- // bg color
- $appointment->bgColor = 'bg-white';
- if($appointment->status === 'COMPLETED') {
- $appointment->bgColor = 'event-bg-green';
- }
- else if($appointment->status === 'CANCELLED') {
- $appointment->bgColor = 'event-bg-gray';
- }
- unset($appointment->client);
- unset($appointment->pro);
- unset($appointment->detail_json);
- }
- return view('app.mcp.dashboard.appointments-list', compact('appointments', 'from', 'to'));
- }
- public function dashboardMeasurements(Request $request, $filter) {
- $measurements = $this->performer()->pro->getMeasurements($filter === 'NEED_ACK');
- return json_encode($measurements);
- }
- public function patients(Request $request, $filter = '')
- {
- $performer = $this->performer();
- $query = $performer->pro->getAccessibleClientsQuery();
- $q = trim($request->input('q'));
- if(!empty($q)) {
- $query = $query->where(function ($query) use ($q) {
- $query->where('name_first', 'ILIKE', "%$q%")
- ->orWhere('name_last', 'ILIKE', "%$q%")
- ->orWhere('email_address', 'ILIKE', "%$q%")
- ->orWhere('tags', 'ILIKE', "%$q%");
- });
- }
- switch ($filter) {
- case 'not-yet-seen':
- $query = $query
- ->where(function ($query) use ($performer) {
- $query
- ->where(function ($query) use ($performer) { // own patient and primary OB visit pending
- $query->where('mcp_pro_id', $performer->pro->id)
- ->where('has_mcp_done_onboarding_visit', '<>', 'YES');
- })
- ->orWhere(function ($query) use ($performer) { // mcp of any client program and program OB pending
- $query->select(DB::raw('COUNT(id)'))
- ->from('client_program')
- ->whereColumn('client_id', 'client.id')
- ->where('mcp_pro_id', $performer->pro->id)
- ->where('has_mcp_done_onboarding_visit', '<>', 'YES');
- }, '>=', 1);
- });
- break;
- case 'having-birthday-today':
- $query = $query
- ->whereRaw('EXTRACT(DAY from dob) = ?', [date('d')])
- ->whereRaw('EXTRACT(MONTH from dob) = ?', [date('m')]);
- break;
- // more cases can be added as needed
- default:
- break;
- }
- $patients = $query->orderBy('created_at', 'desc')->paginate(50);
- // patient acquisition chart (admin only)
- $patientAcquisitionData = null;
- if($performer->pro->pro_type === 'ADMIN') {
- $startDate = date_sub(date_create(), date_interval_create_from_date_string("1 month"));
- $startDate = date_format($startDate, "Y-m-d");
- $patientAcquisitionData = DB::select(DB::raw(
- "SELECT count(id) as count, DATE(created_at at time zone 'utc' at time zone 'est') as date " .
- "FROM client " .
- "WHERE shadow_pro_id IS NULL " .
- "GROUP BY DATE(created_at at time zone 'utc' at time zone 'est') " .
- "ORDER BY DATE(created_at at time zone 'utc' at time zone 'est') DESC " .
- "LIMIT 30"));
- }
- return view('app/patients', compact('patients', 'filter', 'patientAcquisitionData'));
- }
- public function patientsSuggest(Request $request)
- {
- $pro = $this->pro;
- $term = $request->input('term') ? trim($request->input('term')) : '';
- $originalTerm = $term;
- if (empty($term)) return '';
- // if multiple words in query, check for all (max 2)
- $term2 = '';
- if(strpos($term, ' ') !== FALSE) {
- $terms = explode(' ', $term);
- $term = trim($terms[0]);
- $term2 = trim($terms[1]);
- }
- $phoneNumberTerm = preg_replace("/[^0-9]/", "", $originalTerm );
- if($phoneNumberTerm == ""){ //to avoid search with blank string
- $phoneNumberTerm = $term;
- }
- $clientQuery= Client::whereNull('shadow_pro_id')
- ->where(function ($q) use ($term, $phoneNumberTerm) {
- $q->where('name_first', 'ILIKE', '%' . $term . '%')
- ->orWhere('name_last', 'ILIKE', '%' . $term . '%')
- ->orWhere('cell_number', 'ILIKE', '%' . $phoneNumberTerm . '%')
- ->orWhere('phone_home', 'ILIKE', '%' . $phoneNumberTerm . '%');
- });
- if(!empty($term2)) {
- $clientQuery = $clientQuery->where(function ($q) use ($term2, $phoneNumberTerm) {
- $q->where('name_first', 'ILIKE', '%' . $term2 . '%')
- ->orWhere('name_last', 'ILIKE', '%' . $term2 . '%')
- ->orWhere('cell_number', 'ILIKE', '%' . $phoneNumberTerm . '%')
- ->orWhere('phone_home', 'ILIKE', '%' . $phoneNumberTerm . '%');
- });
- }
- if(!($pro->pro_type === 'ADMIN' && $pro->can_see_any_client_via_search)) {
- $clientQuery->where(function ($q) use ($pro) {
- if($pro->pro_type === 'ADMIN' || $pro->is_enrolled_as_mcp) {
- $q->whereIn('id', $pro->getMyClientIds(true))->orWhereNull('mcp_pro_id');
- }
- else {
- $q->whereIn('id', $pro->getMyClientIds(true));
- }
- });
- }
- $clients = $clientQuery->get();
- return view('app/patient-suggest', compact('clients'));
- }
- public function pharmacySuggest(Request $request)
- {
- $term = $request->input('term') ? trim($request->input('term')) : '';
- if (empty($term)) return '';
- $term = strtolower($term);
- $pharmacies = Facility::where('facility_type', 'Pharmacy')
- ->where(function ($q) use ($term) {
- $q->orWhereRaw('LOWER(name::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('LOWER(address_line1::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('LOWER(address_line2::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('LOWER(address_city::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('LOWER(address_state::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('LOWER(phone::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('LOWER(address_zip::text) LIKE ?', ['%' . $term . '%']);
- });
- if($request->input('city')) {
- $pharmacies = $pharmacies->whereRaw('LOWER(address_city::text) LIKE ?', ['%' . strtolower($request->input('city')) . '%']);
- }
- if($request->input('state')) {
- $pharmacies = $pharmacies->whereRaw('LOWER(address_state::text) LIKE ?', ['%' . strtolower($request->input('state')) . '%']);
- }
- if($request->input('zip')) {
- $pharmacies = $pharmacies->whereRaw('LOWER(address_zip::text) LIKE ?', ['%' . strtolower($request->input('zip')) . '%']);
- }
- $pharmacies = $pharmacies
- ->orderBy('name', 'asc')
- ->orderBy('address_line1', 'asc')
- ->orderBy('address_city', 'asc')
- ->orderBy('address_state', 'asc')
- ->get();
- return view('app/pharmacy-suggest', compact('pharmacies'));
- }
- public function facilitySuggestJSON(Request $request)
- {
- $term = $request->input('term') ? trim($request->input('term')) : '';
- if (empty($term)) return '';
- $terms = explode(' ', $term);
- $terms = array_filter($terms, function($_x) {
- return !!trim($_x);
- });
- $whereCondition = [];
- $whereParams = [];
- for ($i = 0; $i < count($terms); $i++) {
- $whereCondition[] = "(name ILIKE :term{$i} OR address_city ILIKE :term{$i} OR address_state ILIKE :term{$i} OR address_zip ILIKE :term{$i})";
- $whereParams["term{$i}"] = '%' . $terms[$i] . '%';
- }
- $whereCondition = implode(" AND ", $whereCondition);
- $matches = DB::select(
- "SELECT (name || ' ' || address_city || ' ' || address_state || ' ' || address_zip) as text,
- address_line1 as text2,
- name, address_city as city, address_state as state, address_zip as zip, phone, fax FROM facility
- WHERE {$whereCondition} ORDER BY name", $whereParams);
- return json_encode([
- "success" => true,
- "data" => $matches
- ]);
- }
- public function proSuggest(Request $request) {
- $term = $request->input('term') ? trim($request->input('term')) : '';
- if (empty($term)) return '';
- $term = strtolower($term);
- // if multiple words in query, check for all (max 2)
- $term2 = '';
- if(strpos($term, ' ') !== FALSE) {
- $terms = explode(' ', $term);
- $term = trim($terms[0]);
- $term2 = trim($terms[1]);
- }
- $pros = Pro::where(function ($q) use ($term) {
- $q->orWhereRaw('LOWER(name_first::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('LOWER(name_last::text) LIKE ?', ['%' . $term . '%'])
- ->orWhereRaw('cell_number LIKE ?', ['%' . $term . '%']);
- });
- if(!empty($term2)) {
- $pros = $pros->where(function ($q) use ($term2) {
- $q->orWhereRaw('LOWER(name_first::text) LIKE ?', ['%' . $term2 . '%'])
- ->orWhereRaw('LOWER(name_last::text) LIKE ?', ['%' . $term2 . '%'])
- ->orWhereRaw('cell_number LIKE ?', ['%' . $term2 . '%']);
- });
- }
- $type = $request->input('type') ? trim($request->input('type')) : '';
- if(!!$type) {
- switch(strtolower($type)) {
- case 'hcp':
- $pros->where('is_hcp', true);
- break;
- case 'non-hcp':
- $pros->where('is_hcp', false);
- break;
- case 'default-na': // TODO: fix condition for NA
- $pros->where('is_hcp', false)->where('pro_type', '!=', 'ADMIN');
- break;
- case 'admin':
- $pros->where('pro_type', 'ADMIN');
- break;
- case 'non-admin':
- $pros->where('pro_type', '!=', 'ADMIN');
- break;
- case 'rmm':
- $pros->where('is_considered_for_rmm', TRUE);
- break;
- case 'rme':
- $pros->where('is_considered_for_rme', TRUE);
- break;
- }
- }
- if($this->performer->pro && $this->performer->pro->pro_type != 'ADMIN'){
- $accessiblePros = ProProAccess::where('owner_pro_id', $this->performer->pro->id);
- $accessibleProIds = [];
- foreach($accessiblePros as $accessiblePro){
- $accessibleProIds[] = $accessiblePro->id;
- }
- $accessibleProIds[] = $this->performer->pro->id;
- // for dna, add pros accessible via pro teams
- if($this->performer->pro->isDefaultNA()) {
- $teams = $this->performer->pro->teamsWhereAssistant;
- foreach ($teams as $team) {
- if(!in_array($team->mcp_pro_id, $accessibleProIds)) {
- $accessibleProIds[] = $team->mcp_pro_id;
- }
- }
- }
- $teams = $this->performer->pro->teamsWhereMcp;
- foreach ($teams as $team) {
- if(!in_array($team->assistant_pro_id, $accessibleProIds)) {
- $accessibleProIds[] = $team->assistant_pro_id;
- }
- }
- $pros->whereIn('id', $accessibleProIds);
- }
- $suggestedPros = $pros->orderBy('name_last')->orderBy('name_first')->get();
- // for calendar select2
- if($request->input('json')) {
- $onlyProsThatCanAccessClientUid = $request->get('canAccessClientUid');
- $jsonPros = $suggestedPros->map(function($_pro) use($onlyProsThatCanAccessClientUid) {
- if($onlyProsThatCanAccessClientUid){
- if(!$_pro->canAccess($onlyProsThatCanAccessClientUid)) return false;
- }
- return [
- "uid" => $_pro->uid,
- "id" => $_pro->id,
- "text" => $_pro->displayName(),
- "initials" => $_pro->initials(),
- ];
- });
- return json_encode([
- "results" => $jsonPros
- ]);
- }
- return view('app/pro-suggest', compact('suggestedPros'));
- }
- public function canAccessPatient(Request $request, $uid) {
- return json_encode([
- "success" => true,
- "data" => $this->performer->pro->canAccess($uid)
- ]);
- }
- public function proDisplayName(Request $request, Pro $pro) {
- return $pro ? $pro->displayName() : '';
- }
- public function proUid(Request $request, $id) {
- $pro = Pro::where('id', $id)->first();
- return $pro ? $pro->uid : '';
- }
- public function unmappedSMS(Request $request, $filter = '')
- {
- $proID = $this->performer()->pro->id;
- if ($this->performer()->pro->pro_type === 'ADMIN') {
- $query = Client::where('id', '>', 0);
- } else {
- $query = Client::where(function ($q) use ($proID) {
- $q->where('mcp_pro_id', $proID)
- ->orWhere('cm_pro_id', $proID)
- ->orWhere('rmm_pro_id', $proID)
- ->orWhere('rme_pro_id', $proID)
- ->orWhereRaw('id IN (SELECT client_id FROM client_pro_access WHERE is_active AND pro_id = ?)', [$proID]);
- });
- }
- $patients = $query->orderBy('name_last', 'asc')->orderBy('name_first', 'asc')->get();
- $unmappedSMS = ClientSMS::where('client_id', null)->where('incoming_or_outgoing', 'INCOMING')->paginate(20);
- return view('app/unmapped-sms', compact('unmappedSMS', 'patients'));
- }
- public function newPatient(Request $request)
- {
- $mbPayers = MBPayer::all();
- return view('app/new-patient', compact('mbPayers'));
- }
- public function newNonMcnPatient(Request $request)
- {
- $mbPayers = MBPayer::all();
- return view('app/new-non-mcn-patient', compact('mbPayers'));
- }
- public function mc(Request $request, $fragment = "")
- {
- $page = "/";
- if ($fragment) {
- $page = '/' . $fragment;
- }
- return view('app/mc', compact('page'));
- }
- public function blank(Request $request)
- {
- return view('app/blank');
- }
- public function noteTemplateSet(Request $request, $section, $template)
- {
- return view('app/patient/note/_template', [
- "sectionInternalName" => $section,
- "templateName" => $template
- ]);
- }
- public function noteExamTemplateSet(Request $request, $exam, $template)
- {
- return view('app/patient/note/_template-exam', [
- "exam" => $exam,
- "sectionInternalName" => 'exam-' . $exam . '-detail',
- "templateName" => $template
- ]);
- }
- public function logInAs(Request $request)
- {
- if($this->pro->pro_type != 'ADMIN'){
- return redirect()->to(route('dashboard'));
- }
- // dummy condition to get the chain-ability going
- $pros = Pro::where('id', '>', 0);
- if($request->input('q')) {
- $nameQuery = '%' . $request->input('q') . '%';
- $pros = $pros->where(function ($query) use ($nameQuery) {
- $query->where('name_first', 'ILIKE', $nameQuery)
- ->orWhere('name_last', 'ILIKE', $nameQuery)
- ->orWhere('email_address', 'ILIKE', $nameQuery)
- ->orWhere('cell_number', 'ILIKE', $nameQuery);
- });
- }
- if($request->input('sort') && $request->input('dir')) {
- $pros = $pros->orderBy($request->input('sort'), $request->input('dir'));
- }
- else {
- $pros = $pros->orderBy('name_last', 'asc');
- }
- $pros = $pros->paginate(20);
- return view('app/log-in-as', ['logInAsPros' => $pros]);
- }
- public function processLogInAs(Request $request)
- {
- $api = new Backend();
- try {
- $apiResponse = $api->post('session/proLogInAs', [
- 'proUid' => $request->post('proUid')
- ],
- [
- 'sessionKey'=>$this->performer()->session_key
- ]);
- $data = json_decode($apiResponse->getContents());
- if (!property_exists($data, 'success') || !$data->success) {
- return redirect()->to(route('log-in-as'))->with('message', $data->message)
- ->withInput($request->input());
- }
- Cookie::queue('sessionKey', $data->data->sessionKey);
- return redirect($request->input('redir') ?: '/mc');
- } catch (\Exception $e) {
- return redirect()->to(route('log-in-as'))
- ->with('message', 'Unable to process your request at the moment. Please try again later.')
- ->withInput($request->input());
- }
- }
- public function backToAdminPro(Request $request){
- $adminPerformerId = $this->performer->logged_in_as_pro_from_admin_pro_app_session_id;
- $adminPerformer = AppSession::where('id', $adminPerformerId)->first();
- $url = "/session/pro_log_in_with_session_key/".$adminPerformer->session_key;
- $api = new Backend();
- try {
- $apiResponse = $api->post($url, []);
- $data = json_decode($apiResponse->getContents());
- if (!property_exists($data, 'success') || !$data->success) {
- return redirect()->to(route('logout'));
- }
- Cookie::queue('sessionKey', $data->data->sessionKey);
- return redirect($request->input('redir') ?: route('dashboard'));
- } catch (\Exception $e) {
- return redirect(route('dashboard'));
- }
- }
- public function getTicket(Request $request, Ticket $ticket) {
- $ticket->data = json_decode($ticket->data);
- // $ticket->created_at = friendly_date_time($ticket->created_at);
- $ticket->assignedPro;
- $ticket->managerPro;
- $ticket->orderingPro;
- $ticket->initiatingPro;
- return json_encode($ticket);
- }
- public function genericBill(Request $request, $entityType, $entityUid) {
- $patient = null;
- if ($entityType && $entityUid) {
- try {
- $entityClass = "\\App\\Models\\" . $entityType;
- $entity = $entityClass::where('uid', $entityUid)->first();
- if ($entity->client) {
- $patient = $entity->client;
- }
- } catch (\Exception $e) {
- }
- }
- return view('app.generic-bills.inline', ['class' => 'p-3 border-top mt-3', 'entityType' => $entityType, 'entityUid' => $entityUid, 'patient' => $patient]);
- }
- public function outgoingEmailTemplates(Request $request){
- $templates = OutgoingEmailTemplate::where('is_active', true)->orderBy('default_subject_tpl', 'ASC')->get();
- return $this->pass($templates);
- }
- }
|