{% if options is not defined or options is null %}
{% set options = {
'price02OpenTag': '<span class="price02-default">',
'price02CloseTag' : '</span>',
} %}
{% endif -%}
{# {{ options.price02OpenTag | raw }} #}
{% if TaxManagementConfig.isIncludeTaxFlag is not null and TaxManagementConfig.isIncludeTaxFlag == false -%}
{% if Product.hasProductClass %}
{% if Product.getPrice02Min == Product.getPrice02Max %}
{{ Product.getPrice02Min|price }}
{% else %}
{{ Product.getPrice02Min|price }} ~ {{ Product.getPrice02Max|price }}
{% endif %}
{% else %}
{{ Product.getPrice02Min|price }}
{% endif %}
{% else -%}
{% if Product.hasProductClass %}
{% if Product.getPrice02Min == Product.getPrice02Max %}
{{ Product.getPrice02IncTaxMin|price }}
{% else %}
{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
{% endif %}
{% else %}
{{ Product.getPrice02IncTaxMin|price }}
{% endif %}
{% endif -%}
{# {{ options.price02CloseTag | raw }} #}
{% if isIncludeDiscountRate is defined and isIncludeDiscountRate is not null and isIncludeDiscountRate == true -%}
{{ include('@TaxManagement42/default/Product/list_discount_rate.twig') }}
{% endif -%}