Orders
-
Order #{{ orderNumber + index }}
Item: {{ order.item.name }}Quantity: {{ order.quantity }}Price: ${{ formatPrice(order.item.price * order.quantity) }}Status: {{ order.status }}
Checkout
Subtotal: ${{ formatPrice(subtotal) }}
Tax ({{ settings.taxRate }}%): ${{ formatPrice(tax) }}
Gratuity ({{ settings.gratuityPercentage }}%): ${{ formatPrice(gratuity) }}
Total: ${{ formatPrice(total) }}
No items in current order.
Menu Management
{{ category }}
-
{{ item.name }} ${{ formatPrice(item.price) }}