f266c386f3
* chore: repo-wide bloat sweep, remove dead code and fold duplicate helpers Remove 33 dead files, ~270 unreferenced exports/types, 13 dead i18n namespaces and 4 unused dependencies; fold byte-identical helper copies into one canonical home each (lib/utils chunk/sleep/utcDateStamp, lib/dates/iso, lib/invariants/uuid, lib/xml/escape, lib/reports/sru/format, lib/pdf/number-text, lib/browser/panel-request, lib/api/v1/body + v1ValidationError rolled out to ~55 v1 routes, booking-template schemas). No behaviour change: v1 bodies and status codes, MCP tool schemas, DB writes and money math are untouched. Naive ore rounding was deliberately not swapped for roundOre; see DECISIONS.md 2026-09-02 for the full list of things left alone on purpose. tsc, lint, 19588 unit tests and check:guards green; antipattern baseline ratcheted (naive-ore-round 622 -> 620, hand-rolled-invariant 115 -> 113). Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> * test(transactions): import RawTransaction from @/types after the ingest re-export removal CI's type ratchet (check:types, full tsconfig) caught the one test file that still imported the type through lib/transactions/ingest. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> --------- Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
100 lines
3.4 KiB
TypeScript
100 lines
3.4 KiB
TypeScript
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import { NextResponse } from 'next/server'
|
|
import { generateSalaryJournal } from '@/lib/reports/salary-journal'
|
|
import {
|
|
reportToWorkbook,
|
|
textColumn,
|
|
currencyColumn,
|
|
dateColumn,
|
|
integerColumn,
|
|
xlsxFilename,
|
|
parseCellDate,
|
|
} from '@/lib/reports/xlsx-export'
|
|
import { getErrorMessage as getUserErrorMessage } from '@/lib/errors/get-error-message'
|
|
|
|
export const GET = withRouteContext('report.salary_journal.xlsx', async (request, { supabase, companyId }) => {
|
|
const { searchParams } = new URL(request.url)
|
|
const year = parseInt(searchParams.get('year') || new Date().getFullYear().toString())
|
|
const monthFrom = searchParams.get('month_from') ? parseInt(searchParams.get('month_from')!) : undefined
|
|
const monthTo = searchParams.get('month_to') ? parseInt(searchParams.get('month_to')!) : undefined
|
|
|
|
const { data: companyRow } = await supabase
|
|
.from('company_settings')
|
|
.select('company_name')
|
|
.eq('company_id', companyId)
|
|
.single()
|
|
|
|
try {
|
|
const report = await generateSalaryJournal(supabase, companyId, year, monthFrom, monthTo)
|
|
|
|
const buffer = reportToWorkbook([
|
|
{
|
|
name: 'Lönejournal',
|
|
columns: [
|
|
textColumn('Anställd'),
|
|
textColumn('Personnr (4)'),
|
|
textColumn('Anställning'),
|
|
integerColumn('År'),
|
|
integerColumn('Månad'),
|
|
dateColumn('Utbetalningsdatum'),
|
|
currencyColumn('Bruttolön'),
|
|
currencyColumn('Skatt'),
|
|
currencyColumn('Nettolön'),
|
|
currencyColumn('Arbetsgivaravgifter'),
|
|
currencyColumn('Semesterlönereservation'),
|
|
currencyColumn('Semesterskuld avgifter'),
|
|
currencyColumn('Total arbetsgivarkostnad'),
|
|
integerColumn('Sjukdagar'),
|
|
integerColumn('VAB-dagar'),
|
|
integerColumn('Föräldradagar'),
|
|
integerColumn('Semesterdagar uttagna'),
|
|
textColumn('Status'),
|
|
],
|
|
rows: report.rows,
|
|
mapRow: (r) => [
|
|
r.employeeName,
|
|
r.personnummerLast4,
|
|
r.employmentType,
|
|
r.periodYear,
|
|
r.periodMonth,
|
|
parseCellDate(r.paymentDate),
|
|
r.grossSalary,
|
|
r.taxWithheld,
|
|
r.netSalary,
|
|
r.avgifterAmount,
|
|
r.vacationAccrual,
|
|
r.vacationAccrualAvgifter,
|
|
r.totalEmployerCost,
|
|
r.sickDays,
|
|
r.vabDays,
|
|
r.parentalDays,
|
|
r.vacationDaysTaken,
|
|
r.salaryRunStatus,
|
|
],
|
|
},
|
|
])
|
|
|
|
// Use the period's last month-end as the filename anchor. For full-year
|
|
// reports this is `YYYY-12-31`; for narrowed month ranges we approximate
|
|
// with the end month's last day (good enough for filename ordering).
|
|
const endMonth = monthTo ?? 12
|
|
const periodAnchor = `${year}-${String(endMonth).padStart(2, '0')}-31`
|
|
const filename = xlsxFilename(
|
|
'lonejournal',
|
|
companyRow?.company_name ?? '',
|
|
periodAnchor,
|
|
)
|
|
return new NextResponse(new Uint8Array(buffer), {
|
|
headers: {
|
|
'Content-Type': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
'Content-Disposition': `attachment; filename="${filename}"`,
|
|
},
|
|
})
|
|
} catch (err) {
|
|
return NextResponse.json(
|
|
{ error: err instanceof Error ? getUserErrorMessage(err) : 'Kunde inte generera lönejournal' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
})
|