Improve the dahboard with the weather info
This commit is contained in:
@@ -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' }
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user