Redesign Care patient-flow board and remove Queue from nurses.
Deploy Ladill Care / deploy (push) Successful in 39s
Deploy Ladill Care / deploy (push) Successful in 39s
Shared queue-board is now a Waiting/Called/In care/Done stage board with prominent tickets and Call next; nurses lose queue.manage and canAccessPatientQueue so /queue and queue nav are gated while specialty workspaces stay available. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -41,7 +41,9 @@ class DashboardController extends Controller
|
||||
$canBills = $this->permissions->can($member, 'bills.view');
|
||||
$canFinance = $this->permissions->can($member, 'reports.finance.view');
|
||||
$canConsult = $this->permissions->can($member, 'consultations.manage');
|
||||
$showPatientQueue = $this->permissions->can($member, 'appointments.view') && ! $canBranches;
|
||||
$showPatientQueue = $this->permissions->canAccessPatientQueue($member)
|
||||
&& $this->permissions->can($member, 'appointments.view')
|
||||
&& ! $canBranches;
|
||||
|
||||
$branchQuery = Branch::owned($owner)->where('organization_id', $organization->id);
|
||||
$this->scopeToBranch($request, $branchQuery);
|
||||
|
||||
Reference in New Issue
Block a user