Aulafy
Courses/AI for small businesses and freelancers/Invoices: extract data and review

Invoices: extract data and review

Invoices are one of the best use cases for AI in the office: extraction, review, and organization. But don't let the model decide on taxes or final accounting without supervision.

  • Convert invoices into structured data.
  • Detect missing or inconsistent fields.
  • Prepare a CSV that a person can review.
TerminalCode
Devuelve SOLO JSON válido con esta estructura:
{
  "numero_factura": "",
  "fecha": "",
  "emisor": "",
  "nif_emisor": "",
  "cliente": "",
  "base_imponible": 0,
  "iva": 0,
  "total": 0,
  "vencimiento": "",
  "alertas": []
}

Si falta un dato, deja el campo vacío y añade una alerta.

Useful automatic checks

  • Total = base + VAT - withholdings, if applicable.
  • Date and due date have a consistent format.
  • NIF/CIF is not empty.
  • Supplier already exists or is marked as new.
  • High amounts require manual review.