Files
accounted/scripts/seed-demo-account.ts
T
Mattsson f24b26a139 fix: similar-sweep currency remediation, security hardening and v1 API fixes (#1215)
* fix(security): gate replace_sie_import behind owner/admin membership

The RPC was SECURITY DEFINER with EXECUTE granted to PUBLIC and anon, no
company_members lookup, no auth.uid() reference and no unauthorized raise,
while setting gnubok.allow_delete to disarm the BFL immutability and
retention triggers. Any caller holding a company_id and an import id could
hard delete another tenant's verifikationer. Confirmed live in production.

Applies the same fail closed owner/admin guard that undo_sie_import already
carries (migration 20260624120000), resolving the actor from
COALESCE(p_user_id, auth.uid()) so it denies when the role is NULL, then
revokes EXECUTE from PUBLIC and anon. search_path and the raised
statement_timeout are restated, since CREATE OR REPLACE drops settings that
are not repeated.

userId is a required parameter on replaceSIEImport: the service client has a
NULL auth.uid(), so a caller without an explicit actor now fails to compile
rather than hitting the closed gate at runtime.

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

* fix(security): validate arcim OAuth callback state server side

The callback route is skipAuth and decoded the state parameter as plain
base64url JSON, trusting consentId and provider from it. A one time code was
minted at flow start and never read. An unauthenticated attacker who learned
a consent id could run an OAuth flow on their own provider account and post
the callback with a forged state, landing their tokens on another tenant's
consent, so the victim's next migration imported the attacker's ledger.

State is now an opaque randomBytes(32) pointer to a provider_otc row,
consumed by a single atomic UPDATE guarded on used_at IS NULL and
expires_at, so a replay loses the row lock race and updates nothing.
provider is read from provider_consents rather than trusted from the client.
provider_otc already existed for exactly this purpose and was never wired up.

Also scopes getConsent to an owning company, closing a cross tenant status
oracle where the preview and migrate paths echoed a consent's status before
the scoped check ran.

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

* fix(security): scope documents storage to company_id (phase A)

The documents bucket policies matched on auth.uid(), and upload keys were
documents/{userId}/..., so company membership was never consulted. Removing a
member revoked nothing: their session still authenticated and they kept
direct Storage read access to every receipt, supplier invoice and bank
statement they had uploaded. The same bug was fixed for sie-files in
20260416120000; this bucket was left behind.

Phase A is additive. Company scoped policies are added alongside the
uploader scoped ones, uploads move to documents/{companyId}/{userId}/..., and
reads accept either layout so nothing breaks mid migration. Phase C, which
drops the old policies, is gated on the backfill reporting zero remaining
legacy prefix objects.

The policy compares the company segment as text rather than casting to uuid
the way sie-files does: this bucket holds keys whose second segment is not a
uuid (MCP audit packages), and Postgres does not guarantee the bucket prefix
qual runs before the cast, so a planner reordering would raise 22P02 and fail
the whole query instead of filtering the row out.

deleteDocument now removes both candidate keys. Removing only the stored
pointer would leave a readable orphan copy of a document the user asked to
erase.

The backfill script is included but has never been run. It defaults to dry
run, refuses .env.local by name, and verifies each copy is readable and
SHA-256 identical before repointing the row.

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

* fix(security): enforce events:read scope and membership on /api/events

This was the only one of the three validateApiKey call sites with no
downstream guard: v1 and the MCP server both check scope and re-verify
company membership, this route did neither. An events:read scope existed and
was documented as gating the endpoint but was never called, so a legacy key
falling back to DEFAULT_SCOPES read the full log. The bound company id went
straight from the api_keys row into a service role query, so a key whose user
had been removed from the company kept reading.

Adds the scope check before any database access, re-verifies company_members
with archived_at IS NULL, honours test mode by stamping X-Gnubok-Mode instead
of ignoring it, applies minimisePayload so the pull surface can never return
a wider payload than the push surface, and replaces the three flat error
strings with the canonical envelope.

Test key reads are served rather than blocked: TEST_KEY_WRITE_BLOCKED is
gated on mutations in with-api-v1, so a read gets the same treatment as every
other v1 read endpoint.

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

* perf(bookkeeping): sweep remaining journal_entries!inner embeds

A previous refactor removed this pattern from lib/reports and introduced
fetchEntryLines, but the class was never swept. Seventeen sites remained and
had become the top application consumer of production database time:
measured across the resulting query shapes, 32,694 calls and 25,848 seconds
of execution, mean 790ms, with shapes averaging 2.6s and 3.0s and maxing at
7,962ms against the 8s statement_timeout, which surfaced to users as 500s on
the booking path.

PostgREST compiles an embed with filters on the embedded side into a
correlated INNER JOIN LATERAL with a parameterized LIMIT, which stops
Postgres reordering the join, so each query walked the whole
journal_entry_lines table across all tenants. Driving from the entries side
instead turns that into two indexed round trips.

Converted sites keep their existing shape: the helper reattaches the parent
entry under the same key the embed produced. Several conversions also remove
a latent silent truncation where an unpaginated query was capped at
PostgREST's 1000 row ceiling.

Two deliberate exceptions. The free text ilike legs of the MCP display query
stay on the embed, because each is capped at legLimit and that cap drives the
truncation contract the tool reports, while the helper is unbounded. The
accounts route moves to the existing get_account_usage_counts RPC instead,
since its embed was a head count and the helper returns rows.

commitEntry's write path is untouched: the change there is confined to the
read query of the pre-commit dimension rule check.

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

* fix(api): anchor v1 list cursors on created_at

Page two returned page one, forever, while still advertising a fresh
next_cursor. The three routes sorted by and encoded a Postgres date column,
which serializes as YYYY-MM-DD, but decodeDefaultCursor validates the cursor
timestamp as full ISO-8601 and returned null, so the keyset filter was never
applied and has_more never went false. An integrator syncing verifikat looped
on the newest rows indefinitely.

The transactions route already solved this and its comment names the trap;
the fix was never ported. All three now order and encode on created_at with
an id tie break, matching the transactions keyset predicate exactly.
ISO_TIMESTAMP is deliberately left alone: relaxing it would silently change
sort semantics on the route that currently works.

Default ordering therefore moves from business date to insert order. Every
business date is still on the row, and the invoices list gains date_from and
date_to filters so a date range is still reachable; the other two already had
them.

The tests use an in-memory PostgREST that actually evaluates the filters,
because the repo's pass-through mock cannot catch this class of bug: the bug
is that the filter is never sent. They walk to exhaustion with a hard
iteration cap, so an unterminated walk fails instead of hanging.

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

* fix(api): separate dry run from commit in the idempotency hash

The request hash was built from url.pathname, which excludes the query
string, so a dry run and its commit hashed identically. Following the flow
documented in dry-run.ts, re-issuing the request with the same
Idempotency-Key returned the cached preview with Idempotent-Replayed set and
wrote nothing, while reporting 200. An agent or integrator saw success for a
write that never happened.

dry_run is folded into the hash only when true, not as an unconditional
boolean. Including it as false would change the hash of every ordinary write,
and with a 24h idempotency TTL any key in flight across the deploy would fail
the request_hash comparison and 409 on a legitimate retry. Both hash call
sites now go through one shared helper so they cannot drift into a permanent
cache miss, and dry run responses are no longer stored at all.

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

* ci: install the Bedrock SDK out of tree in the compliance review

The Swedish accounting compliance gate had failed ten consecutive runs and so
was posting nothing. With --no-package-lock npm discarded the lockfile and
re-resolved the whole tree from package.json, floating @hookform/resolvers to
5.4.3, whose valibot ^1 peer conflicts with the pinned valibot 0.39.0.

Installing into the parent of the checkout resolves only that one package, so
an unrelated peer conflict can never take the gate down again. Node still
finds it because ESM bare specifiers walk up parent node_modules; NODE_PATH
would not have worked, as it is CommonJS only. --legacy-peer-deps was
rejected because it masks future genuine peer conflicts and still reifies the
full tree.

The same step's SDK version is aligned from 0.31.0 back to the 0.29.1 that
package.json and check:guards enforce after the streaming outage. That drift
went unnoticed because the pin guard only inspects package.json and the
lockfile, never workflow files.

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

* build(docker): generate crontabs from vercel.json

vercel.json defines 16 cron jobs; both Docker crontabs carried 9, and were
byte identical to each other. Self hosted deployments therefore never sent
recurring invoices, never dispatched webhooks and never cleaned up
idempotency keys. tax-deadlines also ran once a year on 2 January instead of
daily, and documents/verify weekly instead of daily.

Extension crons are included rather than excluded. The Dockerfile copies the
whole tree before building, so every extension cron route is compiled into
the image regardless of the enabled preset, and each returns 200 when its
extension is unconfigured, so curl -sf logs no failure. Two such entries were
already present in the crontab for extensions absent from the preset, which
settles the intent.

documents/verify is treated as drift rather than a self hosted concession:
the weekly cadence was present in the hosted crontab too, and the run is
capped at 200 documents walking a nulls-first queue, so weekly drains the
integrity queue seven times slower on a check that exists for BFL retention.

webhooks/dispatch keeps its per minute cadence, adding 1,440 requests a day
on self hosted. A gentler tick would silently stretch the first retry, since
the retry ladder opens at 60 seconds. SCHEDULE_OVERRIDES is the one line
place to change that.

A parity test asserts the path sets match minus a documented exclusion list,
and ratchets three cron routes that are currently scheduled nowhere so they
are named rather than silently rotting.

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

* chore(observability): add a provider agnostic error sink

There is no error tracking in this codebase: logs go to console and Vercel
retention and nowhere else, nothing alerts on the 16 cron jobs, and seven
code comments across lib, app, components and extensions asserted that Sentry
captures errors when Sentry is not a dependency. The two most recent bug
fixes on this repo were both discovered by customer email.

This adds the sink, not a vendor. No dependency is taken: the interface has a
no-op default and a registration point, so behaviour is unchanged until an
adapter is registered. Releases are tagged from the build id already inlined
by next.config.ts.

Redaction moved out of lib/logger.ts into a leaf module that both the logger
and the sink import, so there is one denylist and no path from application
data to a third party can skip the personnummer regex, including direct sink
calls that bypass the logger. That matters here because these logs carry
personnummer and financial data.

verifyCronSecret now reports its own 401s, which covers all 16 jobs without
touching a route file and catches the case where CRON_SECRET is rotated
without updating the scheduler and every job silently 401s forever. The
threshold is one failure rather than the backup alert's three: suppressing
the first occurrence is precisely how an outage stays invisible.

The seven misleading comments are corrected to describe what the code
actually does, including the two cases that still are not covered: the client
side one, since the sink is server side, and a warn level call that is not
forwarded.

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

* fix: remediate the 2026-07-26 similar-sweep findings across all surfaces

Resolves the ~150-finding sweep (dev_docs/similar-sweep-2026-07-26.md) with
one agent per finding; every behavioural fix carries a regression test proven
to fail at HEAD. Full status, corrections to the sweep, refusals and open
decisions in dev_docs/similar-sweep-2026-07-26-remediation-status.md.

Structural roots closed:
- resolveSekAmountOrNull(): honest SEK resolution refuses instead of booking
  1:1; four duplicated toSek closures now refuse via INVOICE_FX_RATE_MISSING
- ledger-line-amount.ts: journal_entry_lines.currency labels the document,
  not the amount; SQL pre-filter decoy proven and fixed
- sparse-patch.ts: .partial() does not strip .default() in Zod 4.4.3; the
  exploitable salary payslip-line PATCH and KPI preferences sinks fixed
- tests/schema: migration-replay phantom-column guard (13k+ refs, closed
  CHECK sets, onConflict targets); found 28 real defects, all fixed, all
  four baselines now empty
- three new ratchet guards: sek-labelled-amount, cross-extension-import,
  ungated-extension-route

Highlights: lawful VAT-rate set on all seven invoice surfaces (ML 6 kap),
RC input VAT mismatch wired on web + both MCP callers, missing-underlag
resource delegates to the shared RPC predicate, push-notifications consent
polarity fail-closed, deadlines undo honours requested state, silent-failure
and read-side-fabrication classes fixed across settings/KPI/inbox/Stripe/
Arcim/kassaflodesanalys, error-envelope stringification fixed at 10+ sites
with isSwedishUserMessage extended.

Also includes the parallel session's MCP invoice tools (update_invoice,
recurring schedules, invoice deliveries) which share files with the sweep
work and are verified green together.

13 new migrations are NOT applied anywhere; they apply via branch merge.
20260726120000 backfills 1247 supplier-invoice rows. pg tests for new
DDL are written but unrun (no local Postgres).

Verified: 11088 tests / 881 files green, tsc 0 non-test errors, lint 0
errors, check:guards passing, MCP payload 57475/57500.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(migrations): rename replace_sie_import migration off main's 20260726090000 version

origin/main shipped 20260726090000_agent_quota_rpc_caller_guard.sql; keeping
our replace_sie_import migration on the same version would abort the Supabase
apply with a schema_migrations_pkey duplicate at merge time.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(review): remediate pre-publish deep-review findings across all slices

A 13-agent review of the full branch diff surfaced 1 critical, 5 high and
~45 further findings; this commit resolves them in one pass:

- replace_sie_import / undo_sie_import: p_user_id honored only for
  service_role callers; any other caller is pinned to auth.uid()
  (impersonation gate bypass), authz raise errcode 42501 mapped to a
  Swedish 403 in the route, new caller-guard migration for undo
- bulk_book_transactions refuses homogeneous non-SEK batches instead of
  writing foreign magnitudes into SEK ledger columns
- credit-note cap trigger: company-match on credited_invoice_id, no
  cross-tenant figures in exception text
- link_voucher RPCs resolve NULL invoice currency as SEK end to end
- personal-number ciphertext CHECK split into NOT VALID + VALIDATE
- same-currency foreign settlements clear 1510 at booking rate and book
  realized diff to 3960/7960; rate-less foreign write paths refuse
- receivables revaluation covers partially_paid and outstanding amounts
- period lock guard paginates candidates past the PostgREST 1000 cap
- documents: service-client storage removals after authz, dual-layout
  reads in integrity cron and archive export, backfill delete-source
  sweep actually deletes with hash verification and shared-key grouping
- invoice matching normalizes NULL/lowercase currencies (regression),
  duplicate candidates stop claiming amount matches they never ran
- match-invoice aborts on any booking failure (no paid-without-verifikat)
- refresh-exchange-rate reverts on concurrent booking (TOCTOU window)
- KPI preferences upsert arbiter aligned to the company-scoped constraint
- personnummer_last4 stripped from all salary responses incl. MCP tools
- worked-hours batch restores destroyed rows on conflict and error paths
- MCP: shared duplicate-claim builder (no more 'null kr'), short-circuit
  on tag_journal_lines overflow, auto_send schedules stage as high risk
- observability sink redacts emails/IBANs/API keys and keeps redacted
  stacks in prod; assorted small guards (safe-return-to /@, dry_run=True,
  cursor helper off-by-one, OAuth state TTL 10 min, arcim saveMappings
  call removed)

Full dispositions, deferred items and hand-verified accounting numbers
are documented in the PR body and DECISIONS.md.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(personnummer): implement masking and encryption for personal numbers with tests

* fix(review): address CI and compliance-bot findings for PR #1215

pg-real: the CI image's auth shim reads the legacy request.jwt.claim.role
GUC, so both service-role simulations (runAsServiceRole and the
invoice-delivery test's local helper) never satisfied auth.role() =
'service_role' and every legitimate p_user_id path failed closed; the
shared helper now sets both GUC shapes plus SET LOCAL ROLE with a
fail-loud sanity check, and the delivery test reuses it. The link-voucher
migration had recreated both RPCs from pre-rewrite file text,
reintroducing the NULL-unsafe membership pattern the
null-safe-tenant-guards ratchet bans; both guards now use
public.caller_is_company_member() with all currency changes preserved.

Compliance bots: the customers export now emits the standard masked form
instead of raw AES-256-GCM ciphertext in the Org-/personnummer column,
and maskCustomerRow returns a non-round-trippable placeholder on decrypt
failure instead of 500ing the list. MCP parity: gnubok_lock_period's
staging pre-check now runs the exact countUnbookedInPeriod the commit
path enforces (exported from period-service; local mirror deleted), and
gnubok_agi_status resolves AGI state run-scoped so a correction run no
longer renders as already filed.

Declined with evidence: PR-Agent's opening-balances null-zeroing concern
(all mergeable columns are NOT NULL with defaults per 20260713101000).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(review): address codex review findings on PR #1215

- restore 20260726140000 to its preview-recorded content and restate the
  NULL-safe tenant guard under 20260727130000: a recorded migration version
  never re-runs, so the in-place edit could not reach the preview branch
- replace toFixed() with sv-SE two-decimal formatting in the ROT/RUT cap
  warning texts and update the pinned test expectations
- drop the em dash in the fiscal-periods route comment
- strip trailing whitespace in import-existing.test.ts

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* test(reports): raise timeout on real PDF render tests

renderToBuffer does real @react-pdf layout work and exceeds the 5s
default when the full suite saturates the CPU; tests pass in isolation.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-07-27 03:34:56 +02:00

2351 lines
73 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Seed a complete gnubok demo environment for an existing auth user.
*
* Creates two companies (Konsult AB driftbolag, Konsult Holding AB),
* a fully posted FY2025 (~+487k result, ~290 verifications, 2 voucher gaps),
* an active FY2026 (32 customer invoices in mixed states, 4 May unsent,
* Stripe payouts, supplier invoices, salary runs, an AWS inbox PDF, and
* 5 uncategorized bank transactions for demo flows).
*
* Usage:
* npx tsx scripts/seed-demo-account.ts <email> [--force]
*
* --force wipes existing Konsult AB / Konsult Holding AB owned by the
* target user before re-seeding. Without --force the script bails if
* either company already exists for that user.
*
* External systems (Gmail / Calendar / Drive / Slack) are out of scope:
* a checklist is printed at the end for manual setup.
*
* Requires SUPABASE_SERVICE_ROLE_KEY in .env.local.
*/
import { createClient } from '@supabase/supabase-js'
import { config as dotenv } from 'dotenv'
import { createHash } from 'node:crypto'
import { resolve } from 'node:path'
import { encryptPersonnummer } from '@/lib/salary/personnummer'
dotenv({ path: resolve(process.cwd(), '.env.local') })
const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL
const SERVICE_KEY = process.env.SUPABASE_SERVICE_ROLE_KEY
if (!SUPABASE_URL || !SERVICE_KEY) {
console.error('Missing NEXT_PUBLIC_SUPABASE_URL or SUPABASE_SERVICE_ROLE_KEY in .env.local')
process.exit(1)
}
const sb = createClient(SUPABASE_URL, SERVICE_KEY, {
auth: { persistSession: false },
})
const args = process.argv.slice(2)
const emailArg = args.find((a) => !a.startsWith('--'))
if (!emailArg) {
console.error('Usage: npx tsx scripts/seed-demo-account.ts <email> [--force]')
console.error('Refusing to run without an explicit target email: the script')
console.error('seeds demo data and `--force` wipes existing Konsult AB / Konsult')
console.error('Holding AB owned by the target user before re-seeding.')
process.exit(1)
}
const email: string = emailArg
const force = args.includes('--force')
const pad = (n: number) => String(n).padStart(2, '0')
const dt = (y: number, m: number, d: number) => `${y}-${pad(m)}-${pad(d)}`
const round2 = (n: number) => Math.round(n * 100) / 100
type AccountMap = Record<string, string>
interface CompanyCtx {
companyId: string
userId: string
fpY: Record<number, string>
accounts: AccountMap
voucher: Record<number, number>
}
async function findUser(email: string): Promise<string> {
let page = 1
for (;;) {
const { data, error } = await sb.auth.admin.listUsers({ page, perPage: 200 })
if (error) throw new Error(`auth.admin.listUsers: ${error.message}`)
const u = data.users.find((x) => x.email === email)
if (u) return u.id
if (data.users.length < 200) break
page++
}
throw new Error(`User ${email} not found in auth.users`)
}
// Verifikationsnummer skip-list: introduces deliberate gaps that require
// explanations under BFNAR 2013:2, used for the voucher-gap demo.
const VOUCHER_GAPS: Record<number, Set<number>> = {
2025: new Set([123, 287]),
}
async function wipeExisting(userId: string): Promise<void> {
const { data: existing, error } = await sb
.from('companies')
.select('id, name')
.eq('created_by', userId)
.in('name', ['Konsult AB', 'Konsult Holding AB'])
if (error) throw error
if (!existing || existing.length === 0) return
console.log(` wiping ${existing.length} existing demo companies`)
for (const c of existing) {
await sb.from('voucher_sequences').delete().eq('company_id', c.id)
await sb.from('transactions').delete().eq('company_id', c.id)
await sb.from('invoice_payments').delete().eq('company_id', c.id)
await sb.from('invoice_items').delete().in(
'invoice_id',
((await sb.from('invoices').select('id').eq('company_id', c.id)).data ?? []).map((r) => r.id)
)
await sb.from('supplier_invoice_items').delete().in(
'supplier_invoice_id',
(
(await sb.from('supplier_invoices').select('id').eq('company_id', c.id)).data ?? []
).map((r) => r.id)
)
await sb.from('invoices').delete().eq('company_id', c.id)
await sb.from('supplier_invoices').delete().eq('company_id', c.id)
await sb.from('invoice_inbox_items').delete().eq('company_id', c.id)
await sb.from('document_attachments').delete().eq('company_id', c.id)
await sb.from('customers').delete().eq('company_id', c.id)
await sb.from('suppliers').delete().eq('company_id', c.id)
await sb.from('employees').delete().eq('company_id', c.id)
await sb.from('journal_entry_lines').delete().in(
'journal_entry_id',
(
(await sb.from('journal_entries').select('id').eq('company_id', c.id)).data ?? []
).map((r) => r.id)
)
await sb.from('journal_entries').delete().eq('company_id', c.id)
// No cached-balance table to clean: `account_balances` was dropped in
// 20240101000027_drop_unused_module_tables.sql and nothing replaced it.
// Saldon are derived from journal_entry_lines plus getOpeningBalances()
// on every read, so deleting the entries above is the whole cleanup.
await sb.from('chart_of_accounts').delete().eq('company_id', c.id)
await sb.from('fiscal_periods').delete().eq('company_id', c.id)
await sb.from('company_settings').delete().eq('company_id', c.id)
await sb.from('company_members').delete().eq('company_id', c.id)
await sb.from('companies').delete().eq('id', c.id)
}
}
async function createCompany(
userId: string,
name: string,
orgNumber: string,
entityType: 'aktiebolag' | 'enskild_firma'
): Promise<string> {
const { data: c, error } = await sb
.from('companies')
.insert({
name,
org_number: orgNumber,
entity_type: entityType,
created_by: userId,
})
.select('id')
.single()
if (error) throw new Error(`createCompany ${name}: ${error.message}`)
await sb.from('company_members').insert({
company_id: c.id,
user_id: userId,
role: 'owner',
source: 'direct',
})
return c.id
}
async function setupCompany(
userId: string,
companyId: string,
settings: Record<string, unknown>,
fiscalYears: number[]
): Promise<{ fpY: Record<number, string>; accounts: AccountMap }> {
// The error is checked: an unknown key here makes PostgREST reject the whole
// insert, and swallowing that leaves the demo company with no settings row at
// all (which is how five phantom columns survived in this payload).
const { error: settingsErr } = await sb.from('company_settings').insert({
user_id: userId,
company_id: companyId,
accounting_method: 'accrual',
onboarding_complete: true,
onboarding_step: 6,
is_sandbox: false,
pays_salaries: true,
default_voucher_series: 'A',
...settings,
})
if (settingsErr) throw new Error(`company_settings: ${settingsErr.message}`)
const { error: coaErr } = await sb.rpc('seed_chart_of_accounts', {
p_company_id: companyId,
p_entity_type: 'aktiebolag',
})
if (coaErr) throw new Error(`seed_chart_of_accounts: ${coaErr.message}`)
// The default AB seed is missing several accounts we use during the demo.
// Fill them in here so journal entry lines have a valid account_id to link
// to and reports look correct.
const extraAccounts: Array<{
n: string
name: string
cls: number
grp: string
type: 'asset' | 'liability' | 'equity' | 'revenue' | 'expense'
nb: 'debit' | 'credit'
}> = [
{ n: '1230', name: 'Inventarier och verktyg', cls: 1, grp: '12', type: 'asset', nb: 'debit' },
{ n: '1310', name: 'Andelar i koncernforetag', cls: 1, grp: '13', type: 'asset', nb: 'debit' },
{ n: '2614', name: 'Utgaende moms omvand skattskyldighet 25%', cls: 2, grp: '26', type: 'liability', nb: 'credit' },
{ n: '2645', name: 'Beraknad ingaende moms', cls: 2, grp: '26', type: 'liability', nb: 'debit' },
{ n: '3305', name: 'Forsaljning tjanster export', cls: 3, grp: '33', type: 'revenue', nb: 'credit' },
{ n: '3308', name: 'Forsaljning tjanster EU omvand', cls: 3, grp: '33', type: 'revenue', nb: 'credit' },
{ n: '7410', name: 'Pensionsforsakringspremier', cls: 7, grp: '74', type: 'expense', nb: 'debit' },
]
await sb.from('chart_of_accounts').insert(
extraAccounts.map((a) => ({
user_id: userId,
company_id: companyId,
account_number: a.n,
account_name: a.name,
account_class: a.cls,
account_group: a.grp,
account_type: a.type,
normal_balance: a.nb,
plan_type: 'k1',
is_system_account: false,
}))
)
const fpY: Record<number, string> = {}
let prev: string | null = null
for (const y of fiscalYears) {
const { data: fp, error } = (await sb
.from('fiscal_periods')
.insert({
user_id: userId,
company_id: companyId,
name: `Räkenskapsår ${y}`,
period_start: dt(y, 1, 1),
period_end: dt(y, 12, 31),
is_closed: false,
opening_balances_set: y === fiscalYears[0],
previous_period_id: prev,
})
.select('id')
.single()) as { data: { id: string } | null; error: { message: string } | null }
if (error || !fp) throw new Error(`fiscal_periods ${y}: ${error?.message ?? 'no data'}`)
fpY[y] = fp.id
prev = fp.id
}
const { data: accs, error: aErr } = await sb
.from('chart_of_accounts')
.select('id, account_number')
.eq('company_id', companyId)
if (aErr) throw aErr
const accounts: AccountMap = Object.fromEntries((accs ?? []).map((a) => [a.account_number, a.id]))
return { fpY, accounts }
}
interface JELine {
account: string
debit?: number
credit?: number
description?: string
currency?: string
amount_in_currency?: number
exchange_rate?: number
}
async function postEntry(
ctx: CompanyCtx,
fy: number,
date: string,
description: string,
sourceType: string,
lines: JELine[],
opts: { sourceId?: string | null; series?: string } = {}
): Promise<string> {
const series = opts.series ?? 'A'
const totalDebit = round2(lines.reduce((s, l) => s + (l.debit ?? 0), 0))
const totalCredit = round2(lines.reduce((s, l) => s + (l.credit ?? 0), 0))
if (Math.abs(totalDebit - totalCredit) > 0.01) {
throw new Error(
`Unbalanced entry "${description}" on ${date}: debit ${totalDebit} vs credit ${totalCredit}`
)
}
const fpId = ctx.fpY[fy]
if (!fpId) throw new Error(`No fiscal period for ${fy}`)
let next = (ctx.voucher[fy] ?? 0) + 1
const gaps = VOUCHER_GAPS[fy]
while (gaps && gaps.has(next)) next++
ctx.voucher[fy] = next
const { data: je, error } = await sb
.from('journal_entries')
.insert({
user_id: ctx.userId,
company_id: ctx.companyId,
fiscal_period_id: fpId,
voucher_number: next,
voucher_series: series,
entry_date: date,
description,
source_type: sourceType,
source_id: opts.sourceId ?? null,
status: 'posted',
committed_at: new Date(date).toISOString(),
created_via: 'system',
})
.select('id')
.single()
if (error) throw new Error(`postEntry "${description}": ${error.message}`)
const { error: lineErr } = await sb.from('journal_entry_lines').insert(
lines.map((l, i) => ({
journal_entry_id: je.id,
account_number: l.account,
account_id: ctx.accounts[l.account] ?? null,
debit_amount: round2(l.debit ?? 0),
credit_amount: round2(l.credit ?? 0),
currency: l.currency ?? null,
amount_in_currency: l.amount_in_currency ?? null,
exchange_rate: l.exchange_rate ?? null,
line_description: l.description ?? null,
sort_order: i,
}))
)
if (lineErr) throw new Error(`lines for "${description}": ${lineErr.message}`)
await sb
.from('voucher_sequences')
.upsert(
{
user_id: ctx.userId,
company_id: ctx.companyId,
fiscal_period_id: fpId,
voucher_series: series,
last_number: next,
},
{ onConflict: 'company_id,fiscal_period_id,voucher_series' }
)
return je.id
}
function skipVoucher(ctx: CompanyCtx, fy: number, n: number): void {
if ((ctx.voucher[fy] ?? 0) < n) {
ctx.voucher[fy] = n
}
}
async function closeYearForSeed(ctx: CompanyCtx, fy: number): Promise<void> {
const fpId = ctx.fpY[fy]
if (!fpId) throw new Error(`No fiscal period for ${fy}`)
const { data: rows, error } = await sb
.from('journal_entry_lines')
.select(
'account_number, debit_amount, credit_amount, journal_entries!inner(fiscal_period_id, company_id, status)'
)
.eq('journal_entries.company_id', ctx.companyId)
.eq('journal_entries.fiscal_period_id', fpId)
.eq('journal_entries.status', 'posted')
if (error) throw new Error(`closeYearForSeed query: ${error.message}`)
const nets = new Map<string, number>()
for (const r of rows ?? []) {
const acc = r.account_number as string
const cls = parseInt(acc[0])
if (cls < 3 || cls > 8) continue
const net = (Number(r.debit_amount) || 0) - (Number(r.credit_amount) || 0)
nets.set(acc, round2((nets.get(acc) ?? 0) + net))
}
const lines: JELine[] = []
let totalDebit = 0
let totalCredit = 0
for (const [acc, net] of nets) {
if (Math.abs(net) < 0.005) continue
if (net > 0) {
lines.push({ account: acc, credit: net, description: `Stängning ${acc}` })
totalCredit = round2(totalCredit + net)
} else {
lines.push({ account: acc, debit: -net, description: `Stängning ${acc}` })
totalDebit = round2(totalDebit + -net)
}
}
if (lines.length === 0) return
const balancing = round2(totalDebit - totalCredit)
if (balancing > 0) {
lines.push({ account: '2099', credit: balancing, description: 'Årets resultat' })
} else if (balancing < 0) {
lines.push({ account: '2099', debit: -balancing, description: 'Årets förlust' })
}
await postEntry(ctx, fy, dt(fy, 12, 31), `Årsbokslut ${fy}`, 'year_end', lines)
}
async function postOpeningBalanceFromPriorYear(
ctx: CompanyCtx,
priorFy: number,
nextFy: number
): Promise<void> {
const priorFpId = ctx.fpY[priorFy]
const nextFpId = ctx.fpY[nextFy]
if (!priorFpId || !nextFpId) throw new Error(`Missing fiscal period`)
const { data: rows, error } = await sb
.from('journal_entry_lines')
.select(
'account_number, debit_amount, credit_amount, journal_entries!inner(fiscal_period_id, company_id, status)'
)
.eq('journal_entries.company_id', ctx.companyId)
.eq('journal_entries.fiscal_period_id', priorFpId)
.eq('journal_entries.status', 'posted')
if (error) throw new Error(`postOpeningBalanceFromPriorYear: ${error.message}`)
const nets = new Map<string, number>()
for (const r of rows ?? []) {
const acc = r.account_number as string
const cls = parseInt(acc[0])
if (cls < 1 || cls > 2) continue
const net = (Number(r.debit_amount) || 0) - (Number(r.credit_amount) || 0)
nets.set(acc, round2((nets.get(acc) ?? 0) + net))
}
const lines: JELine[] = []
for (const [acc, net] of nets) {
if (Math.abs(net) < 0.005) continue
if (net > 0) {
lines.push({ account: acc, debit: net, description: `Ingående balans: ${acc}` })
} else {
lines.push({ account: acc, credit: -net, description: `Ingående balans: ${acc}` })
}
}
if (lines.length === 0) return
const obEntryId = await postEntry(
ctx,
nextFy,
dt(nextFy, 1, 1),
`Ingående balans ${nextFy}`,
'opening_balance',
lines
)
const { error: updErr } = await sb
.from('fiscal_periods')
.update({
opening_balance_entry_id: obEntryId,
opening_balances_set: true,
})
.eq('id', nextFpId)
.eq('company_id', ctx.companyId)
if (updErr) throw new Error(`set opening_balance_entry_id: ${updErr.message}`)
}
async function seedKonsultAB(userId: string): Promise<CompanyCtx> {
console.log('[2] Creating Konsult AB')
const companyId = await createCompany(userId, 'Konsult AB', '5591234567', 'aktiebolag')
const { fpY, accounts } = await setupCompany(
userId,
companyId,
{
entity_type: 'aktiebolag',
company_name: 'Konsult AB',
org_number: '559123-4567',
vat_number: 'SE559123456701',
vat_registered: true,
f_skatt: true,
moms_period: 'quarterly',
fiscal_year_start_month: 1,
address_line1: 'Vasagatan 16',
postal_code: '111 20',
city: 'Stockholm',
country: 'SE',
email: 'info@konsult.se',
bank_name: 'SEB',
clearing_number: '5295',
account_number: '1234567',
bankgiro: '5295-1234',
invoice_prefix: 'F',
next_invoice_number: 1,
invoice_default_days: 30,
preliminary_tax_monthly: 18000,
},
[2025, 2026]
)
return { companyId, userId, fpY, accounts, voucher: {} }
}
async function seedHoldingAB(userId: string): Promise<CompanyCtx> {
console.log('[2] Creating Konsult Holding AB')
const companyId = await createCompany(
userId,
'Konsult Holding AB',
'5592345678',
'aktiebolag'
)
const { fpY, accounts } = await setupCompany(
userId,
companyId,
{
entity_type: 'aktiebolag',
company_name: 'Konsult Holding AB',
org_number: '559234-5678',
vat_number: 'SE559234567801',
vat_registered: true,
f_skatt: true,
moms_period: 'yearly',
fiscal_year_start_month: 1,
address_line1: 'Vasagatan 16',
postal_code: '111 20',
city: 'Stockholm',
country: 'SE',
email: 'info@konsultholding.se',
bank_name: 'Handelsbanken',
clearing_number: '6789',
account_number: '1234567',
invoice_prefix: 'H',
next_invoice_number: 1,
invoice_default_days: 30,
// The holding runs no payroll: no employees and no salary entries are
// seeded for it. `pays_salaries` is the real column for that; it defaults
// to true in setupCompany() for the driftbolag.
pays_salaries: false,
},
[2026]
)
return { companyId, userId, fpY, accounts, voucher: {} }
}
interface CustomerSeed {
name: string
customer_type: 'swedish_business' | 'eu_business' | 'non_eu_business' | 'individual'
org_number?: string
vat_number?: string
vat_number_validated?: boolean
email: string
country: string
address_line1?: string
postal_code?: string
city?: string
default_payment_terms?: number
is_international?: boolean
}
async function seedCustomers(ctx: CompanyCtx, seeds: CustomerSeed[]): Promise<Record<string, string>> {
const rows = seeds.map((s) => ({
user_id: ctx.userId,
company_id: ctx.companyId,
default_payment_terms: 30,
...s,
}))
const { data, error } = await sb.from('customers').insert(rows).select('id, name')
if (error) throw new Error(`customers: ${error.message}`)
return Object.fromEntries((data ?? []).map((c) => [c.name, c.id]))
}
interface SupplierSeed {
name: string
supplier_type: 'swedish_business' | 'eu_business' | 'non_eu_business' | 'individual'
country: string
default_currency: string
vat_number?: string
default_expense_account?: string
category?: string
}
async function seedSuppliers(ctx: CompanyCtx, seeds: SupplierSeed[]): Promise<Record<string, string>> {
const rows = seeds.map((s) => ({
user_id: ctx.userId,
company_id: ctx.companyId,
is_active: true,
default_payment_terms: 30,
...s,
}))
const { data, error } = await sb.from('suppliers').insert(rows).select('id, name')
if (error) throw new Error(`suppliers: ${error.message}`)
return Object.fromEntries((data ?? []).map((s) => [s.name, s.id]))
}
async function seedEmployees(ctx: CompanyCtx): Promise<Record<string, string>> {
const seeds = [
{
first_name: 'Anna',
last_name: 'Andersson',
personnummer: '198506151234',
personnummer_last4: '1234',
employment_type: 'employee',
employment_start: '2025-01-01',
employment_degree: 100,
salary_type: 'monthly',
monthly_salary: 65000,
tax_table_number: 31,
tax_column: 1,
tax_municipality: 'Stockholm',
is_sidoinkomst: false,
vacation_rule: 'sammaloneregeln',
vacation_days_per_year: 25,
vacation_days_saved: 0,
semestertillagg_rate: 0.0043,
vaxa_stod_eligible: false,
is_active: true,
email: 'anna@konsult.se',
},
{
first_name: 'Erik',
last_name: 'Ek',
personnummer: '199203105678',
personnummer_last4: '5678',
employment_type: 'employee',
employment_start: '2026-01-01',
employment_degree: 100,
salary_type: 'monthly',
monthly_salary: 52000,
tax_table_number: 31,
tax_column: 1,
tax_municipality: 'Stockholm',
is_sidoinkomst: false,
vacation_rule: 'sammaloneregeln',
vacation_days_per_year: 25,
vacation_days_saved: 0,
semestertillagg_rate: 0.0043,
vaxa_stod_eligible: false,
is_active: true,
email: 'erik@konsult.se',
},
{
first_name: 'Johan',
last_name: 'Lind',
personnummer: '198801019012',
personnummer_last4: '9012',
employment_type: 'company_owner',
employment_start: '2026-01-01',
employment_degree: 100,
salary_type: 'monthly',
monthly_salary: 70000,
tax_table_number: 31,
tax_column: 1,
tax_municipality: 'Stockholm',
is_sidoinkomst: false,
vacation_rule: 'sammaloneregeln',
vacation_days_per_year: 25,
vacation_days_saved: 0,
semestertillagg_rate: 0.0043,
vaxa_stod_eligible: false,
is_active: true,
email: 'johan@konsult.se',
},
]
// personnummer is stored encrypted at rest (aes-256-gcm); the read paths
// decrypt it. Seeding the raw value would 500 the roster / salary flows with
// ERR_CRYPTO_INVALID_AUTH_TAG. Encrypt here, keep personnummer_last4 plain.
const rows = seeds.map((s) => ({
user_id: ctx.userId,
company_id: ctx.companyId,
...s,
personnummer: encryptPersonnummer(s.personnummer),
}))
const { data, error } = await sb.from('employees').insert(rows).select('id, first_name')
if (error) throw new Error(`employees: ${error.message}`)
return Object.fromEntries((data ?? []).map((e) => [e.first_name, e.id]))
}
interface InvoiceSeed {
number: string
customerId: string
customerName: string
date: string
dueDate: string
status: 'draft' | 'sent' | 'overdue' | 'paid' | 'partially_paid'
vatTreatment: 'standard_25' | 'reverse_charge' | 'export'
vatRate: number
subtotal: number
description: string
hours?: number
unitPrice?: number
paidAmount?: number
paidAt?: string
currency?: string
}
async function createInvoice(ctx: CompanyCtx, fy: number, inv: InvoiceSeed): Promise<string> {
const vatAmount = round2(inv.subtotal * (inv.vatRate / 100))
const total = round2(inv.subtotal + vatAmount)
const paidAmount = inv.paidAmount ?? (inv.status === 'paid' ? total : 0)
const remaining = round2(total - paidAmount)
const momsRuta =
inv.vatTreatment === 'standard_25'
? '10'
: inv.vatTreatment === 'reverse_charge'
? '39'
: inv.vatTreatment === 'export'
? '36'
: null
const reverseChargeText =
inv.vatTreatment === 'reverse_charge'
? 'Reverse charge: buyer is liable for VAT (Article 196 EU VAT Directive)'
: null
const { data, error } = await sb
.from('invoices')
.insert({
user_id: ctx.userId,
company_id: ctx.companyId,
customer_id: inv.customerId,
invoice_number: inv.number,
invoice_date: inv.date,
due_date: inv.dueDate,
status: inv.status,
currency: inv.currency ?? 'SEK',
subtotal: inv.subtotal,
vat_amount: vatAmount,
total,
vat_treatment: inv.vatTreatment,
vat_rate: inv.vatRate,
moms_ruta: momsRuta,
reverse_charge_text: reverseChargeText,
document_type: 'invoice',
paid_at: inv.paidAt ?? null,
paid_amount: paidAmount,
remaining_amount: remaining,
})
.select('id')
.single()
if (error) throw new Error(`invoice ${inv.number}: ${error.message}`)
await sb.from('invoice_items').insert({
invoice_id: data.id,
description: inv.description,
quantity: inv.hours ?? 1,
unit: inv.hours ? 'tim' : 'st',
unit_price: inv.unitPrice ?? inv.subtotal,
line_total: inv.subtotal,
vat_rate: inv.vatRate,
vat_amount: vatAmount,
sort_order: 0,
})
// Booking entry: Invoice creation (DR 1510 / CR 30xx + 26xx)
const revenueAccount =
inv.vatTreatment === 'reverse_charge'
? '3308'
: inv.vatTreatment === 'export'
? '3305'
: '3001'
const lines: JELine[] = [
{ account: '1510', debit: total, description: `Kundfordran ${inv.customerName}` },
{ account: revenueAccount, credit: inv.subtotal, description: 'Försäljning' },
]
if (vatAmount > 0) {
lines.push({
account: inv.vatRate === 25 ? '2610' : inv.vatRate === 12 ? '2611' : '2612',
credit: vatAmount,
description: `Utgående moms ${inv.vatRate}%`,
})
}
await postEntry(
ctx,
fy,
inv.date,
`Faktura ${inv.number}: ${inv.customerName}`,
'invoice_created',
lines,
{ sourceId: data.id }
)
// Payment if paid or partial
if ((inv.status === 'paid' || inv.status === 'partially_paid') && paidAmount > 0 && inv.paidAt) {
const payJeId = await postEntry(
ctx,
fy,
inv.paidAt,
`Betalning faktura ${inv.number}`,
'invoice_paid',
[
{ account: '1930', debit: paidAmount },
{ account: '1510', credit: paidAmount, description: `Reglering ${inv.customerName}` },
],
{ sourceId: data.id }
)
await sb.from('invoice_payments').insert({
user_id: ctx.userId,
company_id: ctx.companyId,
invoice_id: data.id,
payment_date: inv.paidAt,
amount: paidAmount,
currency: 'SEK',
journal_entry_id: payJeId,
})
// Bank transaction
await sb.from('transactions').insert({
user_id: ctx.userId,
company_id: ctx.companyId,
date: inv.paidAt,
description: `Inbetalning ${inv.customerName} ${inv.number}`,
amount: paidAmount,
currency: 'SEK',
amount_sek: paidAmount,
category: 'income_services',
is_business: true,
invoice_id: data.id,
journal_entry_id: payJeId,
merchant_name: inv.customerName,
import_source: 'demo_seed',
})
}
return data.id
}
interface SupplierInvoiceSeed {
supplierId: string
supplierName: string
number: string
date: string
dueDate: string
receivedDate: string
subtotal: number
vatRate: number
account: string
description: string
paid: boolean
paidAt?: string
currency?: string
exchangeRate?: number
reverseCharge?: boolean
vatTreatment?: 'standard_25' | 'standard_12' | 'standard_6' | 'reverse_charge' | 'import_outside_eu'
}
async function createSupplierInvoice(
ctx: CompanyCtx,
fy: number,
inv: SupplierInvoiceSeed,
arrivalNumber: number
): Promise<string> {
const treatment = inv.vatTreatment ?? 'standard_25'
const reverse = inv.reverseCharge ?? treatment === 'reverse_charge'
const xr = inv.exchangeRate ?? 1
const vatAmount = reverse ? 0 : round2(inv.subtotal * (inv.vatRate / 100))
const total = round2(inv.subtotal + vatAmount)
const subtotalSek = round2(inv.subtotal * xr)
const vatSek = round2(vatAmount * xr)
const totalSek = round2(total * xr)
const paidAmount = inv.paid ? total : 0
const remaining = round2(total - paidAmount)
const { data, error } = await sb
.from('supplier_invoices')
.insert({
user_id: ctx.userId,
company_id: ctx.companyId,
supplier_id: inv.supplierId,
arrival_number: arrivalNumber,
supplier_invoice_number: inv.number,
invoice_date: inv.date,
due_date: inv.dueDate,
received_date: inv.receivedDate,
status: inv.paid ? 'paid' : 'approved',
currency: inv.currency ?? 'SEK',
exchange_rate: inv.currency && inv.currency !== 'SEK' ? xr : null,
subtotal: inv.subtotal,
subtotal_sek: subtotalSek,
vat_amount: vatAmount,
vat_amount_sek: vatSek,
total,
total_sek: totalSek,
vat_treatment: treatment,
reverse_charge: reverse,
paid_amount: paidAmount,
remaining_amount: remaining,
is_credit_note: false,
paid_at: inv.paidAt ?? null,
})
.select('id')
.single()
if (error) throw new Error(`supplier_invoice ${inv.number}: ${error.message}`)
await sb.from('supplier_invoice_items').insert({
supplier_invoice_id: data.id,
sort_order: 0,
description: inv.description,
quantity: 1,
unit: 'st',
unit_price: inv.subtotal,
line_total: inv.subtotal,
account_number: inv.account,
vat_rate: inv.vatRate,
vat_amount: vatAmount,
})
// Registration entry: DR expense + DR input VAT (or DR calc input VAT for reverse) / CR 2440
const regLines: JELine[] = []
regLines.push({
account: inv.account,
debit: subtotalSek,
description: inv.description,
})
if (reverse && treatment === 'reverse_charge') {
// Booked input + output VAT for EU services (rate * subtotal)
const calcVat = round2(subtotalSek * (inv.vatRate / 100))
regLines.push({ account: '2645', debit: calcVat, description: 'Beräknad ingående moms (omv.)' })
regLines.push({ account: '2614', credit: calcVat, description: 'Utgående moms omv.' })
} else if (vatAmount > 0) {
regLines.push({ account: '2641', debit: vatSek, description: 'Ingående moms' })
}
regLines.push({
account: '2440',
credit: totalSek,
description: `Lev.skuld ${inv.supplierName}`,
})
const regJe = await postEntry(
ctx,
fy,
inv.date,
`Lev.faktura ${inv.number}: ${inv.supplierName}`,
'supplier_invoice_registered',
regLines,
{ sourceId: data.id }
)
await sb
.from('supplier_invoices')
.update({ registration_journal_entry_id: regJe })
.eq('id', data.id)
if (inv.paid && inv.paidAt) {
const payJe = await postEntry(
ctx,
fy,
inv.paidAt,
`Betalning lev.faktura ${inv.number}`,
'supplier_invoice_paid',
[
{ account: '2440', debit: totalSek, description: `Reglering ${inv.supplierName}` },
{ account: '1930', credit: totalSek },
],
{ sourceId: data.id }
)
await sb
.from('supplier_invoices')
.update({ payment_journal_entry_id: payJe })
.eq('id', data.id)
await sb.from('transactions').insert({
user_id: ctx.userId,
company_id: ctx.companyId,
date: inv.paidAt,
description: `Betalning ${inv.supplierName} ${inv.number}`,
amount: -totalSek,
currency: 'SEK',
amount_sek: -totalSek,
category: 'expense_other',
is_business: true,
supplier_invoice_id: data.id,
journal_entry_id: payJe,
merchant_name: inv.supplierName,
import_source: 'demo_seed',
})
}
return data.id
}
// ─── FY2025 SEED ───────────────────────────────────────────────────────────
async function seedFY2025(
ctx: CompanyCtx,
customers: Record<string, string>,
suppliers: Record<string, string>
): Promise<void> {
console.log('[4] FY2025: opening balances + invoices + expenses + salary')
// Opening balance for 2025 (start small, 50k bank, no AR)
await postEntry(
ctx,
2025,
dt(2025, 1, 1),
'Ingående balans 2025',
'opening_balance',
[
{ account: '1930', debit: 50000, description: 'Bank IB' },
{ account: '2081', credit: 50000, description: 'Aktiekapital' },
]
)
// Customer invoices: 78 invoices spread Jan-Dec 2025, all paid same week,
// mixing Klient AB / Berlin GmbH / Nordic Tech / Liten Studio.
const klient = customers['Klient AB']
const berlin = customers['Berlin GmbH']
const nordic = customers['Nordic Tech AS']
const liten = customers['Liten Studio HB']
let invSeq = 1
const seedInv = async (
customerId: string,
customerName: string,
date: string,
paidAt: string,
subtotal: number,
vatTreatment: InvoiceSeed['vatTreatment'],
description: string
) => {
const vatRate = vatTreatment === 'standard_25' ? 25 : 0
const number = `F-2025${pad(invSeq++)}${pad(invSeq)}`
await createInvoice(ctx, 2025, {
number: `F-2025${String(invSeq).padStart(3, '0')}`,
customerId,
customerName,
date,
dueDate: dt(
2025,
new Date(date).getMonth() + 2 > 12 ? 12 : new Date(date).getMonth() + 2,
Math.min(new Date(date).getDate(), 28)
),
status: 'paid',
vatTreatment,
vatRate,
subtotal,
description,
paidAmount: round2(subtotal * (1 + vatRate / 100)),
paidAt,
})
}
// 48 weekly Klient AB invoices: ~28k each = ~1.34M
for (let week = 0; week < 48; week++) {
const day = new Date('2025-01-06')
day.setDate(day.getDate() + week * 7)
const due = new Date(day)
due.setDate(due.getDate() + 30)
const paid = new Date(day)
paid.setDate(paid.getDate() + 14)
const subtotal = 28800 // 24h × 1200
invSeq++
await createInvoice(ctx, 2025, {
number: `F-2025${String(invSeq).padStart(4, '0')}`,
customerId: klient,
customerName: 'Klient AB',
date: day.toISOString().slice(0, 10),
dueDate: due.toISOString().slice(0, 10),
status: 'paid',
vatTreatment: 'standard_25',
vatRate: 25,
subtotal,
description: `Konsulttjänster vecka ${week + 2}, 2025: 24h`,
hours: 24,
unitPrice: 1200,
paidAmount: round2(subtotal * 1.25),
paidAt: paid.toISOString().slice(0, 10),
})
}
// 12 monthly Berlin GmbH workshops EU reverse charge: 25k × 12 = 300k
for (let m = 1; m <= 12; m++) {
const day = dt(2025, m, 15)
const dueD = new Date(day)
dueD.setDate(dueD.getDate() + 30)
const paid = new Date(day)
paid.setDate(paid.getDate() + 20)
invSeq++
await createInvoice(ctx, 2025, {
number: `F-2025${String(invSeq).padStart(4, '0')}`,
customerId: berlin,
customerName: 'Berlin GmbH',
date: day,
dueDate: dueD.toISOString().slice(0, 10),
status: 'paid',
vatTreatment: 'reverse_charge',
vatRate: 0,
subtotal: 25000,
description: `Workshop fee: month ${m}/2025`,
paidAmount: 25000,
paidAt: paid.toISOString().slice(0, 10),
})
}
// 12 monthly Nordic Tech AS export: 13k × 12 = 156k
for (let m = 1; m <= 12; m++) {
const day = dt(2025, m, 20)
const dueD = new Date(day)
dueD.setDate(dueD.getDate() + 30)
const paid = new Date(day)
paid.setDate(paid.getDate() + 25)
invSeq++
await createInvoice(ctx, 2025, {
number: `F-2025${String(invSeq).padStart(4, '0')}`,
customerId: nordic,
customerName: 'Nordic Tech AS',
date: day,
dueDate: dueD.toISOString().slice(0, 10),
status: 'paid',
vatTreatment: 'export',
vatRate: 0,
subtotal: 13000,
description: `Konsulttjänst export: månad ${m}/2025`,
paidAmount: 13000,
paidAt: paid.toISOString().slice(0, 10),
})
}
// 6 Liten Studio invoices spread across year: avg 8k each = 48k
for (let i = 0; i < 6; i++) {
const month = (i * 2 + 2) <= 12 ? i * 2 + 2 : 12
const day = dt(2025, month, 10)
const dueD = new Date(day)
dueD.setDate(dueD.getDate() + 30)
const paid = new Date(day)
paid.setDate(paid.getDate() + 18)
invSeq++
await createInvoice(ctx, 2025, {
number: `F-2025${String(invSeq).padStart(4, '0')}`,
customerId: liten,
customerName: 'Liten Studio HB',
date: day,
dueDate: dueD.toISOString().slice(0, 10),
status: 'paid',
vatTreatment: 'standard_25',
vatRate: 25,
subtotal: 8000,
description: `Konsulttjänst: ${i + 1}/6, 2025`,
hours: 8,
unitPrice: 1000,
paidAmount: 10000,
paidAt: paid.toISOString().slice(0, 10),
})
}
// Total invoices: 48 + 12 + 12 + 6 = 78 ✓ (~1.84M revenue)
// Monthly salary entries for Anna (full year 2025): 12 × (gross 65000 →
// tax ~14300, net 50700, social fees 20423). Use simplified BAS:
// DR 7210 65000 / CR 2710 14300, CR 1930 50700 (one entry per month)
// DR 7510 20423 / CR 2731 20423
for (let m = 1; m <= 12; m++) {
const payDate = dt(2025, m, 25)
const taxDate = dt(2025, m === 12 ? 12 : m + 1, 12)
await postEntry(
ctx,
2025,
payDate,
`Lön Anna Andersson ${m}/2025`,
'salary_payment',
[
{ account: '7010', debit: 65000, description: 'Bruttolön' },
{ account: '2710', credit: 14300, description: 'Innehållen skatt' },
{ account: '1930', credit: 50700, description: 'Nettolön Anna' },
]
)
await postEntry(
ctx,
2025,
payDate,
`Sociala avgifter Anna ${m}/2025`,
'salary_payment',
[
{ account: '7510', debit: 20423, description: 'Sociala avgifter 31.42%' },
{ account: '2731', credit: 20423, description: 'Skuld sociala avgifter' },
]
)
// Skatte- och avgiftsbetalning
await postEntry(
ctx,
2025,
taxDate,
`Inbetalning skatt + sociala ${m}/2025`,
'manual',
[
{ account: '2710', debit: 14300 },
{ account: '2731', debit: 20423 },
{ account: '1930', credit: 34723, description: 'Skattekonto' },
]
)
}
// 9 months WeWork rent (Apr-Dec)
let arrival25 = 1
for (let m = 4; m <= 12; m++) {
const date = dt(2025, m, 1)
await createSupplierInvoice(
ctx,
2025,
{
supplierId: suppliers['WeWork Stockholm AB'],
supplierName: 'WeWork Stockholm AB',
number: `WW-2025-${pad(m)}`,
date,
dueDate: dt(2025, m === 12 ? 12 : m + 1, 1),
receivedDate: date,
subtotal: 8500,
vatRate: 25,
account: '5010',
description: `Hyra coworking ${m}/2025`,
paid: true,
paidAt: dt(2025, m === 12 ? 12 : m + 1, 5),
},
arrival25++
)
}
// Monthly SaaS bundle (Notion + Linear): booked as own entry per month
for (let m = 1; m <= 12; m++) {
const date = dt(2025, m, 5)
await postEntry(
ctx,
2025,
date,
`SaaS-prenumerationer ${m}/2025`,
'manual',
[
{ account: '5420', debit: 4200, description: 'Programvaror' },
{ account: '2645', debit: 1050, description: 'Beräknad ing.moms 25% (omv.)' },
{ account: '2614', credit: 1050, description: 'Utg.moms omv.' },
{ account: '1930', credit: 4200 },
]
)
}
// Monthly travel (resor): varying amounts ~50k/yr total
const travelMonthly = [3500, 4200, 5100, 3800, 4500, 4900, 2800, 5300, 4600, 4100, 4800, 5200]
for (let m = 1; m <= 12; m++) {
const date = dt(2025, m, 28)
const gross = travelMonthly[m - 1]
const vat = round2(gross * 0.06 / 1.06)
const net = round2(gross - vat)
await postEntry(
ctx,
2025,
date,
`Resekostnader ${m}/2025`,
'manual',
[
{ account: '5800', debit: net, description: 'Reseutlägg netto' },
{ account: '2641', debit: vat, description: 'Ing.moms 6%' },
{ account: '1930', credit: gross },
]
)
}
// Monthly office supplies ~30k/yr
const officeMonthly = [2100, 2500, 1800, 3200, 2400, 2700, 1900, 2300, 2800, 2200, 2600, 3500]
for (let m = 1; m <= 12; m++) {
const date = dt(2025, m, 18)
const gross = officeMonthly[m - 1]
const vat = round2(gross * 0.25 / 1.25)
const net = round2(gross - vat)
await postEntry(
ctx,
2025,
date,
`Kontorsmaterial ${m}/2025`,
'manual',
[
{ account: '6110', debit: net, description: 'Kontorsmaterial netto' },
{ account: '2641', debit: vat, description: 'Ing.moms 25%' },
{ account: '1930', credit: gross },
]
)
}
// Monthly representation (50% deductible: booked as 6071 "ej avdragsgill" for simplicity)
for (let m = 1; m <= 12; m++) {
const date = dt(2025, m, 22)
const gross = 1800 + (m % 3) * 400
const vat = round2(gross * 0.12 / 1.12)
const net = round2(gross - vat)
await postEntry(
ctx,
2025,
date,
`Representation ${m}/2025`,
'manual',
[
{ account: '6071', debit: net, description: 'Repr. extern, ej avdragsgill' },
{ account: '2641', debit: vat, description: 'Ing.moms 12% (avdragsgill del)' },
{ account: '1930', credit: gross },
]
)
}
// Monthly pension premium for Anna (TGL + ITP-liknande, ~2k/mån)
for (let m = 1; m <= 12; m++) {
const date = dt(2025, m, 27)
await postEntry(
ctx,
2025,
date,
`Pensionspremie Anna ${m}/2025`,
'manual',
[
{ account: '7410', debit: 2000, description: 'Tjänstepension' },
{ account: '1930', credit: 2000 },
]
)
}
// 4 quarterly OpenAI invoices (USD, import outside EU)
for (let q = 1; q <= 4; q++) {
const m = q * 3
await createSupplierInvoice(
ctx,
2025,
{
supplierId: suppliers['OpenAI LLC'],
supplierName: 'OpenAI LLC',
number: `OAI-2025-Q${q}`,
date: dt(2025, m, 5),
dueDate: dt(2025, m, 25),
receivedDate: dt(2025, m, 5),
subtotal: 320,
vatRate: 0,
account: '5420',
description: `OpenAI API usage Q${q}/2025`,
paid: true,
paidAt: dt(2025, m, 7),
currency: 'USD',
exchangeRate: 10.5,
reverseCharge: false,
vatTreatment: 'import_outside_eu',
},
arrival25++
)
}
// 4 quarterly Vercel invoices (USD)
for (let q = 1; q <= 4; q++) {
const m = q * 3
await createSupplierInvoice(
ctx,
2025,
{
supplierId: suppliers['Vercel Inc'],
supplierName: 'Vercel Inc',
number: `VER-2025-Q${q}`,
date: dt(2025, m, 1),
dueDate: dt(2025, m, 28),
receivedDate: dt(2025, m, 1),
subtotal: 120,
vatRate: 0,
account: '5420',
description: `Vercel Pro Q${q}/2025`,
paid: true,
paidAt: dt(2025, m, 3),
currency: 'USD',
exchangeRate: 10.5,
reverseCharge: false,
vatTreatment: 'import_outside_eu',
},
arrival25++
)
}
// 4 quarterly bank service fees
for (let q = 1; q <= 4; q++) {
const date = dt(2025, q * 3, 30)
await postEntry(
ctx,
2025,
date,
`Bankavgifter Q${q}/2025`,
'manual',
[
{ account: '6570', debit: 1500, description: 'Bankavgifter' },
{ account: '1930', credit: 1500 },
]
)
}
// VAT settlement summary at year-end (balance-sheet only: no P&L impact)
await postEntry(
ctx,
2025,
dt(2025, 12, 31),
'Avräkning moms 2025 (sammandrag)',
'manual',
[
{ account: '2610', debit: 350000, description: 'Avr.utg.moms 25%' },
{ account: '2641', credit: 8830, description: 'Avr.ing.moms' },
{ account: '2650', credit: 341170, description: 'Skuld moms att betala' },
]
)
}
// ─── FY2026 SEED ───────────────────────────────────────────────────────────
async function seedFY2026Konsult(
ctx: CompanyCtx,
customers: Record<string, string>,
suppliers: Record<string, string>
): Promise<void> {
console.log('[5] FY2026: close FY2025, derive opening balance, then activity')
// Close FY2025 P&L → 2099 and derive FY2026 IB from FY2025 class 1-2 balances.
// Without this, FY2025's net profit silently drops out of FY2026's IB
// (compute_prior_opening_balances filters to class 1-2) and balansräkningen
// shows "Balanserar ej".
await closeYearForSeed(ctx, 2025)
await postOpeningBalanceFromPriorYear(ctx, 2025, 2026)
const klient = customers['Klient AB']
const berlin = customers['Berlin GmbH']
const nordic = customers['Nordic Tech AS']
const helsinki = customers['Helsinki Oy']
const liten = customers['Liten Studio HB']
let invSeq = 1
const num = () => `F-2026${String(invSeq++).padStart(4, '0')}`
// 18 weekly Klient AB Jan-Apr 2026 (16 weeks * but 18 invoices means biweekly-ish)
// Distribute 18 weekly across 16 weeks Jan 6 to Apr 27
const klientDates: { date: string; week: number }[] = []
const kd = new Date('2026-01-06')
for (let i = 0; i < 18; i++) {
klientDates.push({ date: kd.toISOString().slice(0, 10), week: i + 2 })
kd.setDate(kd.getDate() + 7)
}
// States: 18 paid+matched, 6 partial, 4 overdue 30+, 2 overdue 60+, 2 sent
// Total = 32. We'll allocate from the 18 Klient + 8 Berlin + 4 Nordic + 2 Helsinki:
// - 18 Klient: distribute states (some paid, some partial, some overdue, some sent)
// - 8 Berlin: mostly paid
// - 4 Nordic: mostly paid
// - 2 Helsinki: paid
// Per prompt 4 overdue >30 = 2× Klient AB, 1× Liten Studio, 1× Berlin
// 2 overdue >60 = (let's make) 2× Klient AB
type Slot = { state: 'paid' | 'partial' | 'overdue30' | 'overdue60' | 'sent' }
const klientSlots: Slot[] = [
...Array(10).fill({ state: 'paid' }),
...Array(2).fill({ state: 'overdue60' }),
...Array(2).fill({ state: 'overdue30' }),
...Array(3).fill({ state: 'partial' }),
...Array(1).fill({ state: 'sent' }),
] as Slot[]
for (let i = 0; i < klientDates.length; i++) {
const s = klientSlots[i] ?? ({ state: 'paid' } as Slot)
const date = klientDates[i].date
const dueD = new Date(date)
dueD.setDate(dueD.getDate() + 30)
const subtotal = 28800
const total = subtotal * 1.25
const status =
s.state === 'paid'
? 'paid'
: s.state === 'partial'
? 'partially_paid'
: s.state === 'sent'
? 'sent'
: 'overdue'
const paidAmount =
s.state === 'paid' ? total : s.state === 'partial' ? round2(total * 0.5) : 0
const paidAt =
s.state === 'paid'
? dt(2026, new Date(date).getMonth() + 1, Math.min(28, new Date(date).getDate() + 14))
: s.state === 'partial'
? dt(2026, new Date(date).getMonth() + 1, Math.min(28, new Date(date).getDate() + 20))
: undefined
await createInvoice(ctx, 2026, {
number: num(),
customerId: klient,
customerName: 'Klient AB',
date,
dueDate: dueD.toISOString().slice(0, 10),
status,
vatTreatment: 'standard_25',
vatRate: 25,
subtotal,
description: `Konsulttjänster vecka ${klientDates[i].week}, 2026: 24h`,
hours: 24,
unitPrice: 1200,
paidAmount,
paidAt,
})
}
// 8 Berlin GmbH fixed-fee workshops Jan-Apr; 1 overdue 30, rest paid
const berlinAmounts = [42000, 35000, 48000, 28000, 55000, 32000, 38000, 41000]
for (let i = 0; i < 8; i++) {
const month = Math.min(4, Math.floor(i / 2) + 1)
const date = dt(2026, month, 5 + (i % 2) * 14)
const dueD = new Date(date)
dueD.setDate(dueD.getDate() + 30)
const isOverdue = i === 7 // last one overdue
const paidAt = isOverdue
? undefined
: dt(2026, month, Math.min(28, 5 + (i % 2) * 14 + 18))
await createInvoice(ctx, 2026, {
number: num(),
customerId: berlin,
customerName: 'Berlin GmbH',
date,
dueDate: dueD.toISOString().slice(0, 10),
status: isOverdue ? 'overdue' : 'paid',
vatTreatment: 'reverse_charge',
vatRate: 0,
subtotal: berlinAmounts[i],
description: `Workshop ${i + 1}/2026: Berlin GmbH`,
paidAmount: isOverdue ? 0 : berlinAmounts[i],
paidAt,
})
}
// 4 Nordic Tech AS export, all paid
for (let i = 0; i < 4; i++) {
const month = i + 1
const date = dt(2026, month, 22)
const dueD = new Date(date)
dueD.setDate(dueD.getDate() + 30)
const paidAt = dt(2026, month + 1 > 12 ? 12 : month + 1, 10)
await createInvoice(ctx, 2026, {
number: num(),
customerId: nordic,
customerName: 'Nordic Tech AS',
date,
dueDate: dueD.toISOString().slice(0, 10),
status: 'paid',
vatTreatment: 'export',
vatRate: 0,
subtotal: 14000,
description: `Konsulttjänst export: månad ${month}/2026`,
paidAmount: 14000,
paidAt,
})
}
// 2 Helsinki Oy, 1 paid, 1 sent (not overdue per prompt distribution)
for (let i = 0; i < 2; i++) {
const month = i === 0 ? 2 : 4
const date = dt(2026, month, 18)
const dueD = new Date(date)
dueD.setDate(dueD.getDate() + 30)
const isPaid = i === 0
await createInvoice(ctx, 2026, {
number: num(),
customerId: helsinki,
customerName: 'Helsinki Oy',
date,
dueDate: dueD.toISOString().slice(0, 10),
status: isPaid ? 'paid' : 'sent',
vatTreatment: 'reverse_charge',
vatRate: 0,
subtotal: 20000,
description: `Konsulttjänst: Helsinki Oy ${month}/2026`,
paidAmount: isPaid ? 20000 : 0,
paidAt: isPaid ? dt(2026, month + 1, 5) : undefined,
})
}
// 1 Liten Studio overdue 30+ (per prompt)
await createInvoice(ctx, 2026, {
number: num(),
customerId: liten,
customerName: 'Liten Studio HB',
date: dt(2026, 3, 1),
dueDate: dt(2026, 4, 1),
status: 'overdue',
vatTreatment: 'standard_25',
vatRate: 25,
subtotal: 9500,
description: 'Konsulttjänst mars: Liten Studio',
paidAmount: 0,
})
// 4 May 2026 invoices, unpaid, no reminder yet
for (let i = 0; i < 4; i++) {
const date = dt(2026, 5, 1 + i)
const dueD = new Date(date)
dueD.setDate(dueD.getDate() + 30)
await createInvoice(ctx, 2026, {
number: num(),
customerId: klient,
customerName: 'Klient AB',
date,
dueDate: dueD.toISOString().slice(0, 10),
status: 'sent',
vatTreatment: 'standard_25',
vatRate: 25,
subtotal: 28800,
description: `Konsulttjänster maj: vecka ${18 + i}, 2026`,
hours: 24,
unitPrice: 1200,
paidAmount: 0,
})
}
// ── Stripe payouts (3 in May): create 8 sub-invoices first, batch them
// We'll create 8 small "Stripe customer" invoices grouped into 3 payouts
const stripeCustomer = liten // reuse Liten as a generic Stripe billed party
const stripeBatches: Array<{
payoutDate: string
grossAmounts: number[]
fee: number
net: number
}> = [
{ payoutDate: '2026-05-02', grossAmounts: [9400, 9400], fee: 566, net: 18234 },
{ payoutDate: '2026-05-04', grossAmounts: [9400], fee: 278, net: 9122 },
{ payoutDate: '2026-05-05', grossAmounts: [10000, 9000, 9750], fee: 863, net: 27887 },
]
for (const batch of stripeBatches) {
let batchNet = 0
for (const gross of batch.grossAmounts) {
// Create invoice & mark paid via Stripe before payout
const subtotal = round2(gross / 1.25)
const invDate = dt(
2026,
Number(batch.payoutDate.slice(5, 7)),
Number(batch.payoutDate.slice(8, 10)) - 1
)
const inv: InvoiceSeed = {
number: num(),
customerId: stripeCustomer,
customerName: 'Liten Studio HB',
date: invDate,
dueDate: invDate,
status: 'paid',
vatTreatment: 'standard_25',
vatRate: 25,
subtotal,
description: 'Stripe-betalning: engångsuppdrag',
paidAmount: gross,
paidAt: batch.payoutDate,
}
await createInvoice(ctx, 2026, inv)
batchNet += gross
}
// Stripe fee booking: DR 6570 (banking fees) / CR 1930 (reduces payout)
await postEntry(
ctx,
2026,
batch.payoutDate,
`Stripe-avgift utbetalning ${batch.payoutDate}`,
'manual',
[
{ account: '6570', debit: batch.fee, description: 'Stripe transaktionsavgift' },
{ account: '1930', credit: batch.fee },
]
)
// Bank transaction for Stripe payout (combined net): already booked individual incomings;
// here we add a memo transaction for the payout aggregation
await sb.from('transactions').insert({
user_id: ctx.userId,
company_id: ctx.companyId,
date: batch.payoutDate,
description: `STRIPE PAYOUT ${batch.payoutDate}`,
amount: 0,
currency: 'SEK',
amount_sek: 0,
category: 'income_other',
is_business: true,
merchant_name: 'Stripe',
notes: `Aggregated payout: ${batch.grossAmounts.length} invoices, gross ${batchNet}, fee ${batch.fee}, net ${batch.net}`,
import_source: 'demo_seed',
})
}
// Supplier invoices Jan-Apr: arrival_number must be unique per company
// across both fiscal years, so continue from the highest existing number.
const { data: maxArr } = await sb
.from('supplier_invoices')
.select('arrival_number')
.eq('company_id', ctx.companyId)
.order('arrival_number', { ascending: false })
.limit(1)
.maybeSingle()
let arrival = (maxArr?.arrival_number ?? 0) + 1
// WeWork × 4 paid + 1 unpaid (May)
for (let m = 1; m <= 5; m++) {
const isPaid = m <= 4
await createSupplierInvoice(
ctx,
2026,
{
supplierId: suppliers['WeWork Stockholm AB'],
supplierName: 'WeWork Stockholm AB',
number: `WW-2026-${pad(m)}`,
date: dt(2026, m, 1),
dueDate: dt(2026, m === 12 ? 12 : m + 1, 1),
receivedDate: dt(2026, m, 1),
subtotal: 8500,
vatRate: 25,
account: '5010',
description: `Hyra coworking ${m}/2026`,
paid: isPaid,
paidAt: isPaid ? dt(2026, m, 5) : undefined,
},
arrival++
)
}
// Linear (EUR 89, reverse charge) × 4 paid
for (let m = 1; m <= 4; m++) {
await createSupplierInvoice(
ctx,
2026,
{
supplierId: suppliers['Linear Software Inc'],
supplierName: 'Linear Software Inc',
number: `LIN-2026-${pad(m)}`,
date: dt(2026, m, 5),
dueDate: dt(2026, m, 25),
receivedDate: dt(2026, m, 5),
subtotal: 89,
vatRate: 25,
account: '5420',
description: 'Linear Standard subscription (monthly)',
paid: true,
paidAt: dt(2026, m, 7),
currency: 'EUR',
exchangeRate: 11.4,
reverseCharge: true,
vatTreatment: 'reverse_charge',
},
arrival++
)
}
// OpenAI × 2 paid (USD)
for (let i = 0; i < 2; i++) {
const m = i + 1
await createSupplierInvoice(
ctx,
2026,
{
supplierId: suppliers['OpenAI LLC'],
supplierName: 'OpenAI LLC',
number: `OAI-2026-${i + 1}`,
date: dt(2026, m, 10),
dueDate: dt(2026, m, 25),
receivedDate: dt(2026, m, 10),
subtotal: 250,
vatRate: 0,
account: '5420',
description: 'OpenAI API usage',
paid: true,
paidAt: dt(2026, m, 12),
currency: 'USD',
exchangeRate: 10.5,
reverseCharge: false,
vatTreatment: 'import_outside_eu',
},
arrival++
)
}
// Vercel × 1 paid (USD)
await createSupplierInvoice(
ctx,
2026,
{
supplierId: suppliers['Vercel Inc'],
supplierName: 'Vercel Inc',
number: 'VER-2026-01',
date: dt(2026, 2, 1),
dueDate: dt(2026, 2, 28),
receivedDate: dt(2026, 2, 1),
subtotal: 120,
vatRate: 0,
account: '5420',
description: 'Vercel Pro hosting (Feb)',
paid: true,
paidAt: dt(2026, 2, 3),
currency: 'USD',
exchangeRate: 10.5,
reverseCharge: false,
vatTreatment: 'import_outside_eu',
},
arrival++
)
// Notion × 1 paid (USD)
await createSupplierInvoice(
ctx,
2026,
{
supplierId: suppliers['Notion Labs Inc'],
supplierName: 'Notion Labs Inc',
number: 'NOT-2026-01',
date: dt(2026, 1, 5),
dueDate: dt(2026, 1, 25),
receivedDate: dt(2026, 1, 5),
subtotal: 96,
vatRate: 0,
account: '5420',
description: 'Notion Plus team plan',
paid: true,
paidAt: dt(2026, 1, 7),
currency: 'USD',
exchangeRate: 10.5,
reverseCharge: false,
vatTreatment: 'import_outside_eu',
},
arrival++
)
// Apple iPad Pro: fixed asset (1230) 18000 SEK + 25% moms
await createSupplierInvoice(
ctx,
2026,
{
supplierId: suppliers['Apple Sweden AB'],
supplierName: 'Apple Sweden AB',
number: 'APP-2026-001',
date: dt(2026, 2, 14),
dueDate: dt(2026, 3, 14),
receivedDate: dt(2026, 2, 14),
subtotal: 18000,
vatRate: 25,
account: '1230',
description: 'iPad Pro 13" (anläggning)',
paid: true,
paidAt: dt(2026, 2, 16),
},
arrival++
)
// SJ × 3 paid resor (12% moms)
for (let i = 0; i < 3; i++) {
const month = (i + 1)
await createSupplierInvoice(
ctx,
2026,
{
supplierId: suppliers['SJ AB'],
supplierName: 'SJ AB',
number: `SJ-2026-${pad(i + 1)}`,
date: dt(2026, month, 15),
dueDate: dt(2026, month, 25),
receivedDate: dt(2026, month, 15),
subtotal: 1200,
vatRate: 6,
account: '5800',
description: `Tågresa Stockholm-Göteborg ${month}/2026`,
paid: true,
paidAt: dt(2026, month, 16),
},
arrival++
)
}
// Salary entries Jan-Apr 2026 for Anna, Erik, Johan
const salaries = [
{ name: 'Anna Andersson', gross: 65000, tax: 14300, net: 50700, soc: 20423 },
{ name: 'Erik Ek', gross: 52000, tax: 11440, net: 40560, soc: 16338 },
{ name: 'Johan Lind', gross: 70000, tax: 15400, net: 54600, soc: 21994 },
]
for (let m = 1; m <= 4; m++) {
const payDate = dt(2026, m, 25)
const taxDate = dt(2026, m === 12 ? 12 : m + 1, 12)
let totalGross = 0
let totalTax = 0
let totalNet = 0
let totalSoc = 0
for (const s of salaries) {
totalGross += s.gross
totalTax += s.tax
totalNet += s.net
totalSoc += s.soc
}
await postEntry(
ctx,
2026,
payDate,
`Lön ${m}/2026: Anna, Erik, Johan`,
'salary_payment',
[
{ account: '7010', debit: totalGross, description: 'Bruttolöner' },
{ account: '2710', credit: totalTax, description: 'Innehållen skatt' },
{ account: '1930', credit: totalNet, description: 'Nettolöner' },
]
)
await postEntry(
ctx,
2026,
payDate,
`Sociala avgifter ${m}/2026`,
'salary_payment',
[
{ account: '7510', debit: totalSoc, description: 'Sociala avgifter 31.42%' },
{ account: '2731', credit: totalSoc },
]
)
await postEntry(
ctx,
2026,
taxDate,
`Inbetalning skatt + sociala ${m}/2026`,
'manual',
[
{ account: '2710', debit: totalTax },
{ account: '2731', debit: totalSoc },
{ account: '1930', credit: totalTax + totalSoc, description: 'Skattekonto' },
]
)
}
}
// ─── Inbox / uncategorized / voucher gaps ──────────────────────────────────
async function seedInboxAndUncategorized(
ctx: CompanyCtx,
suppliers: Record<string, string>
): Promise<void> {
console.log('[6] inbox AWS PDF + 5 uncategorized + voucher gaps')
// Synthetic AWS invoice PDF: upload a tiny but valid PDF so the nightly
// integrity-verify cron can download the object and match its real
// SHA-256, instead of failing forever on a fabricated hash with no file.
const awsPdfBuffer = Buffer.from(
[
'%PDF-1.4',
'1 0 obj << /Type /Catalog /Pages 2 0 R >> endobj',
'2 0 obj << /Type /Pages /Kids [3 0 R] /Count 1 >> endobj',
'3 0 obj << /Type /Page /Parent 2 0 R /MediaBox [0 0 595 842] >> endobj',
'trailer << /Root 1 0 R >>',
'%%EOF',
].join('\n'),
'utf8'
)
const awsPdfPath = `${ctx.userId}/${ctx.companyId}/inbox/aws-2026-05-05.pdf`
const { error: uploadErr } = await sb.storage
.from('documents')
.upload(awsPdfPath, awsPdfBuffer, { contentType: 'application/pdf', upsert: true })
if (uploadErr) throw new Error(`storage upload AWS PDF: ${uploadErr.message}`)
const awsPdfHash = createHash('sha256').update(awsPdfBuffer).digest('hex')
const { data: doc, error: docErr } = await sb
.from('document_attachments')
.insert({
user_id: ctx.userId,
company_id: ctx.companyId,
storage_path: awsPdfPath,
file_name: 'aws-2026-05-05.pdf',
file_size_bytes: awsPdfBuffer.length,
mime_type: 'application/pdf',
sha256_hash: awsPdfHash,
version: 1,
is_current_version: true,
uploaded_by: ctx.userId,
upload_source: 'email',
})
.select('id')
.single()
if (docErr) throw new Error(`document_attachments AWS: ${docErr.message}`)
// status: the CHECK allows only 'received' | 'error'
// (20260504180000_invoice_inbox_remove_ai_columns.sql, which also collapsed
// every pre-existing 'ready' row to 'received'). This item is an arrived,
// extracted document with no supplier invoice created from it yet, which is
// exactly what 'received' + created_supplier_invoice_id IS NULL means in the
// inbox UI. 'error' is the failure state and belongs with error_message.
const { error: inboxErr } = await sb.from('invoice_inbox_items').insert({
user_id: ctx.userId,
company_id: ctx.companyId,
status: 'received',
source: 'email',
email_from: 'aws-billing@amazon.com',
email_subject: 'Your AWS Invoice: May 2026',
email_received_at: '2026-05-05T07:34:00Z',
document_id: doc.id,
extracted_data: {
supplier_name: 'Amazon Web Services Inc',
invoice_number: 'INV-AWS-2026-0529',
invoice_date: '2026-05-04',
due_date: '2026-06-03',
currency: 'USD',
subtotal: 247.0,
vat_amount: 0,
total: 247.0,
line_items: [
{ description: 'EC2: t3.medium hours', amount: 198.5 },
{ description: 'S3: Standard storage', amount: 48.5 },
],
},
})
if (inboxErr) throw new Error(`invoice_inbox_items AWS: ${inboxErr.message}`)
// 5 uncategorized bank transactions, dated within 14 days of 2026-05-06
const today = new Date('2026-05-06')
const minus = (n: number) => {
const d = new Date(today)
d.setDate(d.getDate() - n)
return d.toISOString().slice(0, 10)
}
await sb.from('transactions').insert([
{
user_id: ctx.userId,
company_id: ctx.companyId,
date: minus(2),
description: 'SJ AB: biljett',
amount: -487,
currency: 'SEK',
amount_sek: -487,
category: null,
is_business: null,
merchant_name: 'SJ AB',
import_source: 'demo_seed',
},
{
user_id: ctx.userId,
company_id: ctx.companyId,
date: minus(4),
description: 'RESTAURANG KVARTER',
amount: -1240,
currency: 'SEK',
amount_sek: -1240,
category: null,
is_business: null,
merchant_name: 'Restaurang Kvarter',
import_source: 'demo_seed',
},
{
user_id: ctx.userId,
company_id: ctx.companyId,
date: minus(6),
description: 'LINEAR.APP',
amount: -1015, // EUR 89 ~ 1015 SEK; suspicious duplicate vs registered May invoice
currency: 'SEK',
amount_sek: -1015,
category: null,
is_business: null,
merchant_name: 'Linear Software',
import_source: 'demo_seed',
notes: 'Möjlig dubblettbokning vs registrerad maj-faktura',
},
{
user_id: ctx.userId,
company_id: ctx.companyId,
date: minus(8),
description: 'ICA BROMMA',
amount: -312,
currency: 'SEK',
amount_sek: -312,
category: null,
is_business: null,
merchant_name: 'ICA Bromma',
import_source: 'demo_seed',
},
{
user_id: ctx.userId,
company_id: ctx.companyId,
date: minus(11),
description: 'TRAFIK SL: månadskort',
amount: -156,
currency: 'SEK',
amount_sek: -156,
category: null,
is_business: null,
merchant_name: 'Trafik Stockholm',
import_source: 'demo_seed',
},
])
}
// ─── HOLDING company seed ──────────────────────────────────────────────────
async function seedHolding(holding: CompanyCtx): Promise<void> {
console.log('[H] Holding 2026 IB + dotterbolagsaktier')
const obEntryId = await postEntry(
holding,
2026,
dt(2026, 1, 1),
'Ingående balans 2026',
'opening_balance',
[
{ account: '1310', debit: 100000, description: 'Aktier i Konsult AB (dotterbolag)' },
{ account: '1930', debit: 250000, description: 'Bank Handelsbanken' },
{ account: '2081', credit: 50000, description: 'Aktiekapital' },
{ account: '2091', credit: 300000, description: 'Balanserat resultat' },
]
)
const { error } = await sb
.from('fiscal_periods')
.update({ opening_balance_entry_id: obEntryId, opening_balances_set: true })
.eq('id', holding.fpY[2026])
.eq('company_id', holding.companyId)
if (error) throw new Error(`Holding set opening_balance_entry_id: ${error.message}`)
}
// ─── MAIN ──────────────────────────────────────────────────────────────────
async function main(): Promise<void> {
console.log(`Seeding demo account for ${email}`)
console.log(`[1] Looking up user`)
const userId = await findUser(email)
console.log(` user_id = ${userId}`)
if (force) {
console.log(`[!] --force: wiping existing demo companies`)
await wipeExisting(userId)
} else {
const { data: existing } = await sb
.from('companies')
.select('id, name')
.eq('created_by', userId)
.in('name', ['Konsult AB', 'Konsult Holding AB'])
if (existing && existing.length > 0) {
console.error(
`Demo companies already exist (${existing.map((e) => e.name).join(', ')}). Pass --force to wipe.`
)
process.exit(1)
}
}
const konsult = await seedKonsultAB(userId)
const holding = await seedHoldingAB(userId)
// Set Emil's active company to Konsult AB
await sb
.from('user_preferences')
.upsert({ user_id: userId, active_company_id: konsult.companyId }, { onConflict: 'user_id' })
console.log('[3] Seeding customers, suppliers, employees')
const customers = await seedCustomers(konsult, [
{
name: 'Klient AB',
customer_type: 'swedish_business',
org_number: '5566778899',
vat_number: 'SE556677889901',
vat_number_validated: true,
email: 'bo@klient.se',
country: 'SE',
address_line1: 'Storgatan 10',
postal_code: '111 44',
city: 'Stockholm',
default_payment_terms: 30,
},
{
name: 'Nordic Tech AS',
customer_type: 'non_eu_business',
org_number: '999888777',
email: 'ola@nordictech.no',
country: 'NO',
address_line1: 'Karl Johans gate 12',
postal_code: '0154',
city: 'Oslo',
default_payment_terms: 30,
is_international: true,
},
{
name: 'Berlin GmbH',
customer_type: 'eu_business',
vat_number: 'DE123456789',
vat_number_validated: true,
email: 'klaus@berlin.de',
country: 'DE',
address_line1: 'Hauptstraße 5',
postal_code: '10115',
city: 'Berlin',
default_payment_terms: 30,
is_international: true,
},
{
name: 'Helsinki Oy',
customer_type: 'eu_business',
vat_number: 'FI12345678',
vat_number_validated: true,
email: 'mikko@helsinki.fi',
country: 'FI',
address_line1: 'Mannerheimintie 12',
postal_code: '00100',
city: 'Helsinki',
default_payment_terms: 30,
is_international: true,
},
{
name: 'Liten Studio HB',
customer_type: 'swedish_business',
org_number: '9696969696',
email: 'info@litenstudio.se',
country: 'SE',
address_line1: 'Lillgatan 3',
postal_code: '222 33',
city: 'Malmö',
default_payment_terms: 30,
},
])
await seedCustomers(holding, [
{
name: 'Konsult AB',
customer_type: 'swedish_business',
org_number: '5591234567',
vat_number: 'SE559123456701',
vat_number_validated: true,
email: 'info@konsult.se',
country: 'SE',
address_line1: 'Vasagatan 16',
postal_code: '111 20',
city: 'Stockholm',
default_payment_terms: 30,
},
])
const suppliers = await seedSuppliers(konsult, [
{
name: 'Amazon Web Services Inc',
supplier_type: 'non_eu_business',
country: 'US',
default_currency: 'USD',
default_expense_account: '5420',
category: 'IT-tjänster',
},
{
name: 'OpenAI LLC',
supplier_type: 'non_eu_business',
country: 'US',
default_currency: 'USD',
default_expense_account: '5420',
category: 'IT-tjänster',
},
{
name: 'Vercel Inc',
supplier_type: 'non_eu_business',
country: 'US',
default_currency: 'USD',
default_expense_account: '5420',
category: 'IT-tjänster',
},
{
name: 'Notion Labs Inc',
supplier_type: 'non_eu_business',
country: 'US',
default_currency: 'USD',
default_expense_account: '5420',
category: 'IT-tjänster',
},
{
name: 'Linear Software Inc',
supplier_type: 'eu_business',
country: 'IE',
default_currency: 'EUR',
vat_number: 'IE3733749AH',
default_expense_account: '5420',
category: 'IT-tjänster',
},
{
name: 'WeWork Stockholm AB',
supplier_type: 'swedish_business',
country: 'SE',
default_currency: 'SEK',
default_expense_account: '5010',
category: 'Hyra',
},
{
name: 'Apple Sweden AB',
supplier_type: 'swedish_business',
country: 'SE',
default_currency: 'SEK',
default_expense_account: '5410',
category: 'IT-utrustning',
},
{
name: 'SJ AB',
supplier_type: 'swedish_business',
country: 'SE',
default_currency: 'SEK',
default_expense_account: '5800',
category: 'Resor',
},
{
name: 'Trafik Stockholm (SL)',
supplier_type: 'swedish_business',
country: 'SE',
default_currency: 'SEK',
default_expense_account: '5800',
category: 'Resor',
},
{
name: 'ICA Bromma',
supplier_type: 'swedish_business',
country: 'SE',
default_currency: 'SEK',
default_expense_account: '6110',
category: 'Kontorsmaterial',
},
{
name: 'Restaurang Kvarter',
supplier_type: 'swedish_business',
country: 'SE',
default_currency: 'SEK',
default_expense_account: '6071',
category: 'Representation',
},
])
const employees = await seedEmployees(konsult)
console.log(` ${Object.keys(customers).length} customers, ${Object.keys(suppliers).length} suppliers, ${Object.keys(employees).length} employees`)
// FY2025
await seedFY2025(konsult, customers, suppliers)
// FY2026
await seedFY2026Konsult(konsult, customers, suppliers)
// Voucher gaps: requires that we delete the entries at A123 and A287
// OR insert with skipped numbers from start. Easier: now that all 2025
// entries are in, delete vouchers 123 and 287 from series A.
// BUT the immutability trigger will block deletion of posted entries.
// Solution: temporarily mark them as draft, delete, restore voucher seq.
// Even simpler: use raw SQL via Supabase MCP-style execute through service role
// which still hits triggers. Service role does NOT bypass triggers.
//
// Pragmatic approach: AFTER all entries are posted, NULL out and DELETE
// requires bypassing the trigger. The cleanest path is to simply NOT
// create entries at those slots, but our voucher counter is monotonic.
// We'll skip-numbers up-front by NOT actually creating the entries:
// Instead, we'll bump the counter by inserting then deleting the lines
// and the entry, which will fail.
//
// Real solution: emit a "draft" entry then leave it as draft forever.
// The detect_voucher_gaps RPC counts gaps among posted entries.
// BUT the seed already posted everything at sequence 1..N. So we need
// to retroactively introduce gaps. The SAFEST way is to bypass the
// immutability trigger by using a session_replication_role 'replica'
// via direct SQL. We'll do that via execute_sql below.
// FY2026 inbox & uncategorized
await seedInboxAndUncategorized(konsult, suppliers)
// Holding
await seedHolding(holding)
console.log('[*] Seeding complete (voucher gaps script-side TODO via SQL)')
console.log('')
console.log('=== ENTITY SUMMARY ===')
for (const [label, cid] of [
['Konsult AB', konsult.companyId],
['Konsult Holding AB', holding.companyId],
]) {
const counts = await Promise.all([
sb.from('customers').select('id', { count: 'exact', head: true }).eq('company_id', cid),
sb.from('suppliers').select('id', { count: 'exact', head: true }).eq('company_id', cid),
sb.from('employees').select('id', { count: 'exact', head: true }).eq('company_id', cid),
sb.from('invoices').select('id', { count: 'exact', head: true }).eq('company_id', cid),
sb.from('supplier_invoices').select('id', { count: 'exact', head: true }).eq('company_id', cid),
sb
.from('journal_entries')
.select('id', { count: 'exact', head: true })
.eq('company_id', cid),
sb.from('transactions').select('id', { count: 'exact', head: true }).eq('company_id', cid),
])
console.log(
`${label} (${cid}): ${counts[0].count} customers, ${counts[1].count} suppliers, ${counts[2].count} employees, ${counts[3].count} invoices, ${counts[4].count} sup.invoices, ${counts[5].count} journal entries, ${counts[6].count} bank txns`
)
}
console.log('')
console.log('Manual setup still required (out of scope for this script):')
console.log(' - Gmail demo account: AWS billing email + Stripe payout confirmations')
console.log(' - Google Calendar: week 28 Apr to 4 May meetings')
console.log(' - Google Drive: folder "Kvitton 2026" / "Bokslut 2025"')
console.log(' - Slack: #ekonomi channel + DM with gnubok-bot')
console.log(' - Voucher gaps A123 + A287 in FY2025: see scripts/seed-demo-voucher-gaps.sql')
console.log('')
}
main().catch((err) => {
console.error('FATAL:', err)
process.exit(1)
})