product
{{ selectedVariation ? selectedVariation.name : product.name }}
{{ (selectedVariation ? selectedVariation.sale_price : product.sale_price) | currencySymbol }} @if(selectedVariation ? selectedVariation.discount : product.discount){ {{ (selectedVariation ? selectedVariation.price : product.price) | currencySymbol }} {{ (selectedVariation ? selectedVariation.discount : product.discount) }}% {{ 'off' | translate }} }
@if(!(product && product.is_external)){
}
@if(!(product && product.is_external)){ @if(((selectedVariation && selectedVariation.status && selectedVariation.quantity >= productQty) || (!selectedVariation && product.quantity >= productQty))){ {{ 'add_to_cart' | translate }} }@else { {{ ((selectedVariation && selectedVariation.status && selectedVariation.quantity < productQty || (!selectedVariation && product.quantity < productQty)) ? 'out_of_stock' : 'add_to_cart') | translate }} } }@else { {{ (product.external_button_text ? product.external_button_text : 'buy_now') | translate }} }