Files
accounted/app/api/reports/avgifter-basis/route.ts
T
Mattsson e11f70b347 Bug/gh issues fiz (#1103)
* refactor: optimize page loading and data fetching

* fix: resolve recurring production runtime errors

* feat: add MCP company and customer updates

* fix: handle year-end tax adjustments

* feat: harden annual report compliance

* fix: expand invoice logo and font support

* fix: sanitize API route error responses

* fix: sanitize user-facing error messages

* feat: persist onboarding and tax assessment notices

* fix: reduce cloud backup audit churn

* feat: refine invoice editor layout

* fix: show saved tax adjustments in INK2

* fix: complete annual report API mappings

* docs: record operational safeguards and decisions

* fix: harden annual report review findings

* fix: adjust column span for description based on VAT registration

* New css class name
2026-07-21 23:00:15 +02:00

22 lines
899 B
TypeScript

import { NextResponse } from 'next/server'
import { withRouteContext } from '@/lib/api/with-route-context'
import { generateAvgifterBasis } from '@/lib/reports/avgifter-basis'
import { getErrorMessage } from '@/lib/errors/get-error-message'
/**
* Arbetsgivaravgiftsunderlag report.
* Monthly breakdown by avgifter rate category for AGI reconciliation.
* Per BFL: Part of räkenskapsinformation, 7-year retention.
*/
export const GET = withRouteContext('report.avgifter_basis', async (request, { supabase, companyId }) => {
const { searchParams } = new URL(request.url)
const year = parseInt(searchParams.get('year') || new Date().getFullYear().toString())
try {
const report = await generateAvgifterBasis(supabase, companyId, year)
return NextResponse.json({ data: report })
} catch (err) {
return NextResponse.json({ error: getErrorMessage(err) }, { status: 500 })
}
})