INVOICE PROCESSING

Three-Way Match Exception Router with Buyer Routing

Compares each incoming invoice against its purchase order and goods receipt in Postgres, auto-approves clean matches, and routes price, quantity, or missing-receipt exceptions…

CategoryInvoice Processing
Enginesim
Difficultyintermediate
Triggerevent
Steps5
Setup~15 min

How it runs

The automated pipeline, trigger to output.

  • TriggerNew invoice row inserted in PostgresPostgreSQLPostgres
  • ActionJoin invoice to PO and goods receiptPostgreSQLPostgres
  • LogicClassify match vs price/quantity/no-receipt exception
  • ActionMark clean matches approved in PostgresPostgreSQLPostgres
  • OutputEmail exception detail to the PO's buyerGmailGmail

What it does

Runs the classic procurement three-way match: it lines up the invoice, the purchase order it references, and the goods receipt confirming delivery. Invoices that match on vendor, quantity, and unit price within tolerance are flagged auto-approved; anything outside tolerance is classified by exception type and sent to the buyer who owns the PO.

When to use it

Use it when your AP team manually cross-checks POs, receipts, and invoices in spreadsheets before approving payment. It removes the clean-match cases from the human queue and turns the messy ones into a tidy, typed exception list.

How it works

  1. 1A new invoice row lands in the Postgres `invoices` table and fires the trigger.
  2. 2The flow joins the invoice to its PO and goods-receipt records by PO number.
  3. 3A decision step compares vendor, line quantities, and unit prices against configured tolerances, tagging each as match, price variance, quantity variance, or no-receipt.
  4. 4Clean matches are written back to Postgres as `approved`.
  5. 5Exceptions are written back as `needs_review` with the variance detail.
  6. 6An email goes to the buyer named on the PO summarizing the mismatch and the dollar impact.

Set it up

What you configure once, before turning it on.

  1. 1
    Connect PostgresAny Postgres URL — query, write, migrate.
  2. 2
    Connect GmailRead, draft, send, label.
  3. 3
    Set each agent's modelWe leave models unset so you pick the tier — fast + cheap, or top-quality.
  4. 4
    Tune it to your dataEdit the prompts, filters, and field mappings so it matches how your team works.
  5. 5
    Test, then turn it onRun once against a sample, confirm the output, then enable the trigger.

Run this workflow in your colony.

14-day trial. No DevOps. No Sales call. Provisioned in under a minute.