feat(mcp): bulk-link documents to vouchers in one staged approval (#1411)
gnubok_link_documents_to_vouchers stages up to 300 document-to-verifikat links as a single pending operation, addressed by voucher_series / voucher_number / fiscal_year instead of journal_entry_id UUIDs, for bulk receipt-migration jobs where N separate tools mean N separate approvals. Staging resolves every row server-side and returns a per-row hit or miss, so a systematic offset such as a wrong fiscal_year is visible before anything is approved rather than after N approvals. Only resolved rows enter the staged operation. The WORM precondition and the document lookup are shared with the single-document executor through precheckDocumentLink: a bulk call must enforce exactly the invariants N single calls would, and a second copy of a BFL 5 kap 6 § guard is a copy that keeps the old behaviour when the first is hardened. A batch that links nothing returns 409 instead of a committed no-op. Partial skips stay committed, but an approval-gated operation on räkenskapsinformation must not leave an audit record asserting a run that changed nothing. The tool is search-only: a one-off migration tool does not belong in the default catalog every session pays for in context, and keeping it there pushed the tools/list projection past the 58.5K token ceiling that payload-size.bench.test.ts guards. Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Jakob Wennberg
Claude Fable 5
parent
4300cb711b
commit
3841ab9f54
@@ -2340,6 +2340,10 @@ export type PendingOperationType =
|
||||
// Link a document directly to a journal entry (verifikation): for imported/
|
||||
// manual vouchers that have no bank-transaction row.
|
||||
| 'link_document_to_voucher'
|
||||
// Bulk counterpart: N docs linked to N posted verifikationer in one staged
|
||||
// op, addressed by voucher_series/voucher_number/fiscal_year instead of
|
||||
// journal_entry_id UUIDs (resolved server-side).
|
||||
| 'link_documents_to_vouchers'
|
||||
// Manual transaction ingestion (uncategorized row, reversible by delete)
|
||||
| 'create_transaction'
|
||||
// Stream 1 Phase 1: supplier invoice lifecycle
|
||||
|
||||
Reference in New Issue
Block a user