24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<?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'],
|
|
],
|
|
];
|