Line Items
Search extracted purchase lines across documents
Results
{% if rows %}
{% for row in rows %}
{{ row.transaction_date }} ยท {{ row.merchant }}
{{ row.description }}
{{ row.raw_description }}
{% if row.category %}
{{ row.category }}
{% endif %}
{% if row.quantity %}
Qty {{ row.quantity }}
{% endif %}
{% if row.line_total %}
${{ row.line_total }}
{% endif %}
{% if row.confidence %}
Conf {{ row.confidence }}
{% endif %}
{% if row.quality_rating %}
Rating {{ row.quality_rating }}
{% endif %}
{% endfor %}
{% else %}
No line items found for the current filters.
{% endif %}