app/template/user_data/tel_service_product.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% set body_class = 'product_page' %}
  3. {% block javascript %}
  4.     <script>
  5.         (function(d) {
  6.             var config = {
  7.             kitId: 'pki8bzh',
  8.             scriptTimeout: 3000,
  9.             async: true
  10.             },
  11.             h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,"")+" wf-inactive";},config.scriptTimeout),tk=d.createElement("script"),f=false,s=d.getElementsByTagName("script")[0],a;h.className+=" wf-loading";tk.src='https://use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!="complete"&&a!="loaded")return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
  12.         })(document);
  13.     </script>
  14.     
  15.     <script>
  16.         eccube.productsClassCategories = {
  17.             {% for Product in pagination %}
  18.             "{{ Product.id|escape('js') }}": {{ class_categories_as_json(Product)|raw }}{% if loop.last == false %}, {% endif %}
  19.             {% endfor %}
  20.         };
  21.         $(function() {
  22.             // 検索条件を追加
  23.             $('.btn-condition').click(function() {
  24.                 $('#active_idx').val($(this).index());
  25.             });
  26.             $('.form-check-input').change(function() {
  27.                 $("#form1").submit();
  28.             });
  29.             // 表示件数を変更
  30.             $('.disp-number').change(function() {
  31.                 var dispNumber = $(this).val();
  32.                 $('#disp_number').val(dispNumber);
  33.                 $('#pageno').val(1);
  34.                 $("#form1").submit();
  35.             });
  36.             // 並び順を変更
  37.             $('.order-by').change(function() {
  38.                 var orderBy = $(this).val();
  39.                 $('#orderby').val(orderBy);
  40.                 $('#pageno').val(1);
  41.                 $("#form1").submit();
  42.             });
  43.             $('.add-cart').on('click', function(e) {
  44.                 var $form = $(this).parents('li').find('form');
  45.                 // 規格1フォームの必須チェック
  46.                 var $form_select = $form.parent().find('.form-select');
  47.                 if ($form_select.val() == '__unselected' || $form_select.val() == '') {
  48.                     $form_select[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
  49.                     setTimeout(function() {
  50.                         loadingOverlay('hide');
  51.                     }, 100);
  52.                     return true;
  53.                 } else {
  54.                     $form_select[0].setCustomValidity('');
  55.                 }
  56.                 // 個数フォームのチェック
  57.                 var $quantity = $form.parent().find('.quantity');
  58.                 if ($quantity.val() < 1) {
  59.                     $quantity[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');
  60.                     setTimeout(function() {
  61.                         loadingOverlay('hide');
  62.                     }, 100);
  63.                     return true;
  64.                 } else {
  65.                     $quantity[0].setCustomValidity('');
  66.                 }
  67.                 e.preventDefault();
  68.                 $.ajax({
  69.                     url: $form.attr('action'),
  70.                     type: $form.attr('method'),
  71.                     data: $form.serialize(),
  72.                     dataType: 'json',
  73.                     beforeSend: function(xhr, settings) {
  74.                         // Buttonを無効にする
  75.                         $('.add-cart').prop('disabled', true);
  76.                     }
  77.                 }).done(function(data) {
  78.                     // レスポンス内のメッセージをalertで表示
  79.                     $.each(data.messages, function() {
  80.                         $('#ec-modal-header').text(this);
  81.                     });
  82.                     $('.ec-modal').show()
  83.                     // カートブロックを更新する
  84.                     $.ajax({
  85.                         url: '{{ url('block_cart') }}',
  86.                         type: 'GET',
  87.                         dataType: 'html'
  88.                     }).done(function(html) {
  89.                         $('.ec-headerRole__cart').html(html);
  90.                     });
  91.                 }).fail(function(data) {
  92.                     alert('{{ 'カートへの追加に失敗しました。'|trans }}');
  93.                 }).always(function(data) {
  94.                     // Buttonを有効にする
  95.                     $('.add-cart').prop('disabled', false);
  96.                 });
  97.             });
  98.             $('.favorite').click(function(event) {
  99.                 if ($(this).attr('disabled') != 'disabled') {
  100.                     $(this).closest('li.product').find('.list-add-favorite').submit();
  101.                 }
  102.             });
  103.         });
  104.         $('.ec-modal-wrap').on('click', function(e) {
  105.             // モーダル内の処理は外側にバブリングさせない
  106.             e.stopPropagation();
  107.         });
  108.         $('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {
  109.             $('.ec-modal').hide()
  110.         });
  111.     </script>
  112.     <script>
  113.         $(document).ready(function(){
  114.             $(".left .list-btn .btn-condition").eq($('#active_idx').val()).addClass('active');
  115.             $(".right .item").eq($('#active_idx').val()).addClass('active');
  116.             $(".left .list-btn .btn-condition").click(function(e){
  117.                 if (!$(this).hasClass("active")) {
  118.                     var tabNum = $(this).index();
  119.                     var nthChild = tabNum+1;
  120.                     $(".left .list-btn .btn-condition.active").removeClass("active");
  121.                     $(this).addClass("active");
  122.                     $(".right .item.active").removeClass("active");
  123.                     $(".right .item:nth-child("+nthChild+")").addClass("active");
  124.                 }
  125.             });
  126.             $(".reset").click(function(e){
  127.                 $(".right .item input[type='checkbox']:checked").prop('checked', false);
  128.                 $("#form1").submit();
  129.             });
  130.         });
  131.     </script>
  132. {% endblock %}
  133. {% block main %}
  134.     <form name="form1" id="form1" method="get" action="?">
  135.         {% for item in search_form %}
  136.             {% if item.vars.value is not iterable %}
  137.                 <input type="hidden" id="{{ item.vars.id }}"
  138.                 name="{{ item.vars.full_name }}"
  139.                 {% if item.vars.value is not empty %}value="{{ item.vars.value }}" {% endif %}/>
  140.             {% endif %}
  141.         {% endfor %}
  142.     </form>
  143.     <div class="ec-featured-product-page">
  144.         <div class="ec-banner">
  145.             <div class="ec-banner__inner">
  146.                 <div class="inner">
  147.                     <h2>
  148.                         電話完結型サービス
  149.                     </h2>
  150.                 </div>
  151.             </div>
  152.             <div class="ec-breadcrumb">
  153.                 <ul class="ec-breadcrumb__menu">
  154.                     <li class="ec-breadcrumb__item"><a href="{{ url('homepage') }}">TOP</a></li>
  155.                     <li class="ec-breadcrumb__item"><span>></span></li>
  156.                     <li class="ec-breadcrumb__item"><p>電話完結型サービス</p></li>
  157.                 </ul>
  158.             </div>
  159.         </div>
  160.         <div class="ec-product-main">
  161.             <div class="ec-product__inner">
  162.                 <div class="inner">
  163.                     {# <div class="group-text">
  164.                         <p>
  165.                             標準設置工事費は、配管テープ巻き(化粧カバーなし)、配管の長さ4メートル以内となります。<br />
  166.                             詳細な工事費用をお見積り希望の方は<a href="{{ url('contact') }}?type=1">こちら</a>からお問合せください。
  167.                         </p>
  168.                         <p class="v2">
  169.                             グランドオープン記念!今ならエアコン本体の購入がお得です!エアコン本体のご予算、おすすめ順、機能などから、お好みのエアコンをお選びください。そのほか、エアコンの工事や取り付けや交換もエアココにお任せくださいませ。
  170.                         </p>
  171.                     </div> #}
  172.                     <div class="ec-reCommended">
  173.                         <div class="message">
  174.                             <div class="group">
  175.                                 <img src="{{ asset('assets/img/common/kuma-student.png')}}" alt="">
  176.                             </div>
  177.                             <div class="mess">
  178.                                 <p>ネット購入が苦手・心配な方でも安心!<br />
  179.                                 下記の商品はお電話での購入が可能です。お気軽にお問い合わせください!</p>
  180.                             </div>
  181.                         </div>
  182.                     </div>
  183.                     {# TODO: category product #}
  184.                     {% set is_first = true %}
  185.                     {% for recommendCatId in recommendCats %}
  186.                         {% if recommendCatId == 30 %}
  187.                             {% if is_first == true %}
  188.                             {% set is_first = false %}
  189.                             <div class="ec-product__group first">
  190.                             {% else %}
  191.                             <div class="ec-product__group">
  192.                             {% endif %}
  193.                                 <div class="ec-product__poster">
  194.                                     <img src="{{ asset('assets/img/product/recomment-') }}{{ recommendCatId }}.png">
  195.                                 </div>
  196.                                 {% if pagination.totalItemCount > 0 %}
  197.                                     <ul class="list-product-v2">
  198.                                         {% for Product in pagination %}
  199.                                             {% set in_cat = false %}
  200.                                             {% for ProductCategory in Product.ProductCategories %}
  201.                                                 {% if ProductCategory.Category.id == recommendCatId %}
  202.                                                     {% set in_cat = true %}
  203.                                                 {% endif %}
  204.                                             {% endfor %}
  205.                                             {% if in_cat == true and Product.id <= 106 %}
  206.                                                 {% set num_1 = (Product.getPrice02IncTaxMin / 1000) %}
  207.                                                 {% set num_2 = Product.getPrice02IncTaxMin % 1000 %}
  208.                                                 {% set num_2_formatted = num_2 %}
  209.                                                 {% if num_2_formatted < 100 %}
  210.                                                     {% set num_2_formatted = "0" ~ num_2_formatted %}
  211.                                                 {% endif %}
  212.                                                 <li class="product-v2">
  213.                                                     <a href="{{ url('product_detail', {'id': Product.id}) }}">
  214.                                                         <span class="circle">
  215.                                                             <img src="{{ asset('assets/img/common/ic-arrow-blue.png') }}" alt="">
  216.                                                         </span>
  217.                                                         <div class="group">
  218.                                                             <div class="code">
  219.                                                                 {% if Product.ProductCategories is not empty %}
  220.                                                                     {% for ProductCategory in Product.ProductCategories %}
  221.                                                                         {% if ProductCategory.Category.Parent is not empty %}
  222.                                                                             {% set parentCat = ProductCategory.Category.Parent %}
  223.                                                                             {% if parentCat.id == 19 %}
  224.                                                                                 <span>主に{{ ProductCategory.Category.name }}</span>
  225.                                                                             {% endif %}
  226.                                                                         {% endif %}
  227.                                                                     {% endfor %}
  228.                                                                 {% endif %}
  229.                                                                 <p>{{ Product.code_min }}{% if Product.code_min != Product.code_max %} ~ {{ Product.code_max }}{% endif %}</p>
  230.                                                             </div>
  231.                                                             <span class="text">標準工事費込み</span>
  232.                                                             <div class="price">
  233.                                                                 <p class="price__val">
  234.                                                                     <span class="yen" title="¥">¥</span><span class="num-1" title="{{ num_1|round(0, 'floor') }},">{{ num_1|round(0, 'floor') }},</span><span class="num-2" title="{{ num_2_formatted }}">{{ num_2_formatted }}</span>
  235.                                                                 </p>
  236.                                                                 <span class="price__tax">(税込)</span>
  237.                                                             </div>
  238.                                                         </div>
  239.                                                     </a>
  240.                                                 </li>
  241.                                             {% endif %}
  242.                                         {% endfor %}
  243.                                     </ul>
  244.                                 {% endif %}
  245.                             </div>
  246.                             <div class="ec-product__group">
  247.                                 <div class="ec-product__poster">
  248.                                     <img src="{{ asset('assets/img/product/recomment-') }}{{ recommendCatId }}-2.png">
  249.                                 </div>
  250.                                 {% if pagination.totalItemCount > 0 %}
  251.                                     <ul class="list-product-v2">
  252.                                         {% for Product in pagination %}
  253.                                             {% set in_cat = false %}
  254.                                             {% for ProductCategory in Product.ProductCategories %}
  255.                                                 {% if ProductCategory.Category.id == recommendCatId %}
  256.                                                     {% set in_cat = true %}
  257.                                                 {% endif %}
  258.                                             {% endfor %}
  259.                                             {% if in_cat == true and Product.id > 106 %}
  260.                                                 {% set num_1 = Product.getPrice02IncTaxMin / 1000 %}
  261.                                                 {% set num_2 = Product.getPrice02IncTaxMin % 1000 %}
  262.                                                 {% set num_2_formatted = num_2 %}
  263.                                                 {% if num_2_formatted < 100 %}
  264.                                                     {% set num_2_formatted = "0" ~ num_2_formatted %}
  265.                                                 {% endif %}
  266.                                                 <li class="product-v2">
  267.                                                     <a href="{{ url('product_detail', {'id': Product.id}) }}">
  268.                                                         <span class="circle">
  269.                                                             <img src="{{ asset('assets/img/common/ic-arrow-blue.png') }}" alt="">
  270.                                                         </span>
  271.                                                         <div class="group">
  272.                                                             <div class="code">
  273.                                                                 {% if Product.ProductCategories is not empty %}
  274.                                                                     {% for ProductCategory in Product.ProductCategories %}
  275.                                                                         {% if ProductCategory.Category.Parent is not empty %}
  276.                                                                             {% set parentCat = ProductCategory.Category.Parent %}
  277.                                                                             {% if parentCat.id == 19 %}
  278.                                                                                 <span>主に{{ ProductCategory.Category.name }}</span>
  279.                                                                             {% endif %}
  280.                                                                         {% endif %}
  281.                                                                     {% endfor %}
  282.                                                                 {% endif %}
  283.                                                                 <p>{{ Product.code_min }}{% if Product.code_min != Product.code_max %} ~ {{ Product.code_max }}{% endif %}</p>
  284.                                                             </div>
  285.                                                             <span class="text">標準工事費込み</span>
  286.                                                             <div class="price">
  287.                                                                 <p class="price__val">
  288.                                                                     <span class="yen" title="¥">¥</span><span class="num-1" title="{{ num_1|round(0, 'floor') }},">{{ num_1|round(0, 'floor') }},</span><span class="num-2" title="{{ num_2_formatted }}">{{ num_2_formatted }}</span>
  289.                                                                 </p>
  290.                                                                 <span class="price__tax">(税込)</span>
  291.                                                             </div>
  292.                                                         </div>
  293.                                                     </a>
  294.                                                 </li>
  295.                                             {% endif %}
  296.                                         {% endfor %}
  297.                                     </ul>
  298.                                 {% endif %}
  299.                             </div>
  300.                         {% else %}
  301.                             {% if is_first == true %}
  302.                             {% set is_first = false %}
  303.                             <div class="ec-product__group first">
  304.                             {% else %}
  305.                             <div class="ec-product__group">
  306.                             {% endif %}
  307.                                 <div class="ec-product__poster">
  308.                                     <img src="{{ asset('assets/img/product/recomment-') }}{{ recommendCatId }}.png">
  309.                                 </div>
  310.                                 {% if pagination.totalItemCount > 0 %}
  311.                                     <ul class="list-product-v2">
  312.                                         {% for Product in pagination %}
  313.                                             {% set in_cat = false %}
  314.                                             {% for ProductCategory in Product.ProductCategories %}
  315.                                                 {% if ProductCategory.Category.id == recommendCatId %}
  316.                                                     {% set in_cat = true %}
  317.                                                 {% endif %}
  318.                                             {% endfor %}
  319.                                             {% if in_cat == true %}
  320.                                                 {% set num_1 = Product.getPrice02IncTaxMin / 1000 %}
  321.                                                 {% set num_2 = Product.getPrice02IncTaxMin % 1000 %}
  322.                                                 {% set num_2_formatted = num_2 %}
  323.                                                 {% if num_2_formatted < 100 %}
  324.                                                     {% set num_2_formatted = "0" ~ num_2_formatted %}
  325.                                                 {% endif %}
  326.                                                 <li class="product-v2">
  327.                                                     <a href="{{ url('product_detail', {'id': Product.id}) }}">
  328.                                                         <span class="circle">
  329.                                                             <img src="{{ asset('assets/img/common/ic-arrow-blue.png') }}" alt="">
  330.                                                         </span>
  331.                                                         <div class="group">
  332.                                                             <div class="code">
  333.                                                                 {% if Product.ProductCategories is not empty %}
  334.                                                                     {% for ProductCategory in Product.ProductCategories %}
  335.                                                                         {% if ProductCategory.Category.Parent is not empty %}
  336.                                                                             {% set parentCat = ProductCategory.Category.Parent %}
  337.                                                                             {% if parentCat.id == 19 %}
  338.                                                                                 <span>主に{{ ProductCategory.Category.name }}</span>
  339.                                                                             {% endif %}
  340.                                                                         {% endif %}
  341.                                                                     {% endfor %}
  342.                                                                 {% endif %}
  343.                                                                 <p>{{ Product.code_min }}{% if Product.code_min != Product.code_max %} ~ {{ Product.code_max }}{% endif %}</p>
  344.                                                             </div>
  345.                                                             <span class="text">標準工事費込み</span>
  346.                                                             <div class="price">
  347.                                                                 <p class="price__val">
  348.                                                                     <span class="yen" title="¥">¥</span><span class="num-1" title="{{ num_1|round(0, 'floor') }},">{{ num_1|round(0, 'floor') }},</span><span class="num-2" title="{{ num_2_formatted }}">{{ num_2_formatted }}</span>
  349.                                                                 </p>
  350.                                                                 <span class="price__tax">(税込)</span>
  351.                                                             </div>
  352.                                                         </div>
  353.                                                     </a>
  354.                                                 </li>
  355.                                             {% endif %}
  356.                                         {% endfor %}
  357.                                     </ul>
  358.                                 {% endif %}
  359.                             </div>
  360.                         {% endif %}
  361.                         
  362.                     {% endfor %}
  363.                 </div>
  364.             </div>
  365.         </div>
  366.     </div>
  367. {% endblock %}