diff --git a/src/routes/reports.index.tsx b/src/routes/reports.index.tsx index 6b3f997..2f400f9 100644 --- a/src/routes/reports.index.tsx +++ b/src/routes/reports.index.tsx @@ -456,6 +456,8 @@ function ExpenseReport() { case_label: c ? `${c.case_number} — ${c.title}` : "—", user_name: profMap[e.user_id] || "—", description: e.description || "", + quantity: Number(e.quantity ?? 1), + unit_price: Number(e.unit_price ?? e.amount ?? 0), amount: Number(e.amount || 0), billable: !!e.billable, };