* refactor(ui): app-wide UI/UX consistency pass
Net: +1,159 / −1,373 LOC across 77 files. No new features, no behavior
changes. Locks in a uniform design system across every dashboard surface.
What changed:
- **Foundation**: sidebar width 232→256px (md:w-64), spacing scale locked
(Tailwind 1/2/3/4/6/8/10/12; 2.5/5 forbidden), card padding p-6 default
(p-4 for compact metric cards), space-y-8 between page sections.
- **Tables unified**: all 33 thead blocks now share the Resultatrapport
pattern via shadcn Table primitive (text-[11px] font-medium uppercase
tracking-wider text-muted-foreground). Hand-rolled <table> instances
converted where they were data tables; form/edit grids kept distinct.
- **Status badges unified**: every status indicator routes through
shadcn <Badge variant>. Eliminated raw Tailwind colors
(bg-amber-100, bg-emerald-500/10, bg-blue-100, bg-purple-100, etc.)
in favor of the gnubok semantic palette (success=sage, warning=ochre,
destructive=terracotta).
- **Empty states unified**: list pages migrated from hand-rolled
"flex flex-col items-center py-12" divs to the EmptyState primitive.
- **Loading skeletons unified**: hand-rolled bg-muted rounded animate-pulse
divs replaced with shadcn <Skeleton> across 15 files.
- **Touch targets**: 6 back-buttons + edit-pencil + inbox delete bumped
from 24/32/36px to shadcn's 40px icon default. Added aria-labels on
9 icon-only navigation buttons.
- **Date formatting**: formatDate() for accounting data (ISO yyyy-MM-dd,
table-friendly) vs formatDateLong() for metadata (Swedish long form).
Raw {x.invoice_date} renderings routed through formatDate() in 18 sites.
- **Toast titles**: eliminated 33 generic "Fel" titles. Each toast title
now carries the action ("Kunde inte skapa lönekörning" etc.) with
description carrying the error detail.
- **Page-level cleanups**:
- Dashboard: dropped greeting hero + Snabbåtgärder/Att hantera nav
duplicates + Visa detaljer collapsible.
- Reports: 5-col mega-menu replaced with left-rail layout
(new ReportsNav component).
- Bookkeeping: fixed layout jump between Verifikationer/Ny verifikation
tabs (moved FiscalYearSelector inside journal tab).
- Bookkeeping: added voucher sort (A1 first / latest first) alongside
existing date sort. Required matching API param sort_by.
- KPI page: FiscalYearSelector instead of raw <select>; InfoTooltip
instead of inline info-button toggle; bigger numbers.
- Salary section: enum values translated to Swedish labels, mobile
table collapses to Anställd+Netto on <md, KPI typography aligned
with dashboard.
- Invoice forms: styled RequiredMark + aria-required, tabular-nums
on amount inputs.
- **CLAUDE.md**: new "Design System Tokens" subsection documents the
locked spacing scale, primitives table, typography rules, date helpers,
and forbidden patterns so future contributors don't drift.
Tests: 2,906 passing (unchanged). Lint: unchanged from main baseline.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
* fix: address PR review feedback (Greptile + compliance bot)
- **formatDate / formatDateLong timezone fix**: switch from new Date() to
parseISO. Bare yyyy-MM-dd strings are now parsed as local midnight rather
than UTC midnight, eliminating the off-by-one display in west-of-UTC
timezones flagged by Greptile.
- **DashboardContentProps cleanup**: removed unused firstName and settings
fields from the interface, and the corresponding fetch (profiles table)
+ computation in app/(dashboard)/page.tsx. The greeting was dropped in
the dashboard cleanup; these props were dead weight.
- **Voucher sort behavior documented**: extended the comment in the journal
entries API route to explain why voucher sort intentionally uses strict
fiscal_period_id filtering (BFL 5 kap 6–7 §§ — voucher numbers are
series-scoped within a fiscal year). The row-count delta between date
sort and voucher sort is now a documented design choice.
- **delete_last_voucher migration + draft-delete test included**: the UI
already shipped the "Radera utkast" path in the previous commit; this
pulls in the backing RPC migration that allows draft deletes (with the
full safety logic — drafts skip series/period checks since they have
voucher_number=0, posted entries go through the existing unchanged
path). This was originally meant for a separate PR but the UI shipped
half the feature without it.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
* chore(migration): rename to match applied version
The function delete_last_voucher is already applied to the production DB
under version 20260509103736 (verified via pg_get_functiondef — exact
byte-for-byte match to file content). The previous file timestamp
20260509120000 would cause a fresh `supabase db push` to attempt re-applying
under a different version row. Renaming the file aligns local tracking
with what the database actually has.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
* fix: address compliance bot findings (payroll label + VAT visibility)
- sick_karens label: drop "(första sjukdagen)" qualifier. Per sjuklönelagen
6 §, karensavdrag is a single calculated amount (20% of one week's
sjuklön) deducted from the first sick day's pay — not bounded to the
first day. The qualifier could mislead users when the first sick day
and return-to-work span a weekend. Swedish-payroll bot recommendation.
- Omvänd skattskyldighet badge: variant outline → warning. The reverse-
charge indicator is compliance-critical (ML 16 kap) — missing it leads
to incorrect input VAT deduction. Outline was too subtle; warning's
ochre fill matches its semantic weight.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
332 lines
10 KiB
TypeScript
332 lines
10 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useForm, Controller } from 'react-hook-form'
|
|
import { zodResolver } from '@hookform/resolvers/zod'
|
|
import { z } from 'zod'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Label } from '@/components/ui/label'
|
|
import { Textarea } from '@/components/ui/textarea'
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
|
import { useToast } from '@/components/ui/use-toast'
|
|
import { Loader2, CheckCircle, XCircle, Lock } from 'lucide-react'
|
|
import { useCanWrite } from '@/lib/hooks/use-can-write'
|
|
import type { CreateCustomerInput, CustomerType } from '@/types'
|
|
|
|
const schema = z.object({
|
|
name: z.string().min(1, 'Namn krävs'),
|
|
customer_type: z.enum(['individual', 'swedish_business', 'eu_business', 'non_eu_business']),
|
|
email: z.string().email('Ogiltig e-postadress').optional().or(z.literal('')),
|
|
phone: z.string().optional(),
|
|
address_line1: z.string().optional(),
|
|
address_line2: z.string().optional(),
|
|
postal_code: z.string().optional(),
|
|
city: z.string().optional(),
|
|
country: z.string().optional(),
|
|
org_number: z.string().optional(),
|
|
vat_number: z.string().optional(),
|
|
default_payment_terms: z.number().min(1).optional(),
|
|
notes: z.string().optional(),
|
|
})
|
|
|
|
type FormData = z.infer<typeof schema>
|
|
|
|
interface CustomerFormProps {
|
|
onSubmit: (data: CreateCustomerInput) => Promise<void>
|
|
isLoading: boolean
|
|
initialData?: Partial<FormData>
|
|
}
|
|
|
|
export default function CustomerForm({
|
|
onSubmit,
|
|
isLoading,
|
|
initialData,
|
|
}: CustomerFormProps) {
|
|
const { canWrite } = useCanWrite()
|
|
const { toast } = useToast()
|
|
const [isValidatingVat, setIsValidatingVat] = useState(false)
|
|
const [vatValidationResult, setVatValidationResult] = useState<{
|
|
valid: boolean
|
|
name?: string
|
|
} | null>(null)
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
watch,
|
|
control,
|
|
setValue,
|
|
formState: { errors },
|
|
} = useForm<FormData>({
|
|
resolver: zodResolver(schema),
|
|
defaultValues: {
|
|
name: initialData?.name || '',
|
|
customer_type: initialData?.customer_type || 'swedish_business',
|
|
email: initialData?.email || '',
|
|
phone: initialData?.phone || '',
|
|
address_line1: initialData?.address_line1 || '',
|
|
postal_code: initialData?.postal_code || '',
|
|
city: initialData?.city || '',
|
|
country: initialData?.country || 'Sweden',
|
|
org_number: initialData?.org_number || '',
|
|
vat_number: initialData?.vat_number || '',
|
|
default_payment_terms: initialData?.default_payment_terms || 30,
|
|
notes: initialData?.notes || '',
|
|
},
|
|
})
|
|
|
|
const customerType = watch('customer_type')
|
|
const vatNumber = watch('vat_number')
|
|
|
|
const handleValidateVat = async () => {
|
|
if (!vatNumber) return
|
|
|
|
setIsValidatingVat(true)
|
|
setVatValidationResult(null)
|
|
|
|
try {
|
|
const response = await fetch('/api/vat/validate', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ vat_number: vatNumber }),
|
|
})
|
|
|
|
const result = await response.json()
|
|
|
|
setVatValidationResult({
|
|
valid: result.valid,
|
|
name: result.name,
|
|
})
|
|
|
|
if (result.valid && result.name) {
|
|
toast({
|
|
title: 'VAT-nummer verifierat',
|
|
description: `Företag: ${result.name}`,
|
|
})
|
|
} else if (!result.valid) {
|
|
toast({
|
|
title: 'Verifiering misslyckades',
|
|
description: result.error || 'VAT-numret kunde inte verifieras',
|
|
variant: 'destructive',
|
|
})
|
|
}
|
|
} catch {
|
|
toast({
|
|
title: 'Kunde inte verifiera VAT-nummer',
|
|
variant: 'destructive',
|
|
})
|
|
} finally {
|
|
setIsValidatingVat(false)
|
|
}
|
|
}
|
|
|
|
const onFormSubmit = (data: FormData) => {
|
|
onSubmit({
|
|
...data,
|
|
email: data.email || undefined,
|
|
})
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(onFormSubmit)} className="space-y-6">
|
|
{/* Customer Type */}
|
|
<div className="space-y-2">
|
|
<Label>Kundtyp *</Label>
|
|
<Controller
|
|
name="customer_type"
|
|
control={control}
|
|
render={({ field }) => (
|
|
<Select value={field.value} onValueChange={(v) => { if (v) field.onChange(v) }}>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Välj kundtyp" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="individual">Privatperson (Sverige)</SelectItem>
|
|
<SelectItem value="swedish_business">Svenskt företag eller organisation</SelectItem>
|
|
<SelectItem value="eu_business">EU-företag</SelectItem>
|
|
<SelectItem value="non_eu_business">Företag utanför EU</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
)}
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
Kundtypen påverkar hur moms hanteras på fakturor
|
|
</p>
|
|
</div>
|
|
|
|
{/* Name */}
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Namn *</Label>
|
|
<Input
|
|
id="name"
|
|
placeholder="Företagsnamn eller personnamn"
|
|
{...register('name')}
|
|
/>
|
|
{errors.name && (
|
|
<p className="text-sm text-destructive">{errors.name.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Contact */}
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">E-post</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="namn@foretag.se"
|
|
{...register('email')}
|
|
/>
|
|
{errors.email && (
|
|
<p className="text-sm text-destructive">{errors.email.message}</p>
|
|
)}
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="phone">Telefon</Label>
|
|
<Input
|
|
id="phone"
|
|
placeholder="+46 70 123 45 67"
|
|
{...register('phone')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Address */}
|
|
<div className="space-y-4">
|
|
<h3 className="font-medium">Adress</h3>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="address_line1">Gatuadress</Label>
|
|
<Input
|
|
id="address_line1"
|
|
placeholder="Storgatan 1"
|
|
{...register('address_line1')}
|
|
/>
|
|
</div>
|
|
<div className="grid grid-cols-1 sm:grid-cols-3 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="postal_code">Postnummer</Label>
|
|
<Input
|
|
id="postal_code"
|
|
placeholder="123 45"
|
|
{...register('postal_code')}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="city">Ort</Label>
|
|
<Input
|
|
id="city"
|
|
placeholder="Stockholm"
|
|
{...register('city')}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="country">Land</Label>
|
|
<Input
|
|
id="country"
|
|
placeholder="Sweden"
|
|
{...register('country')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Business info */}
|
|
{customerType !== 'individual' && (
|
|
<div className="space-y-4 pt-4 border-t">
|
|
<h3 className="font-medium">Företagsuppgifter</h3>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="org_number">Organisationsnummer</Label>
|
|
<Input
|
|
id="org_number"
|
|
placeholder="XXXXXX-XXXX"
|
|
{...register('org_number')}
|
|
/>
|
|
</div>
|
|
|
|
{(customerType === 'eu_business' || customerType === 'swedish_business') && (
|
|
<div className="space-y-2">
|
|
<Label htmlFor="vat_number">VAT-nummer (momsreg.nr)</Label>
|
|
<div className="flex gap-2">
|
|
<Input
|
|
id="vat_number"
|
|
placeholder={customerType === 'eu_business' ? 'DE123456789' : 'SE123456789001'}
|
|
{...register('vat_number')}
|
|
className="flex-1"
|
|
/>
|
|
{customerType === 'eu_business' && (
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
onClick={handleValidateVat}
|
|
disabled={!vatNumber || isValidatingVat}
|
|
>
|
|
{isValidatingVat ? (
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
) : vatValidationResult?.valid ? (
|
|
<CheckCircle className="h-4 w-4 text-success" />
|
|
) : vatValidationResult?.valid === false ? (
|
|
<XCircle className="h-4 w-4 text-destructive" />
|
|
) : (
|
|
'Verifiera'
|
|
)}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
{customerType === 'eu_business' && (
|
|
<p className="text-xs text-muted-foreground">
|
|
Verifiera VAT-numret för att kunna fakturera med omvänd skattskyldighet (0% moms)
|
|
</p>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Payment terms */}
|
|
<div className="space-y-2">
|
|
<Label htmlFor="payment_terms">Betalningsvillkor (dagar)</Label>
|
|
<Input
|
|
id="payment_terms"
|
|
type="number"
|
|
{...register('default_payment_terms', { valueAsNumber: true })}
|
|
/>
|
|
</div>
|
|
|
|
{/* Notes */}
|
|
<div className="space-y-2">
|
|
<Label htmlFor="notes">Anteckningar</Label>
|
|
<Textarea
|
|
id="notes"
|
|
placeholder="Interna anteckningar om kunden..."
|
|
{...register('notes')}
|
|
/>
|
|
</div>
|
|
|
|
{/* Submit */}
|
|
<div className="flex justify-end gap-2">
|
|
<Button
|
|
type="submit"
|
|
disabled={isLoading || !canWrite}
|
|
title={!canWrite ? 'Du har endast läsbehörighet i detta företag' : undefined}
|
|
>
|
|
{isLoading ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Sparar...
|
|
</>
|
|
) : !canWrite ? (
|
|
<>
|
|
<Lock className="mr-2 h-4 w-4" />
|
|
Spara kund
|
|
</>
|
|
) : (
|
|
'Spara kund'
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
)
|
|
}
|