<ul class="c-list-link-01">
{% set flag = 'false' %}
{% for product in Comparison %}
{% set shape_id = null %}
{% set power_id = null %}
{% set system_id = null %}
{# 商品のカテゴリから形状ID・馬力ID・システムIDを抽出 #}
{% for ProductCategory in product.ProductCategories %}
{% if ProductCategory.Category.getParent and ProductCategory.Category.getParent.id == 51 %}
{% set shape_id = ProductCategory.Category.id %}
{% elseif ProductCategory.Category.getParent and ProductCategory.Category.getParent.id == 61 %}
{% set power_id = ProductCategory.Category.id %}
{% elseif ProductCategory.Category.getParent and ProductCategory.Category.getParent.id == 81 %}
{% set system_id = ProductCategory.Category.id %}
{% endif %}
{% endfor %}
{# 条件に合致する商品だけ表示(メーカー + 形状 + 馬力 + システム) #}
{% if shape_id == CatShapeId and power_id == CatPowerId and system_id == CatSystemId %}
{% for ProductCategory in product.ProductCategories %}
{% if ProductCategory.Category.id == cid and product.code_min != ProductCode %}
<li>
<a href="/products/detail/{{ product.id }}?shape={{ CatShapeId }}&power={{ CatPowerId }}&system={{ CatSystemId }}">
{{ product.code_min }}
</a>
</li>
{% set flag = 'true' %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% if flag == 'false' %}
<li>該当なし</li>
{% endif %}
</ul>