* feat(peppol): receive e-invoices via Qvalia: registration, inbound archive, inbox delivery Second Peppol slice (#546). Qvalia confirmed that sending needs no per-company account, so receiving keeps the consolidated partner account: each company publishes its 0007:orgnr on our account and inbound documents are routed by the AccountingCustomerParty endpoint. - PeppolTransport grows optional receiving methods (registerRecipient, unregisterRecipient, listInboundDocuments, fetchInboundDocumentXml); the Qvalia adapter implements them (PUT/DELETE /peppol/{id}, readinvoices / readcreditnotes, exact XML fetch). - lib/invoices/peppol-inbound-ubl.ts reads the provider's UBL-JSON (xml2js-style prefixed keys, verified against Qvalia's real inbound test invoice, kept as a fixture) into a neutral document: parties, payment means with SE:BANKGIRO/SE:PLUSGIRO/IBAN, totals, VAT subtotals, lines, embedded attachments, credit notes. - Migration 20260821170000: peppol_registrations (one live row per company and participant), peppol_inbound_documents (exact XML immutable and undeletable, routed once), invoice_inbox_items.source gains 'peppol' with a per-channel dedupe index; pg-real test covers RLS, uniqueness, immutability and routing. - POST/DELETE/GET /api/settings/peppol + "E-faktura via Peppol" switch in Settings > Fakturering; personnummer-based companies are refused until 0088 GLN exists; sandbox refused. - GET /api/peppol/inbound/cron every 10 minutes: archive, route, deliver. lib/invoices/peppol-inbox-delivery.ts archives the XML as a WORM document (upload_source e_invoice, extractionOwner none), an embedded PDF when present, and creates the inbox row with the extraction filled from the UBL (confidence 1, no model pass), matching the supplier by org number. The existing inbox review/convert flow takes over. - document-service accepts application/xml for the archive; inbox list shows a Peppol icon. Refs #546 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TqFpxeWqbpR7bcwUJLRERQ * test(peppol): archive contract, pg fixture and phantom-column ceiling for the receiving tables The two new tables are räkenskapsinformation and join MASTER_DATA_DUMP_TABLES; the pg fixture for a deregistered row now carries deregistered_at as the status-shape constraint requires; the archive insert is an inline literal and the one generic processing-state updater is accounted for in the ceiling. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TqFpxeWqbpR7bcwUJLRERQ --------- Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
49 lines
1.9 KiB
TypeScript
49 lines
1.9 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { withCronContext } from '@/lib/api/with-cron-context'
|
|
import { createServiceClientNoCookies } from '@/lib/auth/api-keys'
|
|
import { ensureInitialized } from '@/lib/init'
|
|
import { syncInboundPeppolDocuments } from '@/lib/invoices/peppol-inbound'
|
|
import { deliverPeppolDocumentToInbox } from '@/lib/invoices/peppol-inbox-delivery'
|
|
import {
|
|
getPeppolTransport,
|
|
getPeppolTransportAvailability,
|
|
} from '@/lib/invoices/peppol-transport'
|
|
|
|
ensureInitialized()
|
|
|
|
export const maxDuration = 300
|
|
|
|
/**
|
|
* GET /api/peppol/inbound/cron: every 10 minutes.
|
|
*
|
|
* Pulls the documents the Access Point received for our registered
|
|
* participants, archives the exact XML, routes each to its company and hands
|
|
* it to the supplier-invoice inbox. One provider account carries every
|
|
* company's identifier, so this is one poll for all of them; a document
|
|
* nobody is registered for is kept as `unrouted`, never dropped.
|
|
*
|
|
* Truthful no-op when no access point is switched on in this environment.
|
|
*/
|
|
export const GET = withCronContext('cron.peppol_inbound', async (_request, ctx) => {
|
|
const availability = getPeppolTransportAvailability()
|
|
const transport = availability.available ? getPeppolTransport(availability.provider) : null
|
|
if (!transport) {
|
|
return NextResponse.json({ data: { skipped: true, reason: availability.available ? 'provider_adapter_unavailable' : availability.reason } })
|
|
}
|
|
if (!transport.listInboundDocuments) {
|
|
return NextResponse.json({ data: { skipped: true, reason: 'receiving_unsupported' } })
|
|
}
|
|
|
|
const service = createServiceClientNoCookies()
|
|
const summary = await syncInboundPeppolDocuments({
|
|
service,
|
|
transport,
|
|
deliver: (delivery) => deliverPeppolDocumentToInbox(service, delivery),
|
|
log: ctx.log,
|
|
})
|
|
ctx.log.info('peppol inbound sync complete', { ...summary, errors: summary.errors.length })
|
|
return NextResponse.json({ data: summary })
|
|
})
|
|
|
|
export const POST = GET
|