'use client' import Link from 'next/link' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' import { Button } from '@/components/ui/button' import { Badge } from '@/components/ui/badge' import { CheckCircle, XCircle, AlertCircle, FileText, ExternalLink, RotateCcw, } from 'lucide-react' import type { ImportResult } from '@/lib/import/types' interface ImportResultStepProps { result: ImportResult onNewImport: () => void } export default function ImportResultStep({ result, onNewImport }: ImportResultStepProps) { const hasErrors = result.errors.length > 0 const hasWarnings = result.warnings.length > 0 return (
{result.journalEntriesCreated}
Granska importerade verifikationer
Kontrollera att allt ser korrekt ut i bokföringslistan
Verifiera balanserna
Jämför huvudboken med din tidigare bokföring
Fortsätt med ny bokföring
Nu kan du börja lägga till nya transaktioner