'use client' import { BarChart3 } from 'lucide-react' import { Card } from '@/components/ui/card' import { useAuth } from '@/hooks/useAuth' import { useSidebar } from '@/hooks/useSidebar' export function WholesaleEconomicsPage() { const { user } = useAuth() const { getSidebarMargin } = useSidebar() const getOrganizationName = () => { if (user?.organization?.name) { return user.organization.name } if (user?.organization?.fullName) { return user.organization.fullName } return 'Вашей организации' } return (
Финансовые показатели {getOrganizationName()}
Раздел находится в разработке
Будет добавлен позже