{{ alert.message }}

Joint Vibe POS

Orders

{{ errors.item }}
{{ errors.quantity }}
  • 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

{{ errors.inventoryName }}
{{ errors.inventoryQuantity }}
{{ errors.inventoryUnit }}
{{ errors.inventoryPrice }}
  • {{ 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' }}

Settings

{{ errors.taxRate }}
{{ errors.gratuity }}
{{ errors.threshold }}

Menu Categories

{{ errors.categories }}

Data Management