Orders
-
Order #{{ orderNumber + index }}
Item: {{ order.item.name }}Quantity: {{ order.quantity }}Price: ${{ formatPrice(order.item.price * order.quantity) }}
Checkout
Subtotal: ${{ formatPrice(subtotal) }}
Tax ({{ settings.taxRate }}%): ${{ formatPrice(tax) }}
Gratuity ({{ settings.gratuityPercentage }}%): ${{ formatPrice(gratuity) }}
Total: ${{ formatPrice(total) }}
No items in current order.
Inventory
-
{{ item.name }} (Low Stock)
Quantity: {{ item.quantity }} {{ item.unit }}Price: ${{ formatPrice(item.price) }} per {{ item.unit }}
Reports
Sales Report
Total Revenue
${{ formatPrice(totalRevenue) }}
Total Orders
{{ completedOrders.length }}
Average Order Value
${{ formatPrice(averageOrderValue) }}
Inventory Report
Item | Current Stock | Unit | Value | Status |
---|---|---|---|---|
{{ item.name }} | {{ item.quantity }} | {{ item.unit }} | ${{ formatPrice(item.price * item.quantity) }} | {{ isLowStock(item) ? 'Low Stock' : 'Normal' }} |