Improve the dahboard with the weather info

This commit is contained in:
Urtzi Alfaro
2025-08-18 13:36:37 +02:00
parent 355c0080cc
commit afca94dadd
12 changed files with 747 additions and 302 deletions

View File

@@ -54,8 +54,18 @@ const OperationsLayout: React.FC = () => {
icon: 'ShoppingCart',
children: [
{ id: 'daily-sales', label: 'Ventas Diarias', href: '/app/operations/sales/daily-sales' },
{ id: 'customer-orders', label: bakeryType === 'individual' ? 'Pedidos Cliente' : 'Pedidos Punto', href: '/app/operations/sales/customer-orders' },
{ id: 'pos-integration', label: bakeryType === 'individual' ? 'TPV' : 'Multi-TPV', href: '/app/operations/sales/pos-integration' }
{ id: 'customer-orders', label: bakeryType === 'individual' ? 'Pedidos Cliente' : 'Pedidos Punto', href: '/app/operations/sales/customer-orders' }
]
},
{
id: 'pos',
label: bakeryType === 'individual' ? 'TPV' : 'Sistema TPV',
href: '/app/operations/pos',
icon: 'CreditCard',
children: [
{ id: 'integrations', label: 'Integraciones', href: '/app/operations/pos/integrations' },
{ id: 'sync-status', label: 'Estado Sincronización', href: '/app/operations/pos/sync-status' },
{ id: 'transactions', label: 'Transacciones', href: '/app/operations/pos/transactions' }
]
}
];