From 4e945e6437a87be706ac637a2ce4bb60897c95b7 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Thu, 23 Jul 2026 11:18:25 -0500 Subject: [PATCH] =?UTF-8?q?fix(kiosko):=20eliminar=20campo=20WhatsApp=20de?= =?UTF-8?q?l=20flujo,=20bot=C3=B3n=20OK=20en=20numpad?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit El campo WhatsApp generaba fricción innecesaria. Ahora el numpad tiene un botón "Obtener mi turno" de ancho completo como última fila. WhatsApp queda como hidden vacío para no romper la API. Co-Authored-By: Claude Sonnet 4.6 --- modules/turnero/views/kiosko.php | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/modules/turnero/views/kiosko.php b/modules/turnero/views/kiosko.php index 4d6d1d3..de803b9 100644 --- a/modules/turnero/views/kiosko.php +++ b/modules/turnero/views/kiosko.php @@ -408,6 +408,8 @@ unset($p); .np-btn:active { background: var(--brand-light); transform: scale(.94); } .np-clear { color: #ef4444; border-color: #fca5a5; } .np-back { color: #64748b; } + .np-ok { background: var(--brand); color: #fff; border-color: var(--brand); + font-size: 1.15rem; padding: 1.1rem; } /* ── Responsive ── */ @media (min-height: 800px) { @@ -518,20 +520,14 @@ unset($p); + -
- - -
Para recibir notificaciones de su turno
-
- + + + @@ -752,7 +748,10 @@ unset($p); e.preventDefault(); const k = btn.dataset.k; const inp = _inpCedula; - if (k === 'C') { + if (k === 'OK') { + confirmarTurno(); + return; + } else if (k === 'C') { inp.value = ''; } else if (k === '⌫') { inp.value = inp.value.slice(0, -1);