.pos-step
.products-selector
searcher(
mode='normal'
:items='products'
:keys="['name', 'ean13', 'defaultCode']"
@onSearch='filterProducts'
)
card-grid(
@onAdd='showProductForm'
:items='visibleProducts'
:details="['price:c']"
:options='currency'
:loading='loadingProducts'
@onSelect='selectProduct'
)
product-modal(
:show='showingProductForm'
@onAccept='submitProduct'
@onCancel='hideProductForm'
)
variant-modal
discount-modal(
:item='itemToDiscount'
:options='currency'
:show='!!itemToDiscount'
@onAccept='applyPrice'
@onCancel='applyPrice'
)
cart(
:items='cartItems'
:options='currency'
@onTotalComputed='changeCartTotal'
@onIncrementQty='addToCart'
@onUndoPrice='undoPrice'
@onChangePrice='changePrice'
@onDecrementQty='decreaseFromCart'
@onDeleteItem='removeFromCart'
)