Line Items
Analyze extracted purchase lines, prices, and ratings
Line Item Summary
Summary Results
{% if summary_rows %}
| Item |
Count |
Avg Price |
Min Price |
Max Price |
Rated Count |
Avg Rating |
{% for row in summary_rows %}
| {{ row.item }} |
{{ row.count }} |
{{ row.avg_price }} |
{{ row.min_price }} |
{{ row.max_price }} |
{{ row.rated_count }} |
{{ row.avg_rating }} |
{% endfor %}
{% else %}
No summary rows found for the current search.
{% endif %}
Advanced Search
Results
{% if not has_advanced_query %}
Enter one or more filters and run a search to view detailed line-item results.
{% elif 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 %}
{% if row.is_reviewed %}
Reviewed
{% endif %}
{% if row.is_approved %}
Approved
{% endif %}
{% if row.is_excluded %}
Excluded
{% endif %}
{% if row.is_na %}
N/A
{% endif %}
{% endfor %}
{% else %}
No line items found for the current filters.
{% endif %}
Quality Review Queue
{% if queue_rows %}
{% for row in queue_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 are waiting for quality review.
{% endif %}