Invoice Document Template
Where It's Used
Used for organizing invoices from clients or vendors. Solves the problem of arbitrary invoice filenames like inv_12345.pdf or invoice.pdf by extracting the client name, invoice number, and date directly from the document content.
Template Pattern
{invoice_date}_{client_name}_{invoice_number}
AI Instructions
Extract the client name
Find the invoice number or ID
Identify the invoice date
Field-Level Instructions
| Field | Description | Example Value |
|---|---|---|
{client_name} | Client name in uppercase | ABC CORPORATION |
{invoice_number} | Invoice ID or number in uppercase | INV-2024-001 |
{invoice_date} | Invoice date, format should be YYYY_MM_DD | 2024_12_15 |
Examples
| Input | Output |
|---|---|
inv_12345.pdf | 2024_12_15_ABC-CORPORATION_INV-2024-001.pdf |
invoice.pdf | 2024_11_30_GLOBEX-INC_INV-2024-089.pdf |
scan_receipt.pdf | 2024_10_05_WAYNE-ENTERPRISES_INV-2024-042.pdf |
bill.pdf | 2024_09_18_STARK-INDUSTRIES_INV-2024-031.pdf |
Best For
- Freelancers managing client invoices
- Accounting and bookkeeping workflows
- Businesses archiving outgoing invoices
- Tax preparation and expense audits