fix(pending-ops): record posted ids and land failed_partial instead of clean rejected after partial commits (#842) (#1110)

Multi-step executors (match_transaction_invoice, credit_invoice) post an
irreversible voucher or persist a credit note and then run later fallible
steps. A failure there previously marked the whole op status=rejected,
hiding the posted entity and its id from operators.

- new migration 20260722134114: add failed_partial to the
  pending_operations status CHECK and treat it as terminal in both
  immutability triggers (immutable, undeletable, never re-claimable)
- PartialCommitError + ExecutorResult.partialPostedIds carry the posted
  ids; the dispatcher writes status=failed_partial with
  result_data.posted_ids and returns code=partial_commit
- instrument only the two named executors; hoist the read-only
  settlement-account resolution above the storno in the match executor
- consumer sweep: status union + query schema widened, failed_partial
  folds into the Avvisade tab with a badge and posted-ids detail line,
  bulk/reject routes and MCP tools message it explicitly, worklist and
  expiry sweep intentionally untouched (not pending work)
- tests: pg-real coverage for the new terminal semantics, dispatcher unit
  tests for both partial paths plus byte-for-byte regression guards

Fixes #842

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Jakob Wennberg
2026-07-22 18:33:49 +02:00
committed by GitHub
co-authored by Claude Fable 5
parent 27ef398623
commit 3e1ea29d02
16 changed files with 795 additions and 23 deletions
@@ -70,9 +70,13 @@ export const POST = withRouteContext<{ params: Promise<{ id: string }> }>(
? 'Operation already rejected.'
: op.status === 'expired'
? 'Operation already expired and can no longer be rejected.'
: `Operation already ${op.status}: it was approved explicitly (most likely via the ` +
'Att göra / pending UI in parallel), not auto-committed. It can no longer be rejected; ' +
'reverse or correct the resulting verifikat instead.'
: op.status === 'failed_partial'
? 'Operation already resolved as failed_partial: it failed after posting an ' +
'irreversible voucher. It can no longer be rejected; see result_data.posted_ids ' +
'for what was posted and correct it with a storno if needed.'
: `Operation already ${op.status}: it was approved explicitly (most likely via the ` +
'Att göra / pending UI in parallel), not auto-committed. It can no longer be rejected; ' +
'reverse or correct the resulting verifikat instead.'
return NextResponse.json(
{ error: explained, status: op.status },
{ status: 409 }
@@ -21,6 +21,7 @@ const STATUS_LABELS_SV: Record<string, string> = {
committing: 'godkänns just nu',
committed: 'godkänd',
rejected: 'avvisad',
failed_partial: 'delvis genomförd',
}
export const POST = withRouteContext(
@@ -16,6 +16,7 @@ const STATUS_LABELS_SV: Record<string, string> = {
committed: 'godkänd',
rejected: 'avvisad',
expired: 'utgången',
failed_partial: 'delvis genomförd',
}
/**
+11 -3
View File
@@ -23,11 +23,19 @@ export const GET = withRouteContext(
// newer rejections and the "Utgick automatiskt" context would never be seen.
const orderColumn = status === 'pending' ? 'created_at' : 'resolved_at'
// 'failed_partial' rows (issue #842: op failed AFTER posting an
// irreversible voucher) surface inside the Avvisade tab rather than a
// fourth tab: they are resolved-with-failure and must stay visible to the
// operator, but a dedicated tab for a rare state would bury it. A direct
// ?status=failed_partial query still returns only those rows.
const statusesFor = (candidate: string): string[] =>
candidate === 'rejected' ? ['rejected', 'failed_partial'] : [candidate]
const listPromise = supabase
.from('pending_operations')
.select('*', { count: 'exact' })
.eq('company_id', companyId)
.eq('status', status)
.in('status', statusesFor(status))
.order(orderColumn, { ascending: false, nullsFirst: false })
.range(offset, offset + limit - 1)
@@ -45,7 +53,7 @@ export const GET = withRouteContext(
.from('pending_operations')
.select('id', { count: 'exact', head: true })
.eq('company_id', companyId)
.eq('status', candidate),
.in('status', statusesFor(candidate)),
),
])
@@ -55,7 +63,7 @@ export const GET = withRouteContext(
return NextResponse.json({ error: getUserErrorMessage(error) }, { status: 500 })
}
const counts: Partial<Record<(typeof statuses)[number], number>> = {
const counts: Partial<Record<(typeof statuses)[number] | 'failed_partial', number>> = {
[status]: count ?? 0,
}
otherStatuses.forEach((candidate, index) => {