{{ transaction.type === 'income' ? 'Income' : 'Expense' }}
{{ transaction.type === 'income' ? '+' : '-' }}${{ transaction.amount.toFixed(2) }}
Date
{{ transaction.date }}
Time
{{ transaction.time }}
Category
{{ transaction.category }}
Description
{{ transaction.description }}
Items ({{ transaction.items?.length }})
{{ item.name }}
${{ item.price.toFixed(2) }} each
${{ (item.price * item.quantity).toFixed(2) }}
Subtotal
${{ subtotal.toFixed(2) }}
Total Discount
-${{ totalDiscount.toFixed(2) }}
Total
${{ (subtotal - totalDiscount).toFixed(2) }}
No items in this transaction