a2a556d837
* fix(dashboard): exclude credit notes from unpaid invoices widget Credit notes (status='sent', negative total) were summed into the "Att få betalt" widget, producing confusing negative totals like "2 st, -38 625 kr". Filter them out via credited_invoice_id IS NULL, matching the existing pattern in reminder-processor and the AR ledger. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(documents): harden PDF preview and upload validation - JournalEntryAttachments: switch inline PDF preview from <iframe> to <object type="application/pdf">. Mirrors the AttachmentPreviewSheet fix from #572 — Chrome's frame pipeline intermittently surfaced "Det här innehållet har blockerats" on iframes even with permissive CSP. <object> invokes the PDF plugin directly. crbug.com/271452. - /api/documents/:id/inline: resolve Content-Type via file extension when mime_type is null or application/octet-stream. Legacy uploads landed with empty File.type from some drag sources; combined with the new X-Content-Type-Options: nosniff header on this route, Chrome refused to render valid PDFs. Extension fallback covers every legacy row without a DB backfill. - /api/documents POST: surface DB-trigger period-lock errors as a 400 DOC_UPLOAD_PERIOD_LOCKED with a Swedish reason. Previously every catch was bucketed into DOC_UPLOAD_STORAGE_FAILED (500 / "Filen kunde inte sparas") which hid the real cause from users attaching to verifikationer in closed/locked fiscal periods. - document-service: add validateDocumentMagicBytes() that inspects the first bytes for valid PDF/PNG/JPEG/WebP headers (PDF tolerates a leading UTF-8 BOM). Wired into uploadDocument() and createNewVersion() so every upload path is protected — UI, MCP, and future email/webhook ingestion. Defends against agents that send a base64-encoded text placeholder instead of real binary bytes via the gnubok_upload_document MCP tool, which produced tiny (15-561 byte) "PDFs" that failed to render in Chrome and in external viewers. Tests use a minimal valid PDF buffer (%PDF-1.4 … %%EOF). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(arsredovisning): emit ÅRL-required notes and FTE-weighted medelantal Five compliance gaps fixed in the K2 and K3 noter builders: - Anläggningstillgångar roll-forward per ÅRL 5:8 § — per-category IB anskaffningsvärde, tillkommande, avgående, UB and accumulated avskrivningar movement (was only emitting avskrivningstider). - Långfristiga skulder förfallande efter mer än fem år per ÅRL 5:13 §. - Ställda säkerheter and Eventualförpliktelser as separate notes per ÅRL 5:14-15 § (K2 previously combined them). - Koncernförhållanden per BFNAR 2016:10 kap. 19 / BFNAR 2012:1 kap. 8. Replaces medelantal anställda — the old query filtered employees by an is_active column that doesn't exist, so the note never emitted. Now uses an FTE-weighted day-based average per ÅRL 5:20 §. Six disclosure fields persist on arsredovisning_narratives as per-period overrides; the UI extends the existing förvaltningsberättelse editor with a "Lagstadgade upplysningar" subsection sharing the same Spara button — no new pages, no settings changes. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(invoices): respect vat_registered=false and hide personnummer for B2C - PDF address block no longer prints org_number for individual customers (GDPR data minimization; ML 17 kap 24§ requires name + address only). - Wire company_settings.vat_registered through the rule helpers, invoice creation API, preview-pdf API, and the new-invoice form so a non-VAT- registered seller cannot charge VAT (ML 1 kap. 1§). The PDF suppresses the empty "Moms 0%" row and shows a dedicated "Företaget är inte momsregistrerat" notice instead of the ML 3 kap. exempt notice. - Engine unchanged: 'exempt' treatment already routes to 3004/3100 and skips VAT lines. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(settings): remove approval rules from sidebar and routes * fix(invoices): ensure vat_registered defaults to true for invoice previews and API --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
123 lines
4.2 KiB
TypeScript
123 lines
4.2 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { ensureInitialized } from '@/lib/init'
|
|
import { uploadDocument, validateDocumentFile } from '@/lib/core/documents/document-service'
|
|
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import { errorResponse, errorResponseFromCode } from '@/lib/errors/get-structured-error'
|
|
import type { DocumentUploadSource } from '@/types'
|
|
|
|
ensureInitialized()
|
|
|
|
/**
|
|
* POST /api/documents — upload a document to the WORM archive.
|
|
*
|
|
* multipart/form-data:
|
|
* file: the document file
|
|
* upload_source (optional): 'camera' | 'file_upload' | 'email' | …
|
|
* journal_entry_id (optional)
|
|
* journal_entry_line_id (optional)
|
|
*/
|
|
export const POST = withRouteContext(
|
|
'document.upload',
|
|
async (request, ctx) => {
|
|
const { user, supabase, companyId, log, requestId } = ctx
|
|
|
|
const formData = await request.formData()
|
|
const file = formData.get('file') as File | null
|
|
|
|
if (!file) {
|
|
return errorResponseFromCode('DOC_UPLOAD_NO_FILE', log, { requestId })
|
|
}
|
|
|
|
const validationError = validateDocumentFile({ size: file.size, type: file.type })
|
|
if (validationError) {
|
|
// The validator returns a Swedish string today. Bucket the failure into
|
|
// a size or type code based on its content.
|
|
const code = /storlek|stor|MB/i.test(validationError)
|
|
? 'DOC_UPLOAD_TOO_LARGE'
|
|
: 'DOC_UPLOAD_UNSUPPORTED_TYPE'
|
|
return errorResponseFromCode(code, log, {
|
|
requestId,
|
|
details: { reason: validationError, sizeBytes: file.size, mimeType: file.type },
|
|
})
|
|
}
|
|
|
|
const opLog = log.child({ filename: file.name, sizeBytes: file.size })
|
|
|
|
try {
|
|
const uploadSource = (formData.get('upload_source') as string) || 'file_upload'
|
|
const journalEntryId = formData.get('journal_entry_id') as string | null
|
|
const journalEntryLineId = formData.get('journal_entry_line_id') as string | null
|
|
|
|
const buffer = await file.arrayBuffer()
|
|
|
|
const document = await uploadDocument(supabase, user.id, companyId!, {
|
|
name: file.name,
|
|
buffer,
|
|
type: file.type,
|
|
}, {
|
|
upload_source: uploadSource as DocumentUploadSource,
|
|
journal_entry_id: journalEntryId || undefined,
|
|
journal_entry_line_id: journalEntryLineId || undefined,
|
|
})
|
|
|
|
return NextResponse.json({ data: document })
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : 'unknown'
|
|
// DB trigger rejects inserts whose journal_entry_id points at an entry
|
|
// in a closed/locked period. Surface as 400 with the real reason.
|
|
if (/locked\/closed fiscal period|Bokföringen är låst/i.test(message)) {
|
|
return errorResponseFromCode('DOC_UPLOAD_PERIOD_LOCKED', opLog, {
|
|
requestId,
|
|
details: { reason: message },
|
|
})
|
|
}
|
|
opLog.error('document upload failed', err as Error)
|
|
return errorResponseFromCode('DOC_UPLOAD_STORAGE_FAILED', opLog, {
|
|
requestId,
|
|
details: { reason: message },
|
|
})
|
|
}
|
|
},
|
|
{ requireWrite: true },
|
|
)
|
|
|
|
/**
|
|
* GET /api/documents — list documents.
|
|
*
|
|
* Query params:
|
|
* journal_entry_id: filter by JE
|
|
* current_only: 'false' to include older versions (default true)
|
|
* limit, offset
|
|
*/
|
|
export const GET = withRouteContext(
|
|
'document.list',
|
|
async (request, ctx) => {
|
|
const { supabase, companyId, log, requestId } = ctx
|
|
|
|
const { searchParams } = new URL(request.url)
|
|
const journalEntryId = searchParams.get('journal_entry_id')
|
|
const currentOnly = searchParams.get('current_only') !== 'false'
|
|
const limit = parseInt(searchParams.get('limit') || '50')
|
|
const offset = parseInt(searchParams.get('offset') || '0')
|
|
|
|
let query = supabase
|
|
.from('document_attachments')
|
|
.select('*', { count: 'exact' })
|
|
.eq('company_id', companyId)
|
|
.order('created_at', { ascending: false })
|
|
.range(offset, offset + limit - 1)
|
|
|
|
if (journalEntryId) query = query.eq('journal_entry_id', journalEntryId)
|
|
if (currentOnly) query = query.eq('is_current_version', true)
|
|
|
|
const { data, error, count } = await query
|
|
|
|
if (error) {
|
|
log.error('document list failed', error)
|
|
return errorResponse(error, log, { requestId })
|
|
}
|
|
|
|
return NextResponse.json({ data, count })
|
|
},
|
|
)
|