db8983ba9e
* feat(arcim-migration): Briox provider with SIE-over-API import - Briox auth via account ID + application token (no app-level credentials); both tokens rotate on refresh and are persisted - New sie-fetcher pulls the general ledger as SIE through the provider API for Fortnox, Briox and Bjorn Lunden - Wizard stops on a failed SIE import and surfaces the real errors instead of proceeding to the misleading migrate-guard message - PROVIDER_SIE_ONLY_FORTNOX renamed to PROVIDER_SIE_NOT_SUPPORTED; new PROVIDER_TOKEN_INVALID for rejected provider credentials Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(bookkeeping): per-line accruals (periodisering) on invoices and supplier invoices Defer revenue/costs per invoice line to 29xx/17xx interim accounts with automatic monthly dissolution (nightly cron + catch-up at registration), schedule cancellation on credit, year-end auto-detect exclusion for already-scheduled invoices, invoice-inbox service-period extraction for prefill, and an MCP tool to list schedules. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(bokslut): iXBRL arsredovisning generation and Bolagsverket digital filing Generate the annual report as iXBRL from a generated taxonomy registry (K2 element lists, taxonomy:generate/check scripts + CI guard), expose it via the fiscal-period API, and add the bolagsverket extension for digital submission to eget utrymme with webhook-driven status tracking (submissions table + pg tests, lifecycle events, year-end wizard UI). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * test(mcp): raise origin-guard test timeout to 20s The dynamic import pulls in the full server module; the parse alone flirts with the 5s default under full-suite parallel load. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Add new scripts and documentation for K2 AB taxonomy generation and validation - Introduced `generate-taxonomy-registry.ts` to automate the generation of the iXBRL taxonomy concept registry from official element lists and tuple models. - Added `validate-ixbrl.mjs` for validating generated iXBRL reports against the official taxonomy package using Arelle. - Included new documentation files: - `k2-ab-arsredovisning-elementlista-2024-09-12_rev20250312_sv.xlsx` - `tuple-innehallsmodell-arsredovisning-k2-2024-09-12.xlsx` - `taxonomi-paket-2024-09-12_rev20250312.zip` * Add tests for bookkeeping accruals dissolution and supplier invoices - Implement tests for the POST /api/bookkeeping/accruals/[id]/dissolve route, covering success and error scenarios. - Add tests for the DELETE /api/supplier-invoices/[id] route, including authentication checks and validation of invoice deletion conditions. - Introduce tests for the Arcim migration provider client, ensuring token handling and error classification. - Create tests for the Bolagsverket extension, validating submission role enforcement and environment settings. - Add Zod schemas for Bolagsverket response payloads to ensure proper validation. - Implement tests for MCP server's list accrual schedules, confirming registration and scope mapping. - Add consistency tests for IXBRL document generation, ensuring duplicate facts and XML escaping are handled correctly. - Introduce typed domain errors for accrual schedules to improve error handling in the service. - Add tests for resolving consent with Briox token refresh concurrency, ensuring proper token management and error handling. * fix(tests): update payload size guard comments to reflect recent changes in tool descriptions and ceiling adjustments * fix(gitattributes): mark generated JSON files in bokslut taxonomy as linguist-generated * feat(migrations): add backfill for invoices.journal_entry_id and fallback for next_voucher_number user_id * feat(bokslut): enhance compliance and financial processing features with new submission details and security measures --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
73 lines
3.4 KiB
SQL
73 lines
3.4 KiB
SQL
-- Migration: backfill invoices.journal_entry_id (registration entry linkage)
|
||
--
|
||
-- The column (added in 20260613100000_self_billing_received_invoices.sql)
|
||
-- means "the verifikat that BOOKED this invoice at issuance" — the
|
||
-- invoice_created registration entry (Dr 1510 / Cr 30xx+26xx), or the
|
||
-- credit_note reversal entry on a credit-note row. Payment flows route on it:
|
||
-- set → clearing entry (Dr 1930 / Cr 1510); NULL → kontantmetoden cash entry
|
||
-- (Dr 1930 / Cr 30xx+26xx). Write-backs only shipped ~2026-06-05, so nearly
|
||
-- all historical rows are NULL even where a posted registration entry exists —
|
||
-- a company on (or switching to) kontantmetoden would double-book revenue +
|
||
-- VAT when marking those invoices paid.
|
||
--
|
||
-- Passes 1–2 touch ONLY rows that are still NULL, so the migration is
|
||
-- idempotent and safe to re-run / resume after an interruption. Rows with no
|
||
-- posted registration entry stay NULL — that is the CORRECT value for
|
||
-- kontantmetoden / unsent / proforma invoices (revenue is recognised at
|
||
-- payment instead).
|
||
|
||
-- Pass 0 — defensive repair. An earlier version of the v1 mark-paid route
|
||
-- wrote the PAYMENT/cash entry id into this column (wrong semantic: it would
|
||
-- make a kontantmetoden invoice look registered, so a later partial payment
|
||
-- clears a 1510 that was never debited). Hosted prod has no such rows, but
|
||
-- self-hosted databases that ran that code may. Null them out so Pass 1 can
|
||
-- re-link the correct registration entry where one exists.
|
||
UPDATE public.invoices i
|
||
SET journal_entry_id = NULL
|
||
FROM public.journal_entries je
|
||
WHERE je.id = i.journal_entry_id
|
||
AND je.source_type IN ('invoice_paid', 'invoice_cash_payment');
|
||
|
||
-- Pass 1 — registration entries. Earliest posted invoice_created entry per
|
||
-- invoice; status='posted' excludes reversed/cancelled/draft (a stornoed
|
||
-- registration must not mark the invoice as booked). DISTINCT ON with the
|
||
-- created_at,id ordering gives a deterministic pick if duplicates exist.
|
||
-- The company_id equality guard is defense-in-depth against cross-tenant
|
||
-- uuid collisions. idx_journal_entries_source (source_type, source_id) makes
|
||
-- the subquery cheap.
|
||
UPDATE public.invoices i
|
||
SET journal_entry_id = je.id
|
||
FROM (
|
||
SELECT DISTINCT ON (company_id, source_id) id, company_id, source_id
|
||
FROM public.journal_entries
|
||
WHERE source_type = 'invoice_created'
|
||
AND status = 'posted'
|
||
AND source_id IS NOT NULL
|
||
ORDER BY company_id, source_id, created_at ASC, id ASC
|
||
) je
|
||
WHERE i.journal_entry_id IS NULL
|
||
AND je.source_id = i.id
|
||
AND je.company_id = i.company_id;
|
||
|
||
-- Pass 2 — credit-note reversal entries onto credit-note rows
|
||
-- (source_type='credit_note', source_id = the credit note's own invoice row
|
||
-- id; matches the live write sites: v1 credit route, app/api/invoices POST).
|
||
-- Payment routing never reads these (mark-paid rejects credit notes) — this
|
||
-- pass exists for the dashboard verifikat link and linkage completeness.
|
||
UPDATE public.invoices i
|
||
SET journal_entry_id = je.id
|
||
FROM (
|
||
SELECT DISTINCT ON (company_id, source_id) id, company_id, source_id
|
||
FROM public.journal_entries
|
||
WHERE source_type = 'credit_note'
|
||
AND status = 'posted'
|
||
AND source_id IS NOT NULL
|
||
ORDER BY company_id, source_id, created_at ASC, id ASC
|
||
) je
|
||
WHERE i.journal_entry_id IS NULL
|
||
AND i.credited_invoice_id IS NOT NULL
|
||
AND je.source_id = i.id
|
||
AND je.company_id = i.company_id;
|
||
|
||
NOTIFY pgrst, 'reload schema';
|