feat(expenses): utlägg as an answer to "Vem betalade?" in Underlag, not a page (#2317)

An out-of-pocket purchase differs from any other receipt only in the
credit account, so the Underlag pane now asks one question for an
unmatched underlag (Företaget / Jag, privat / En anställd / Ingen ännu)
and books a privately paid receipt in place through POST
/api/expense-claims, replacing the "Andra sätt att bokföra" dropdown and
the deep link into the two-step wizard. The verifikat editor stays
reachable below as the escape hatch (BFL 5 kap 6-7 §).

The person owed surfaces in Att göra under a new Betala band, one row per
person (lib/worklist expense_payout, counted in the total and exposed to
agents through the attention resource). The Utlägg nav row is gated on
existing claims, the same hybrid gate as Körjournal, since the entry
point for a new utlägg is now the Underlag pane.


Claude-Session: https://claude.ai/code/session_01P8YsvPqjfGxGZUkGeBVUWQ

Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com>
Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
Jakob Wennberg
2026-09-05 15:57:14 +02:00
committed by GitHub
co-authored by Jakob Wennberg Claude Fable 5.1
parent bff44e5757
commit cbe5580886
17 changed files with 866 additions and 86 deletions
+15 -2
View File
@@ -12,6 +12,7 @@ vi.mock('../categories', () => ({
countDeadlinesNeedingAction: vi.fn().mockResolvedValue(1),
countPendingOperations: vi.fn().mockResolvedValue(2),
countReconciliationDue: vi.fn().mockResolvedValue(1),
countExpensePayoutsDue: vi.fn().mockResolvedValue(2),
}))
import { getWorklistCounts } from '../aggregate'
@@ -36,6 +37,7 @@ describe('getWorklistCounts', () => {
deadline_action: 1,
pending_operations: 2,
reconciliation_due: 1,
expense_payout: 2,
})
})
@@ -49,9 +51,20 @@ describe('getWorklistCounts', () => {
expect(countSuggestedMatches).not.toHaveBeenCalled()
})
it('takes the expense-payout count from a caller-supplied list instead of rescanning', async () => {
const { countExpensePayoutsDue } = await import('../categories')
const people = [{ key: 'owner:Anna' }, { key: 'emp-1' }, { key: 'emp-2' }] as never[]
const { counts } = await getWorklistCounts(supabase, 'company-1', {
expensePayoutsDue: Promise.resolve(people),
})
expect(counts.expense_payout).toBe(3)
expect(countExpensePayoutsDue).not.toHaveBeenCalled()
})
it('excludes suggested_match from the total (subset of book_transaction)', async () => {
const { total } = await getWorklistCounts(supabase, 'company-1')
// 4 + 7 + 6 + 1 + 3 + 5 + 1 + 2 + 1, without the 2 suggested matches.
expect(total).toBe(30)
// 4 + 7 + 6 + 1 + 3 + 5 + 1 + 2 + 1 + 2 (people owed for utlägg), without
// the 2 suggested matches.
expect(total).toBe(32)
})
})
+44
View File
@@ -12,6 +12,7 @@ import {
countUnbookedSkattekontoRows,
countUnbookedTransactions,
countVerifikatMissingDocument,
listExpensePayoutsDue,
listSuggestedMatches,
} from '../categories'
import {
@@ -539,3 +540,46 @@ describe('countReconciliationDue', () => {
await expect(countReconciliationDue(supabase, COMPANY, TODAY)).resolves.toBe(0)
})
})
describe('listExpensePayoutsDue', () => {
it('groups registered claims into one item per person, oldest debt first', async () => {
enqueue({
data: [
{ employee_id: null, claimant_name: 'Jakob', liability_account: '2893', amount_sek: '1240.00', expense_date: '2026-09-03' },
{ employee_id: 'emp-1', claimant_name: 'Anna Berg', liability_account: '2820', amount_sek: 1196, expense_date: '2026-09-02' },
{ employee_id: 'emp-1', claimant_name: 'Anna Berg', liability_account: '2820', amount_sek: 400, expense_date: '2026-09-06' },
// Same owner name twice: one person, one transfer.
{ employee_id: null, claimant_name: 'Jakob', liability_account: '2893', amount_sek: 0.1, expense_date: '2026-09-07' },
],
})
const people = await listExpensePayoutsDue(supabase, COMPANY)
expect(mockSupabase.from).toHaveBeenCalledWith('expense_claims')
expect(findCalls('expense_claims', 'eq')).toContainEqual(['status', 'registered'])
expect(people).toEqual([
{
key: 'emp-1',
employee_id: 'emp-1',
claimant_name: 'Anna Berg',
liability_account: '2820',
claim_count: 2,
total_sek: 1596,
oldest_expense_date: '2026-09-02',
},
{
key: 'owner:Jakob',
employee_id: null,
claimant_name: 'Jakob',
liability_account: '2893',
claim_count: 2,
// 1240 + 0.1 in öre-safe arithmetic, never 1240.1000000000001.
total_sek: 1240.1,
oldest_expense_date: '2026-09-03',
},
])
})
it('soft-fails to an empty list on query error', async () => {
enqueue({ error: { message: 'boom' } })
await expect(listExpensePayoutsDue(supabase, COMPANY)).resolves.toEqual([])
})
})
+15 -2
View File
@@ -1,8 +1,9 @@
import type { SupabaseClient } from '@supabase/supabase-js'
import type { SuggestedMatch } from './types'
import type { ExpensePayoutDue, SuggestedMatch } from './types'
import type { WorklistCounts } from './types'
import {
countDeadlinesNeedingAction,
countExpensePayoutsDue,
countInboxDocuments,
countOverdueInvoices,
countPendingOperations,
@@ -32,6 +33,12 @@ export interface GetWorklistCountsOptions {
* parallel with the other counts.
*/
suggestedMatches?: SuggestedMatch[] | Promise<SuggestedMatch[]>
/**
* People owed for unpaid utlägg the caller is already fetching (Hem
* renders one row per person): the count is the list's length instead of
* a second scan of expense_claims.
*/
expensePayoutsDue?: ExpensePayoutDue[] | Promise<ExpensePayoutDue[]>
}
export async function getWorklistCounts(
@@ -50,6 +57,7 @@ export async function getWorklistCounts(
deadlineAction,
pendingOperations,
reconciliationDue,
expensePayout,
] = await Promise.all([
countUnbookedTransactions(supabase, companyId),
countUnbookedSkattekontoRows(supabase, companyId),
@@ -63,6 +71,9 @@ export async function getWorklistCounts(
countDeadlinesNeedingAction(supabase, companyId),
countPendingOperations(supabase, companyId),
countReconciliationDue(supabase, companyId),
options.expensePayoutsDue
? Promise.resolve(options.expensePayoutsDue).then((p) => p.length)
: countExpensePayoutsDue(supabase, companyId),
])
return {
@@ -77,6 +88,7 @@ export async function getWorklistCounts(
deadline_action: deadlineAction,
pending_operations: pendingOperations,
reconciliation_due: reconciliationDue,
expense_payout: expensePayout,
},
total:
bookTransaction +
@@ -87,6 +99,7 @@ export async function getWorklistCounts(
overdueInvoice +
deadlineAction +
pendingOperations +
reconciliationDue,
reconciliationDue +
expensePayout,
}
}
+73 -1
View File
@@ -11,11 +11,12 @@
import { OPEN_ROT_RUT_PAYOUT_STATUSES } from '@/lib/invoices/rot-rut-payout-matching'
import type { SupabaseClient } from '@supabase/supabase-js'
import { createLogger } from '@/lib/logger'
import { roundOre } from '@/lib/money'
import {
MATCHABLE_INVOICE_STATUSES,
MATCHABLE_SUPPLIER_INVOICE_STATUSES,
} from '@/lib/invoices/matchable-statuses'
import type { SuggestedMatch } from './types'
import type { ExpensePayoutDue, SuggestedMatch } from './types'
// Canonical home is lib/worklist/types.ts (dependency-free, client-safe);
// re-exported here so existing server-side imports keep working.
@@ -562,3 +563,74 @@ export async function countReconciliationDue(
return keys.filter((k) => !coveredKeys.has(k)).length
}
/**
* Upper bound on registered-claim rows scanned per company. Claims are
* marked paid in batches, so a backlog beyond this is pathological; the
* list clamps rather than paginating on every home render.
*/
export const EXPENSE_PAYOUT_SCAN_CAP = 500
/**
* People owed for registered, unpaid utlägg, newest debt last. The canonical
* "att betala ut" predicate: expense_claims.status = 'registered'. Grouped
* here (not in SQL) because the owner has no employee row: two owner claims
* with the same claimant_name are one person, one transfer.
*/
export async function listExpensePayoutsDue(
supabase: SupabaseClient,
companyId: string,
): Promise<ExpensePayoutDue[]> {
const { data, error } = await supabase
.from('expense_claims')
.select('employee_id, claimant_name, liability_account, amount_sek, expense_date')
.eq('company_id', companyId)
.eq('status', 'registered')
.order('expense_date', { ascending: true })
.limit(EXPENSE_PAYOUT_SCAN_CAP)
if (error) {
logAndZero('expense_payout', companyId, error)
return []
}
const byPerson = new Map<string, ExpensePayoutDue>()
for (const row of (data ?? []) as Array<{
employee_id: string | null
claimant_name: string
liability_account: string
amount_sek: number | string
expense_date: string
}>) {
const key = row.employee_id ?? `owner:${row.claimant_name}`
const amount = Number(row.amount_sek) || 0
const existing = byPerson.get(key)
if (existing) {
existing.claim_count += 1
existing.total_sek = roundOre(existing.total_sek + amount)
if (row.expense_date < existing.oldest_expense_date) {
existing.oldest_expense_date = row.expense_date
}
} else {
byPerson.set(key, {
key,
employee_id: row.employee_id,
claimant_name: row.claimant_name,
liability_account: row.liability_account,
claim_count: 1,
total_sek: roundOre(amount),
oldest_expense_date: row.expense_date,
})
}
}
// Oldest debt first: the person who has waited longest tops the list.
return [...byPerson.values()].sort((a, b) =>
a.oldest_expense_date < b.oldest_expense_date ? -1 : a.oldest_expense_date > b.oldest_expense_date ? 1 : 0,
)
}
/** Number of people owed for unpaid utlägg (see listExpensePayoutsDue). */
export async function countExpensePayoutsDue(
supabase: SupabaseClient,
companyId: string,
): Promise<number> {
return (await listExpensePayoutsDue(supabase, companyId)).length
}
+29
View File
@@ -105,10 +105,39 @@ export const WORKLIST_CATEGORIES = [
* reconcile monthly, not a new chore for everyone.
*/
'reconciliation_due',
/**
* People the company owes for out-of-pocket purchases ("Betala ut utlägg
* till Anna"), one item per person.
* Pending: expense_claims.status = 'registered' (booked as cost against a
* person-liability account 2893/2820/2018, nothing paid out yet),
* grouped by employee_id, or by claimant_name for the owner.
* Done: every claim of that person is marked 'paid' (a payout batch
* posted the 1930 leg), or the claim is deleted (storno).
* Counts PEOPLE, not receipts: the action is one transfer per person.
*/
'expense_payout',
] as const
export type WorklistCategory = (typeof WORKLIST_CATEGORIES)[number]
/**
* One person the company owes for registered, unpaid utlägg: the Att göra
* row "Betala ut utlägg till {name}". Grouped server-side by employee_id
* (or claimant_name for the owner, who has no employee row).
*/
export interface ExpensePayoutDue {
/** employee_id, or `owner:<claimant_name>` for claims without one. */
key: string
employee_id: string | null
claimant_name: string
/** 2893 (AB owner), 2018 (EF owner) or 2820 (employee). */
liability_account: string
claim_count: number
total_sek: number
/** ISO date of the oldest unpaid claim. */
oldest_expense_date: string
}
export interface WorklistCounts {
counts: Record<WorklistCategory, number>
/**