This commit is contained in:
Lizandro Guarnizo
2026-04-18 13:28:32 -05:00
parent 56fd2d9174
commit 876e935a66
3 changed files with 440 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
/**
* Descriptor del módulo Turnero — Oleada 1
* Sistema de Turnero Inteligente con gestión de consentimientos informados.
*/
return [
'slug' => 'turnero',
'name' => 'Turnero',
'icon' => 'fas fa-ticket-alt',
'category' => 'turnero',
'route' => '/erp.php?m=turnero&v=dashboard',
'is_active' => true,
'sort_order' => 40,
'oleada' => 1,
'description' => 'Sistema de turnos presenciales en recepción con prioridades, consentimientos y pantallas TV',
'links' => [
['name' => 'Dashboard', 'icon' => 'fas fa-tachometer-alt', 'route' => '/erp.php?m=turnero&v=dashboard'],
['name' => 'Recepción', 'icon' => 'fas fa-concierge-bell', 'route' => '/erp.php?m=turnero&v=recepcion'],
['name' => 'Configuración', 'icon' => 'fas fa-sliders-h', 'route' => '/erp.php?m=turnero&v=configuracion'],
['name' => 'Kiosko', 'icon' => 'fas fa-desktop', 'route' => '/erp.php?m=turnero&v=kiosko'],
['name' => 'Pantalla TV', 'icon' => 'fas fa-tv', 'route' => '/erp.php?m=turnero&v=display'],
],
];