{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% form_theme form 'Form/form_div_layout.twig' %}
{% set Categories = repository('Eccube\\Entity\\Category').getList() %}
<script>
$(function(){
$(".product_btn_search").click(function(){
var strCategoryIds = "";
if($("input[name*='searchChk']:checked").length == 1){
strCategoryIds = "?category_id=" + $("input[name*='searchChk']:checked").val();
}else{
if($("input[name*='searchChk']:checked").length > 1){
$("input[name*='searchChk']:checked").each(function( index ) {
if(strCategoryIds != ""){
strCategoryIds += ",";
}
strCategoryIds += $(this).val();
});
strCategoryIds = "?categories=" + strCategoryIds;
}
}
window.location.href = "{{ url('product_list') }}" + strCategoryIds;
});
$(".product_btn_del").click(function(){
$("input[name*='searchChk']:checked").prop('checked', false);
});
});
</script>
<form method="get" class="searchform" action="{{ path('product_list') }}">
<p class="_title01">キーワード</p>
<div class="ec-headerSearch__keyword">
<div class="ec-input">
{{ form_widget(form.name, {'id': null, 'attr': {'class': 'search-name'}} ) }}
<button class="ec-headerSearch__keywordBtn" type="submit"></button>
</div>
</div>
{% for Category in Categories %}
{% if Category.children|length > 0 %}
{% if Category.id == 19 %}
<h3 class="product_form_title _icon02"><span>こだわり条件から探す</span></h3>
<p class="_title02">商品ステータス</p>
<select class="product_form_select" name="searchSelect{{ Category.id }}">
{% for ChildCategory in Category.children %}
<option value="{{ ChildCategory.id }}">{{ ChildCategory.name }}</option>
{% endfor %}
</select>
{% else %}
<h3 class="product_form_title {% if Category.id == 17 %}_icon01{% endif %}">
<span>{{ Category.name }}</span>
</h3>
<ul class="product_form_checkbox">
{% for ChildCategory in Category.children %}
<li>
<label>
<input type="checkbox" name="searchChk{{ Category.id }}" value="{{ ChildCategory.id }}">{{ ChildCategory.name }}
</label>
</li>
{% endfor %}
</ul>
{% endif %}
{% endif %}
{% endfor %}
<p class="_title02">サイズ</p>
<ul class="product_size_checkbox">
<li>
<input type="checkbox" id="size01">
<label for="size01">ソプラノ</label>
</li>
<li>
<input type="checkbox" id="size02">
<label for="size02">コンサート</label>
</li>
<li>
<input type="checkbox" id="size03">
<label for="size03">テナー</label>
</li>
</ul>
<p class="_title02">ボディタイプ</p>
<select class="product_form_select" id="body_type" name="">
<option value="0">レビュー順</option>
<option value="1">レビュー順</option>
<option value="2">レビュー順</option>
</select>
<p class="_title02 icon01">塗装</p>
<ul class="product_coating_checkbox">
<li>
<input type="checkbox" id="coating01">
<label for="coating01">艶なし(マット)</label>
</li>
<li>
<input type="checkbox" id="coating02">
<label for="coating02">艶あり(グロス)</label>
</li>
</ul>
<p class="_title02">ピックアップ</p>
<select class="product_form_select" id="pickup" name="">
<option value="0">レビュー順</option>
<option value="1">レビュー順</option>
<option value="2">レビュー順</option>
</select>
<p class="_title02">価格帯</p>
<div class="product_form_price">
<select class="product_form_select" id="pickup" name="">
<option value="0">レビュー順</option>
<option value="1">レビュー順</option>
<option value="2">レビュー順</option>
</select><span class="_yen">円</span><span class="_to">〜</span>
<select class="product_form_select" id="pickup" name="">
<option value="0">レビュー順</option>
<option value="1">レビュー順</option>
<option value="2">レビュー順</option>
</select><span class="_yen">円</span>
</div>
<p class="product_btn_search">この条件で絞り込む</p>
<p class="product_btn_del">リセット</p>
</form>