{% block component_line_item_quantity %} {% if redirectTo is not defined %} {% set redirectTo = 'frontend.checkout.cart.page' %} {% endif %} {% if formAction is not defined %} {% set formAction = path('frontend.checkout.line-item.change-quantity', { id: lineItem.id }) %} {% endif %} {% if showQuantitySelect is not defined %} {% set showQuantitySelect = true %} {% endif %} {# @var quantityInformation \Shopware\Core\Checkout\Cart\LineItem\QuantityInformation #} {% set quantityInformation = lineItem.quantityInformation %} {% if quantityInformation.maxPurchase %} {% set maxQuantity = quantityInformation.maxPurchase %} {% else %} {% set maxQuantity = config('core.cart.maxQuantity') %} {% endif %} {% set DOWNLOAD_STATE = constant('Shopware\\Core\\Content\\Product\\State::IS_DOWNLOAD') %} {% set isDigital = lineItem.states is defined and DOWNLOAD_STATE in lineItem.states and (DOWNLOAD_STATE not in lineItem.states or quantityInformation.maxPurchase === 1) %} {% block component_line_item_quantity_inner %}
{% block component_line_item_quantity_label %} {% endblock %} {% block component_line_item_quantity_select_wrapper %}
{% if showQuantitySelect and lineItem.quantityInformation and lineItem.stackable and nestingLevel < 1 %} {% block component_line_item_quantity_select_form %} {% set autoSubmitOptions = { delayChangeEvent: 800, autoFocus: false, } %}
{% block component_line_item_quantity_redirect %} {% endblock %} {% block component_line_item_quantity_select %}
{% block component_line_item_quantity_select_input %} {{ 'component.product.quantitySelect.legend'|trans|striptags }} {% set quantitySelectorOptions = { ariaLiveUpdateMode: 'onload', } %}
{# Aria live region to tell the screen reader what quantity amount is selected when changing the quantity. #} {% block component_line_item_quantity_select_live_area %}
{# The live region content is generated by the `QuantitySelectorPlugin` #}
{% endblock %} {% endblock %}
{% endblock %}
{% endblock %} {% else %} {% block component_line_item_quantity_display %}
{{ lineItem.quantity }}
{% endblock %} {% endif %}
{% endblock %}
{% endblock %} {% endblock %}