Leírás
These parts fit your .
This part fits your .
{% for item in bundles %}
{% set currency = item.currency %}
{% if item.pdpProductUrl %}
{% else %}
{% endif %}
{% set outerIndex = loop.index %}
{% set defaultProduct = '' %}
{% set isMultipleColors = false%}
{% set isFit = false%}
{% set isWaist = false%}
{% set isSize = false%}
{% for options in item.variationSelectionOptions %}
{% if (options.optionType == 'WAIST_SIZE' and options.selectionOptionValues.length > 0) %}
{% set isWaist = true%}
{% endif %}
{% if (options.optionType == 'STANDARD_SIZE' and options.selectionOptionValues.length > 0) %}
{% set isSize = true%}
{% endif %}
{% if options.optionType == 'COLOR_GROUP' %}
{% set isMultipleColors = true%}
{% for color in options.selectionOptionValues %}
{% if color.isDefaultSelected %}
{% set defaultProduct = color.productCode %}
{{ color.optionLabel|safe }}
{% else %}
{{ color.optionLabel|safe }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% set isBackOrderEnabled = false%}
{% set backOrderDate = ''%}
{% if item.productVariantOptions == null %}
{% if item.variantProducts != null and item.variantProducts[0].availableActions.isBackorderEnabled%}
{% set isBackOrderEnabled = true%}
{% set backOrderDate = item.variantProducts[0].nextShipDateFormatted%}
{% endif %}
{% endif %}
Ships on {{backOrderDate}}
{{item.name}}
{% if item.hdAverageRating != null %}
{{item.hdAverageRating|round(2)}}
{% endif %}
{% if item.retailPrice > item.price %}
{{item.retailPriceFormatted}}
{% endif %}
{{item.priceFormatted}}
{% set defaultFitProduct = '' %}
{% for options in item.variationSelectionOptions %}
{% if options.optionType == 'EXTENDED_SIZE_GROUP' and options.selectionOptionValues.length > 1 %}
{% set isFit = true %}
{% for option in options.selectionOptionValues %}
{% if option.isDefaultSelected %}
{% set defaultFitProduct = option.productCode %}
{% endif %}
{{option.optionLabel|upper}}
{% endfor %}
{% endif %}
{% if options.optionType == 'FIT' and options.selectionOptionValues.length == 1 %}
{% set isFit = true %}
{% for option in options.selectionOptionValues %}
{% set defaultFitProduct = option.productCode %}
{{option.optionLabel|upper}}
{% endfor %}
{% endif %}
{% endfor %} {% if isSize and not isWaist %}
Size
{% for variants in item.variantProducts %}
{% if isMultipleColors %}
{% if defaultProduct == variants.baseProductCode %}
{{variants.size}}
{% endif %}
{% elseif isFit %}
{% if defaultFitProduct == variants.baseProductCode %}
{{variants.size}}
{% endif %}
{% else %}
{{variants.size}}
{% endif %}
{% endfor %}
{% endif %}
{% if isWaist %}
Waist
{% for waists in item.waistData.items %}
{% if isMultipleColors %}
{% if defaultProduct == waists.code %}
{% for lstItem in waists.list %}
{{lstItem}}
{% endfor %}
{% endif %}
{% elseif isFit %}
{% if defaultFitProduct == waists.code %}
{% for lstItem in waists.list %}
{{lstItem}}
{% endfor %}
{% endif %}
{% else %}
{% for lstItem in waists.list %}
{{lstItem}}
{% endfor %}
{% endif %}
{% endfor %}
Inseam
{% endif %}
{% if not loop.last %}
{% endif %}
{% endfor %}
{{bundles.length}} items Selected {{totalFormatted}}
ADD All ITEMS TO CART