Files
accounted/supabase/migrations/20260606120100_transactions_cash_account_id_backfill.sql
Jakob Wennberg 953980c875 Per-account bank reconciliation + overdue/inbox/privacy fixes (#619)
* feat(reconciliation): scope bank reconciliation per cash account via transactions.cash_account_id

A company with two same-currency cash accounts (e.g. checking 1930 + a
savings account) saw every SEK transaction on every account, and the
status card summed across both — reconciliation filtered transactions by
CURRENCY while filtering GL lines by ACCOUNT (issue #604).

Bind each bank transaction to the cash_accounts row it settled on:

- New nullable transactions.cash_account_id FK (ON DELETE SET NULL —
  a bank transaction is räkenskapsinformation, BFL 7 kap, and must
  survive cash-account deletion) + a best-effort 4-pass backfill.
- All reconciliation/transaction queries scope to the selected account
  with a NULL->currency fallback, so legacy/un-backfilled rows never
  disappear mid-backfill.
- ingestTransactions stamps cash_account_id from the batch's
  settlementAccount; categorize + manualLink resolve and use it.
- Bank leg now books to the transaction's actual settlement account via
  applySettlementAccount (no-op for 1930), so interest/fees on a
  savings/EUR account reconcile instead of mis-booking to 1930.
- manualLink cross-checks the transaction's account and requires a
  voucher line on the selected account (no silent cross-account links).
- BankReconciliationView: quick-book menu for any settlement account,
  in-flight request abort on account/date switch, 500-row truncation
  notice, per-account state reset.
- pg-real coverage for the FK, all backfill passes, account-scoped
  query isolation, and cross-company isolation.

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

* fix(supplier-invoices): stop marking paid invoices and credit notes as overdue

update_overdue_supplier_invoices() (the daily pg_cron job) flipped every
past-due 'registered'/'approved' row to 'overdue' without looking at the
outstanding balance. Credit notes — created 'registered', remaining 0,
due today — got flipped the next day, surfacing as "Förfallen" with
"kvar att betala 0 kr"; so did any fully-paid invoice left in
'registered'/'approved'.

Guard the cron on remaining_amount > 0.005 (the "fully paid" threshold
used by the payment/match paths) and is_credit_note = false, and backfill
the rows already mis-flagged (credit notes -> 'registered', paid ->
'paid' with paid_at stamped only when missing). pg-real coverage for the
guarded function and the one-off backfill.

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

* fix(invoice-inbox): refresh dokumentinkorg on realtime row changes

The InvoiceInboxWorkspace only refetched on mount and on explicit
in-component actions. When an inbox item was resolved out of band — the
in-app agent sheet committing a staged create_supplier_invoice_from_inbox
/ book-direct op, the /pending page approving one, or another tab booking
it — none of those paths called fetchItems(), so the booked underlag
stayed in "Att göra" until a manual reload (issue #600).

Add invoice_inbox_items to the supabase_realtime publication (mirrors the
/pending fix in 20260520120100) and subscribe in the workspace, refetching
the whole list on any change so derived status/counts/ordering stay
authoritative. RLS scopes the channel to the user's company. fetchItems
now preserves optimistic upload placeholders so a refetch firing
mid-upload can't drop an in-flight row.

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

* docs(privacy): disclose EU AI inference via Amazon Bedrock (eu-north-1)

Update the privacy policy and DPA to state that AI inference, when AI
features are enabled, runs inside the EU via Amazon Bedrock (eu-north-1,
Stockholm) using Anthropic's Claude models — no transfer to a third
country, prompts not retained after the call or used for model training.
Add AWS as a subprocessor row and refresh the "last updated" dates.

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

* fix(migrations): rename invoice_inbox_realtime to avoid version collision

main's #617 shipped 20260605120000_transactions_original_description.sql —
the same version this branch used for the inbox-realtime publication. The
Supabase migration tracker keys on the numeric version, not the filename, so
the preview branch failed with a duplicate-key error on
supabase_migrations.schema_migrations (version 20260605120000 already
exists). Rename to the unique version 20260605120500; the body
(ALTER PUBLICATION) is order-independent.

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

* fix(reconciliation): align run guard with status; harden filter interpolation

Addresses PR review (greptile + compliance swarm):

- The v1 and core bank/run routes rejected an unknown account uniformly,
  including the default '1930', while the status routes were lenient for
  '1930'. A company reconciling its primary SEK account without a
  cash_accounts row got 200 from status but 400 from run. Make run match
  status: '1930' falls back to currency-only scoping (cashAccountId
  undefined); non-default unknown accounts are still rejected. Adds a test.
- /api/transactions accepts a user-supplied `currency` query param that was
  interpolated raw into a PostgREST .or() filter. Reject anything that isn't
  a 3-letter ISO code — RLS already scopes to the company, but an
  unsanitized value could otherwise malform/widen the filter. Assert
  currency/cashAccountId shape in scopeTransactionsToAccount as well.
- categorize: log (instead of silently swallowing) a cash_accounts
  settlement-account lookup error, so a fall-back-to-1930 mis-booking is
  observable in the audit log.

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

* fix(migrations): correct backfill UPDATE..FROM join; idempotent realtime publication

Two SQL errors that only surface on real Postgres (CI pg-real + Supabase
preview) — the unit suite mocks Supabase, so neither was caught locally.

- Backfill pass (a): `UPDATE transactions t ... FROM journal_entry_lines jel
  JOIN cash_accounts ca ON ca.company_id = t.company_id` referenced the UPDATE
  target `t` inside the FROM join's ON clause, which Postgres rejects ("invalid
  reference to FROM-clause entry for table t"). Move the company match to WHERE;
  the JOIN now relates jel<->ca only. Semantics unchanged.
- invoice_inbox_realtime: `ALTER PUBLICATION ... ADD TABLE` is not idempotent
  (SQLSTATE 42710 if the table is already a member). The earlier
  version-collision push partially applied it on the Supabase preview branch, so
  the re-apply errored. Guard with a pg_publication_tables existence check.

Both statements validated against a real Postgres: the single-line tx binds, the
two-bank-line transfer stays NULL, and the publication add runs twice cleanly.

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

* fix(migrations): backfill pass (c) uses array_agg, not min(uuid)

Postgres has no min() aggregate for uuid, so pass (c)'s min(id) raised
"function min(uuid) does not exist" on apply (CI pg-real + Supabase). The
HAVING count(*) = 1 already guarantees one row per group, so (array_agg(id))[1]
returns that single id.

Validated the full backfill (all four passes) and the overdue migration against
a real Postgres: every pass binds / falls through as intended, and the overdue
guard + backfill produce the right statuses.

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

* docs(compliance): add RoPA entry for Amazon Bedrock AI inference (GDPR Art.30)

The privacy policy now discloses AI inference (transaction categorization +
document/receipt OCR) via Amazon Bedrock as a processing activity, but
.compliance/ropa.yaml had no matching Art.30 record. Add it: opt-in consent
basis, EU-region (eu-north-1) inference with no third-country transfer, prompts
not retained or used for model training. Mirrors the privacy-page disclosure
shipped in this PR.

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

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-01 18:26:13 +02:00

86 lines
3.7 KiB
SQL

-- Migration: backfill transactions.cash_account_id
--
-- Best-effort population of the cash_account_id added in
-- 20260606120000_transactions_cash_account_id.sql. Four passes, in descending
-- order of authority. Every pass touches ONLY rows that are still NULL, so the
-- migration is idempotent and safe to re-run / resume after an interruption.
--
-- Rows that no pass resolves stay NULL — reconciliation queries fall back to
-- currency matching for those, exactly as before this feature, so nothing
-- disappears from any report.
-- Pass (a) — Booked rows via the voucher's bank line. Most authoritative:
-- reflects where the money was actually booked. Map the journal entry's single
-- 19xx line to a cash account by (company_id, ledger_account).
--
-- Vouchers with MORE than one bank-class (19xx) line are own-account transfers
-- (e.g. 1930 → 1931) and are ambiguous — which leg is "this transaction"? We
-- deliberately skip them (leave NULL) rather than guess wrong.
UPDATE public.transactions t
SET cash_account_id = ca.id
FROM public.journal_entry_lines jel
JOIN public.cash_accounts ca
ON ca.ledger_account = jel.account_number
WHERE t.cash_account_id IS NULL
AND t.journal_entry_id IS NOT NULL
AND jel.journal_entry_id = t.journal_entry_id
-- Relate the cash account to the target by company in WHERE, not in the JOIN
-- ON above: Postgres forbids referencing the UPDATE target (t) from a
-- FROM-clause join condition ("invalid reference to FROM-clause entry for t").
AND ca.company_id = t.company_id
AND jel.account_number BETWEEN '1900' AND '1999'
AND (
SELECT count(*)
FROM public.journal_entry_lines x
WHERE x.journal_entry_id = t.journal_entry_id
AND x.account_number BETWEEN '1900' AND '1999'
) = 1;
-- Pass (b) — PSD2 rows via the owned-account identity embedded in external_id.
-- Enable Banking writes external_id = 'eb_<iban|uid>_<txid>'
-- (extensions/general/enable-banking/lib/sync.ts). Match the prefix against the
-- cash account's iban or external_uid. The trailing '_' in the prefix makes
-- this an exact account match (prevents 'SE111' matching 'SE1112…'), and
-- starts_with avoids LIKE wildcard/metacharacter ambiguity entirely.
UPDATE public.transactions t
SET cash_account_id = ca.id
FROM public.cash_accounts ca
WHERE t.cash_account_id IS NULL
AND ca.company_id = t.company_id
AND t.external_id IS NOT NULL
AND (
(ca.iban IS NOT NULL
AND starts_with(t.external_id, 'eb_' || ca.iban || '_'))
OR
(ca.external_uid IS NOT NULL
AND starts_with(t.external_id, 'eb_' || ca.external_uid || '_'))
);
-- Pass (c) — Single-account-of-currency fallback. If a company has exactly one
-- ENABLED cash account in the row's currency, the row unambiguously belongs to
-- it. Resolves the single-account majority (incl. CSV imports, which carry no
-- account identity). Deliberately does NOT fire for the 2-same-currency case
-- (HAVING count(*) = 1) — those rows stay NULL and rely on passes (a)/(b) or
-- on the currency fallback at query time. We must not guess between checking
-- and savings.
WITH single_ca AS (
-- (array_agg(id))[1], not min(id): Postgres has no min() aggregate for uuid.
-- HAVING count(*) = 1 guarantees exactly one row per group, so the array has
-- a single element and which one we pick is moot.
SELECT company_id, currency, (array_agg(id))[1] AS cash_account_id
FROM public.cash_accounts
WHERE enabled = true
GROUP BY company_id, currency
HAVING count(*) = 1
)
UPDATE public.transactions t
SET cash_account_id = s.cash_account_id
FROM single_ca s
WHERE t.cash_account_id IS NULL
AND s.company_id = t.company_id
AND s.currency = t.currency;
-- Pass (d) — anything still NULL is left as-is (query-time currency fallback).
NOTIFY pgrst, 'reload schema';