66a4027f1e
- Update BAS account catalog with comprehensive SRU codes and K2 flags - Add currency revaluation service with tests and API route - Add expenses page and account deletion API - Enhance booking templates with new patterns and improved tests - Improve transaction categorization with template picker and description matching - Polish dashboard, onboarding, import, and transaction UIs - Refactor year-end service for multi-step closing - Move SRU generator to ne-bilaga, remove standalone SRU export - Remove unused dev docs, mock data, and extension hooks - Add invoice delivery note sequences migration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
120 lines
4.2 KiB
TypeScript
120 lines
4.2 KiB
TypeScript
'use client'
|
|
|
|
import Link from 'next/link'
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
|
|
import { Button } from '@/components/ui/button'
|
|
import {
|
|
CheckCircle,
|
|
XCircle,
|
|
ArrowRight,
|
|
RotateCcw,
|
|
ExternalLink,
|
|
} from 'lucide-react'
|
|
import type { IngestResult } from '@/lib/transactions/ingest'
|
|
|
|
interface BankFileResultStepProps {
|
|
result: IngestResult
|
|
onNewImport: () => void
|
|
}
|
|
|
|
export default function BankFileResultStep({
|
|
result,
|
|
onNewImport,
|
|
}: BankFileResultStepProps) {
|
|
const isSuccess = result.imported > 0 || result.duplicates > 0
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
{/* Status header */}
|
|
<Card className={isSuccess ? 'border-border' : 'border-destructive/50'}>
|
|
<CardHeader>
|
|
<CardTitle className="flex items-center gap-2">
|
|
{isSuccess ? (
|
|
<>
|
|
<CheckCircle className="h-6 w-6 text-muted-foreground" />
|
|
Import genomförd
|
|
</>
|
|
) : (
|
|
<>
|
|
<XCircle className="h-6 w-6 text-destructive" />
|
|
Import misslyckades
|
|
</>
|
|
)}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
{isSuccess
|
|
? `${result.imported} transaktioner importerades framgångsrikt.`
|
|
: `${result.errors} fel uppstod under importen.`}
|
|
</CardDescription>
|
|
</CardHeader>
|
|
</Card>
|
|
|
|
{/* Next steps */}
|
|
{isSuccess && (
|
|
<Card className="bg-muted/50">
|
|
<CardHeader>
|
|
<CardTitle className="text-base">Nästa steg</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="flex items-start gap-3">
|
|
<div className="w-6 h-6 rounded-full bg-primary text-primary-foreground flex items-center justify-center text-sm font-medium flex-shrink-0">
|
|
1
|
|
</div>
|
|
<div>
|
|
<p className="font-medium">Granska obokförda transaktioner</p>
|
|
<p className="text-sm text-muted-foreground">
|
|
{result.imported - result.auto_categorized > 0
|
|
? `${result.imported - result.auto_categorized} transaktioner behöver bokföras manuellt.`
|
|
: 'Alla transaktioner bokfördes automatiskt.'}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-start gap-3">
|
|
<div className="w-6 h-6 rounded-full bg-primary text-primary-foreground flex items-center justify-center text-sm font-medium flex-shrink-0">
|
|
2
|
|
</div>
|
|
<div>
|
|
<p className="font-medium">Bekräfta fakturamatchningar</p>
|
|
<p className="text-sm text-muted-foreground">
|
|
{result.auto_matched_invoices > 0
|
|
? `${result.auto_matched_invoices} transaktioner matchades mot fakturor. Bekräfta dessa på transaktionssidan.`
|
|
: 'Inga automatiska fakturamatchningar hittades.'}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-start gap-3">
|
|
<div className="w-6 h-6 rounded-full bg-primary text-primary-foreground flex items-center justify-center text-sm font-medium flex-shrink-0">
|
|
3
|
|
</div>
|
|
<div>
|
|
<p className="font-medium">Importera fler kontoutdrag</p>
|
|
<p className="text-sm text-muted-foreground">
|
|
Importera löpande kontoutdrag för att hålla bokföringen uppdaterad.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
)}
|
|
|
|
{/* Actions */}
|
|
<div className="flex justify-between">
|
|
<Button variant="outline" onClick={onNewImport}>
|
|
<RotateCcw className="mr-2 h-4 w-4" />
|
|
Ny import
|
|
</Button>
|
|
<div className="flex gap-2">
|
|
{isSuccess && (
|
|
<Button asChild>
|
|
<Link href="/transactions">
|
|
Visa transaktioner
|
|
<ArrowRight className="ml-2 h-4 w-4" />
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|