This commit is contained in:
Iliyan Angelov
2025-12-04 15:10:07 +02:00
parent 3d634b4fce
commit 9f1aeb32da
78 changed files with 7204 additions and 114 deletions

View File

@@ -10,7 +10,15 @@ import {
X,
CreditCard,
Receipt,
User
User,
BookOpen,
CheckCircle2,
FileText,
AlertTriangle,
Shield,
Activity,
TrendingUp,
FileCheck
} from 'lucide-react';
import useAuthStore from '../../store/useAuthStore';
import { useResponsive } from '../../hooks';
@@ -91,11 +99,36 @@ const SidebarAccountant: React.FC<SidebarAccountantProps> = ({
icon: Receipt,
label: 'Invoices'
},
{
path: '/accountant/gl',
icon: BookOpen,
label: 'General Ledger'
},
{
path: '/accountant/approvals',
icon: CheckCircle2,
label: 'Approvals'
},
{
path: '/accountant/reports',
icon: BarChart3,
label: 'Financial Reports'
},
{
path: '/accountant/reconciliation',
icon: FileCheck,
label: 'Reconciliation'
},
{
path: '/accountant/audit-trail',
icon: FileText,
label: 'Audit Trail'
},
{
path: '/accountant/security',
icon: Shield,
label: 'Security'
},
{
path: '/accountant/profile',
icon: User,