Make cashier billing invoices actionable for walk-up payment.
Deploy Ladill Care / deploy (push) Successful in 1m1s

Clarify booth Call next vs unpaid invoice list, and expose Pay/View row actions so cashiers can open bills when the booth queue is empty.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-18 23:16:49 +00:00
co-authored by Cursor
parent ff316f15c6
commit b84c7e31ba
4 changed files with 75 additions and 18 deletions
+4 -1
View File
@@ -89,7 +89,10 @@ class BillController extends Controller
$result = $this->queueBridge->callNext($organization, CareQueueContexts::BILLING, $branchId, $member);
$ticket = $result['ticket'] ?? null;
if (! $ticket) {
return back()->with('info', 'No bills waiting at your billing service point.');
return back()->with(
'info',
'No patients waiting at the billing booth. Open an unpaid invoice below to record a walk-up payment.',
);
}
return back()->with('success', 'Called '.$ticket['ticket_number'].'.');