Files
accounted/app/api/export/articles/route.ts
T
Jakob Wennberg 2d6ddeafc5 feat(import/export): article import + register export (xlsx/csv) (#750)
* feat(import/export): article import + register export (xlsx/csv)

Add CSV/Excel import for the article register (artiklar), mirroring the
existing customer/supplier import pipeline, plus Excel + CSV export for
articles, customers and suppliers.

Import (lib/import/articles + app/api/import/articles):
- Column auto-detection tuned to Fortnox/Visma/Bokio export headers,
  Swedish-decimal price parsing, VAT snapped to {0,6,12,25}, type/unit
  normalization.
- Dedup by article number then name; 23505 soft-skip; auto-number
  backfill; revenue-account override kept only when active, otherwise
  dropped with a warning (never mutates the chart of accounts).
- New "Artiklar" flow in the /import hub.

Export (app/api/export/* + lib/export/register-export):
- Read-only xlsx (default) / csv (?format=csv, UTF-8 BOM) downloads.
- Headers chosen so files round-trip back through the importer.
- "Exportera" menu added to the articles, customers and suppliers pages.

Refs #746. Direct Fortnox/Visma API article fetch tracked in #749.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* fix(import/export): address PR review — lint ratchet + export hardening

- xlsx-export: keep `SheetSpec<any>` on the eslint-disabled line (fixes the
  core-only lint ratchet regression: no-explicit-any 16 -> 15) and define
  UTF8_BOM as an explicit `` escape instead of a raw BOM character.
- export routes (articles/customers/suppliers): move the data queries inside
  the try/catch, add `Cache-Control: no-store`, and emit a `register exported`
  audit log line (entity, format, rowCount).
- articles parse route: validate `column_overrides` against a Zod schema before
  trusting it to drive the parser.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* fix(import): drop öre-round pattern on article column-detector confidence

The confidence score is a 0-1 heuristic, not money, and is only compared
against the 0.8 skip-mapping threshold. Removing the Math.round(x*100)/100
form clears the core-only antipattern ratchet (naive-ore-round 660 -> 659).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* feat(import): flag adjusted VAT rows in the article import edit step

Surface VAT snapping/defaulting per row, not just as a file-level warning:
the parser sets `vat_rate_adjusted`, the edit step highlights those rows'
VAT selector and shows a count banner, and confirming a rate clears the flag.
Addresses the Swedish-compliance review note that silent snapping could
otherwise store a wrong VAT rate at scale.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-17 14:38:44 +02:00

95 lines
3.3 KiB
TypeScript

import { NextResponse } from 'next/server'
import { withRouteContext } from '@/lib/api/with-route-context'
import { errorResponse } from '@/lib/errors/get-structured-error'
import { fetchAllRows } from '@/lib/supabase/fetch-all'
import { textColumn, currencyColumn, integerColumn } from '@/lib/reports/xlsx-export'
import { buildRegisterExport, parseExportFormat, todayIso } from '@/lib/export/register-export'
import type { Article } from '@/types'
/**
* GET /api/export/articles[?format=csv][&include_inactive=1]
*
* Downloads the article register as xlsx (default) or csv. Read-only — viewers
* may export. Column headers match the article importer's detector keywords so
* the file round-trips (export → edit → re-import).
*/
export const GET = withRouteContext(
'article.export',
async (request, ctx) => {
const { supabase, companyId, log, requestId } = ctx
const url = new URL(request.url)
const format = parseExportFormat(url.searchParams.get('format'))
const includeInactive = url.searchParams.get('include_inactive') === '1'
try {
const { data: companyRow } = await supabase
.from('company_settings')
.select('company_name')
.eq('company_id', companyId)
.single()
const articles = (await fetchAllRows(({ from, to }) => {
let query = supabase
.from('articles')
.select('*')
.eq('company_id', companyId)
if (!includeInactive) query = query.eq('active', true)
return query.order('name', { ascending: true }).range(from, to)
})) as unknown as Article[]
const { buffer, contentType, filename } = buildRegisterExport(
[
{
name: 'Artiklar',
columns: [
textColumn('Artikelnummer'),
textColumn('Benämning'),
textColumn('Benämning (engelska)'),
textColumn('Typ'),
textColumn('Enhet'),
currencyColumn('Försäljningspris'),
integerColumn('Moms %'),
textColumn('Försäljningskonto'),
currencyColumn('Inköpspris'),
textColumn('EAN'),
textColumn('ROT/RUT'),
textColumn('Anteckning'),
],
rows: articles,
mapRow: (a) => [
a.article_number,
a.name,
a.name_en,
a.type,
a.unit,
a.price_excl_vat,
a.vat_rate,
a.revenue_account,
a.cost_price,
a.ean,
a.housework_type,
a.notes,
],
},
],
{ format, slug: 'artiklar', companyName: companyRow?.company_name ?? '', date: todayIso() },
)
// Audit trail: who exported what, when (sensitive bulk register download).
log.info('register exported', { entity: 'articles', format, rowCount: articles.length })
return new NextResponse(new Uint8Array(buffer), {
headers: {
'Content-Type': contentType,
'Content-Disposition': `attachment; filename="${filename}"`,
'Cache-Control': 'no-store',
},
})
} catch (err) {
log.error('article export failed', err as Error)
return errorResponse(err, log, { requestId })
}
},
)