Files
accounted/supabase/migrations/20260723161000_resolve_active_company_rpc.sql
Mattsson 288915c152 Fix/fdb fr usrs (#1125)
* fix(invoices): return attachment filename in delivery history summaries

The 20260723003000 hardening dropped attachment_filename from
list_invoice_delivery_summaries, so the delivery history UI always fell
back to the generic "faktura.pdf" label. Recreate the RPC with the
filename included: it is derived from company name, customer name,
invoice number, and date, all already visible to every company member,
so the minimization boundary is unchanged. Addresses stay masked and
message content, BCC, and checksums stay server-side.

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

* fix(reconciliation): surface own-account transfer legs in match-to-voucher by default

The second (incoming) leg of a transfer between two of the company's own
bank accounts was hidden in the 'Matcha mot befintlig verifikation' dialog
because the voucher counted as 'already matched' once its outgoing leg was
linked, even though the incoming account's line had no settling transaction.
Users read the empty default list as 'the app won't let me link this'.

get_account_gl_lines_for_matching now counts links per settlement account:
a transaction provably on another cash account no longer marks the voucher
as matched for the requested account, so the unsettled transfer leg surfaces
by default (and auto-selects on an exact match). Same-account N:1 stays
behind the 'Visa aven matchade verifikationer' opt-in, and transactions
without a resolvable cash account conservatively keep counting everywhere.
get_unlinked_gl_lines is deliberately untouched (feeds auto-reconcile).

Companion guard: mark_entry_as_opening_balance now refuses entries with
linked bank transactions, since half-settled transfer vouchers became
reachable in the reconciliation view's unmatched table where 'Mark som IB'
renders; re-tagging one would strand its transaction against a movement-
excluded entry. getReconciliationStatus counts unmatched GL lines with the
account-scoped RPC so the status card agrees with the table.

Fixes #1026

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

* perf(api): cut prod p95 latency via local JWT auth, single-RT company resolution, and report aggregate RPCs

Baseline 2026-07-23 (487 prod samples): p50 160ms, p95 480ms, 13% of
requests over 300ms. Target: p95 under 300ms.

- requireAuth: verify JWTs locally via getClaims (ES256/JWKS) instead of
  a second network getUser per request; getUser fallback keeps HS256
  self-hosted and existing test mocks working; middleware still
  revocation-checks every /api request
- resolve_active_company RPC (20260723161000): one round trip replaces
  2-3 queries in getActiveCompanyId and middleware; PGRST202/42501 fall
  back to the legacy query path
- arsredovisning build-data: ~33 sequential round trips down to ~7,
  output byte-identical (snapshot-proven)
- currency rate route: stop bypassing the exchange_rates cache (missing
  supabase arg caused an external Riksbanken call on every request)
- document.get: parallelize row fetch, signed URL and audit event
- list_company_accounts RPC (20260723170000): accounts list in one round
  trip instead of paging past PostgREST's 1000-row cap
- vat-declaration route: drop a dead sequential company_settings query
- get_kpi_report_aggregates RPC (20260723180000): KPI report's three
  full-period line scans collapsed into one aggregate call; dimension-
  filtered path unchanged
- lint: fix 9 baseline errors, downgrade 4 react-hooks compiler rules to
  warn, zero the eslint baseline ratchet

All four gates green: lint 0 errors, 9163 tests, check:guards, build.
Migrations applied idempotently to staging only; prod receives them via
Supabase branching on merge.

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

* fix(review): resolve PR review findings across auth, VAT declaration, and IB retag

- requireAuth getClaims fast path: pin iss (project URL) and aud
  ('authenticated'), log every fallback to getUser (ASVS V9.1 finding)
- remove the ignored accountingMethod parameter from calculateVatDeclaration
  and the dead company_settings.accounting_method reads in xlsx/pdf/eskd
  routes; v1 API keeps accepting the query param but documents it as a no-op
- close the mark_entry_as_opening_balance TOCTOU race with a transactions
  trigger (20260723190000, FOR KEY SHARE on journal_entries) + pg tests;
  applied to staging and smoke-verified both directions
- re-add the 42501 tenant guard to branch-local migration 20260723160000
  (function body had silently reverted to the pre-20260619130100 definition)
- document the buildK3Noter tbFullRows full-TB contract (uppskjuten skatt
  opening balance per BFNAR 2012:1 ch.29)
- add KPI VAT-liability test covering reduced-rate output accounts 2621/2631

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

* fix(db): use NULL-safe caller_is_company_member in opening-balance retag guard

The re-added tenant guard carried the pre-20260703180000 raw
NOT IN (SELECT user_company_ids()) pattern, which the
null-safe-tenant-guards ratchet blocks. Staging re-synced.

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

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-07-23 16:16:55 +02:00

76 lines
3.2 KiB
SQL

-- Single-round-trip active-company resolution for the app layer.
--
-- WHY THIS MIGRATION EXISTS
-- -------------------------
-- lib/company/context.ts (getActiveCompanyId) and lib/supabase/middleware.ts
-- (resolveCompanyForMiddleware) both resolve the active company with one
-- parallel round trip (user_preferences + first membership) plus a SECOND,
-- sequential validation round trip for every multi-company/consultant user.
-- This function collapses the whole resolution into one RPC call.
--
-- INVARIANTS (do not break these when editing):
-- 1. This function must stay SEMANTICALLY IDENTICAL to
-- public.current_active_company_id() (20260702093000). RLS reads that
-- function; the app reads this one. If they diverge, Next.js and RLS
-- disagree about which company is active and tenant isolation desyncs.
-- Resolution order, in both: validated preference (user_preferences.
-- active_company_id backed by a live membership in a non-archived
-- company) wins, else the earliest non-archived membership by
-- company_members.created_at, else NULL.
-- 2. NULL auth.uid() (service-role clients: createServiceClient /
-- createServiceClientNoCookies are cookieless, so auth.uid() is NULL in
-- RPCs) returns ZERO ROWS by design; the WHERE clause below produces
-- that. JS callers treat zero rows as "use the query fallback path".
-- 3. No table writes inside: middleware does its own conditional
-- write-back using the used_fallback flag; read paths must stay reads.
--
-- used_fallback is true exactly when the validated preference is absent
-- (no prefs row, NULL active_company_id, archived company, or membership
-- gone), which is exactly the condition under which middleware writes the
-- resolved company back to user_preferences today.
--
-- locale is NULL only when the user has no user_preferences row (the column
-- itself is NOT NULL DEFAULT 'sv', 20260521120000), matching what the
-- middleware's own query returns today.
CREATE OR REPLACE FUNCTION public.resolve_active_company()
RETURNS TABLE(company_id uuid, locale text, used_fallback boolean)
LANGUAGE sql
STABLE SECURITY DEFINER
SET search_path TO 'public'
AS $function$
WITH pref AS (
SELECT up.active_company_id, up.locale
FROM public.user_preferences up
WHERE up.user_id = auth.uid()
),
validated AS (
SELECT cm.company_id
FROM pref p
JOIN public.company_members cm
ON cm.user_id = auth.uid() AND cm.company_id = p.active_company_id
JOIN public.companies c
ON c.id = cm.company_id AND c.archived_at IS NULL
LIMIT 1
),
fallback AS (
SELECT cm.company_id
FROM public.company_members cm
JOIN public.companies c
ON c.id = cm.company_id AND c.archived_at IS NULL
WHERE cm.user_id = auth.uid()
ORDER BY cm.created_at ASC
LIMIT 1
)
SELECT
COALESCE((SELECT v.company_id FROM validated v), (SELECT f.company_id FROM fallback f)) AS company_id,
(SELECT p.locale FROM pref p) AS locale,
((SELECT v.company_id FROM validated v) IS NULL) AS used_fallback
WHERE auth.uid() IS NOT NULL;
$function$;
REVOKE ALL ON FUNCTION public.resolve_active_company() FROM PUBLIC, anon;
GRANT EXECUTE ON FUNCTION public.resolve_active_company() TO authenticated;
NOTIFY pgrst, 'reload schema';