* 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
77 lines
2.7 KiB
TypeScript
77 lines
2.7 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { renderToBuffer } from '@react-pdf/renderer'
|
|
import { generateBalansrapport } from '@/lib/reports/balansrapport'
|
|
import { BalansrapportPDF } from '@/lib/reports/operational-report-pdf-template'
|
|
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import { parseReportDateRange } from '@/lib/reports/date-range'
|
|
import type { CompanySettings } from '@/types'
|
|
import { getErrorMessage as getUserErrorMessage } from '@/lib/errors/get-error-message'
|
|
|
|
export const GET = withRouteContext('report.balansrapport.pdf', async (request, { supabase, companyId }) => {
|
|
const { searchParams } = new URL(request.url)
|
|
const periodId = searchParams.get('period_id')
|
|
|
|
if (!periodId) {
|
|
return NextResponse.json({ error: 'period_id is required' }, { status: 400 })
|
|
}
|
|
|
|
const [{ data: period }, { data: companyRow }] = await Promise.all([
|
|
supabase
|
|
.from('fiscal_periods')
|
|
.select('period_start, period_end')
|
|
.eq('id', periodId)
|
|
.eq('company_id', companyId)
|
|
.single(),
|
|
supabase
|
|
.from('company_settings')
|
|
.select('*')
|
|
.eq('company_id', companyId)
|
|
.single(),
|
|
])
|
|
|
|
if (!companyRow) {
|
|
return NextResponse.json({ error: 'Företagsinställningar saknas' }, { status: 404 })
|
|
}
|
|
if (!period) {
|
|
return NextResponse.json(
|
|
{ error: 'Räkenskapsperioden kunde inte läsas. Välj en befintlig period innan du genererar PDF.' },
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
|
|
const parsedRange = parseReportDateRange(searchParams, period)
|
|
if (!parsedRange.ok) {
|
|
return NextResponse.json({ error: parsedRange.error }, { status: 400 })
|
|
}
|
|
|
|
try {
|
|
const report = await generateBalansrapport(supabase, companyId, periodId, parsedRange.range)
|
|
|
|
const pdfBuffer = await renderToBuffer(
|
|
BalansrapportPDF({
|
|
report,
|
|
company: companyRow as CompanySettings,
|
|
generatedAt: new Date().toISOString(),
|
|
})
|
|
)
|
|
|
|
// Anchor on period.start to match the convention used by every other
|
|
// report PDF route in this repo (resultatrapport, balance-sheet,
|
|
// income-statement). A balansrapport is a snapshot at period end, but
|
|
// consistent filenames let users sort and script-rename predictably.
|
|
const filename = `balansrapport-${report.period.start}--${report.period.end}.pdf`
|
|
|
|
return new Response(new Uint8Array(pdfBuffer), {
|
|
headers: {
|
|
'Content-Type': 'application/pdf',
|
|
'Content-Disposition': `attachment; filename="${filename}"`,
|
|
},
|
|
})
|
|
} catch (err) {
|
|
return NextResponse.json(
|
|
{ error: err instanceof Error ? getUserErrorMessage(err) : 'Kunde inte generera balansrapport' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
})
|