Till Sales
addItem('Cuticle Oil', 8)}> Cuticle Oil - £8
addItem('Nail Files (Pack)', 5)}> Nail Files - £5
addItem('Hand Cream', 6)}> Hand Cream - £6
addItem('Base Coat', 7)}> Base Coat - £7
addItem('Top Coat', 7)}> Top Coat - £7
{#if showGiftCardInput}
£
{ if (e.key === 'Enter') addGiftCard(); }} />
Add
{:else}
showGiftCardInput = true}> Gift Card
{/if}
{#if cart.length === 0}
Tap items above to add them to the sale.
{:else}
{#each cart as item (item.id)}
{item.label}
{formatCurrency(item.price)} each
updateQty(item.id, -1)} > −
{item.qty}
updateQty(item.id, 1)} > +
{formatCurrency(item.price * item.qty)}
removeItem(item.id)} >
{/each}
{itemCount} item{itemCount !== 1 ? 's' : ''}
{formatCurrency(subtotal)}
Charge {formatCurrency(subtotal)}
Payment flow and backend integration coming soon.
{/if}