turnero: orden estricto de llegada + color de prioridad en cola recepción
- get_cola.php: quita orden por orden_peso, deja solo creado_at ASC - recepcion.php: cards con prioridad distinta a E (general) muestran borde izquierdo y fondo tintado con el color de la prioridad Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
0f6c837d35
commit
8917daf9be
@@ -61,7 +61,7 @@ if ($area === 'recepcion') {
|
||||
JOIN turnero_prioridades p ON p.id = t.prioridad_id
|
||||
LEFT JOIN turnero_solicitudes s ON s.turno_id = t.id
|
||||
WHERE t.sesion_id = ? AND t.estado IN ($inEstados)
|
||||
ORDER BY p.orden_peso ASC, t.creado_at ASC"
|
||||
ORDER BY t.creado_at ASC"
|
||||
);
|
||||
$stmt->execute([$sesionId]);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user