app/template/default/Product/detail.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% extends 'default_frame.twig' %}
  9. {% set body_class = 'product_page' %}
  10. {% block stylesheet %}
  11.     <style>
  12.         .slick-slider {
  13.             margin-bottom: 30px;
  14.         }
  15.         .slick-dots {
  16.             position: absolute;
  17.             bottom: -45px;
  18.             display: block;
  19.             width: 100%;
  20.             padding: 0;
  21.             list-style: none;
  22.             text-align: center;
  23.         }
  24.         .slick-dots li {
  25.             position: relative;
  26.             display: inline-block;
  27.             width: 20px;
  28.             height: 20px;
  29.             margin: 0 5px;
  30.             padding: 0;
  31.             cursor: pointer;
  32.         }
  33.         .slick-dots li button {
  34.             font-size: 0;
  35.             line-height: 0;
  36.             display: block;
  37.             width: 20px;
  38.             height: 20px;
  39.             padding: 5px;
  40.             cursor: pointer;
  41.             color: transparent;
  42.             border: 0;
  43.             outline: none;
  44.             background: transparent;
  45.         }
  46.         .slick-dots li button:hover,
  47.         .slick-dots li button:focus {
  48.             outline: none;
  49.         }
  50.         .slick-dots li button:hover:before,
  51.         .slick-dots li button:focus:before {
  52.             opacity: 1;
  53.         }
  54.         .slick-dots li button:before {
  55.             content: " ";
  56.             line-height: 20px;
  57.             position: absolute;
  58.             top: 0;
  59.             left: 0;
  60.             width: 12px;
  61.             height: 12px;
  62.             text-align: center;
  63.             opacity: .25;
  64.             background-color: black;
  65.             border-radius: 50%;
  66.         }
  67.         .slick-dots li.slick-active button:before {
  68.             opacity: .75;
  69.             background-color: black;
  70.         }
  71.         .slick-dots li button.thumbnail img {
  72.             width: 0;
  73.             height: 0;
  74.         }
  75.     </style>
  76. {% endblock %}
  77. {% block javascript %}
  78.     <script>
  79.         eccube.classCategories = {{ class_categories_as_json(Product)|raw }};
  80.         // 規格2に選択肢を割り当てる。
  81.         function fnSetClassCategories(form, classcat_id2_selected) {
  82.             var $form = $(form);
  83.             var product_id = $form.find('input[name=product_id]').val();
  84.             var $sele1 = $form.find('select[name=classcategory_id1]');
  85.             var $sele2 = $form.find('select[name=classcategory_id2]');
  86.             eccube.setClassCategories($form, product_id, $sele1, $sele2, classcat_id2_selected);
  87.         }
  88.         {% if form.classcategory_id2 is defined %}
  89.         fnSetClassCategories(
  90.             $('#form1'), {{ form.classcategory_id2.vars.value|json_encode|raw }}
  91.         );
  92.         {% elseif form.classcategory_id1 is defined %}
  93.         eccube.checkStock($('#form1'), {{ Product.id }}, {{ form.classcategory_id1.vars.value|json_encode|raw }}, null);
  94.         {% endif %}
  95.     </script>
  96.     <script>
  97.         $(function() {
  98.             // bfcache無効化
  99.             $(window).bind('pageshow', function(event) {
  100.                 if (event.originalEvent.persisted) {
  101.                     location.reload(true);
  102.                 }
  103.             });
  104.             // Core Web Vital の Cumulative Layout Shift(CLS)対策のため
  105.             // img タグに width, height が付与されている.
  106.             // 630px 未満の画面サイズでは縦横比が壊れるための対策
  107.             // see https://github.com/EC-CUBE/ec-cube/pull/5023
  108.             $('.ec-grid2__cell').hide();
  109.             var removeSize = function () {
  110.                 $('.slide-item').height('');
  111.                 $('.slide-item img')
  112.                     .removeAttr('width')
  113.                     .removeAttr('height')
  114.                     .removeAttr('style');
  115.             };
  116.             var slickInitial = function(slick) {
  117.                 $('.ec-grid2__cell').fadeIn(1500);
  118.                 var baseHeight = $(slick.target).height();
  119.                 var baseWidth = $(slick.target).width();
  120.                 var rate = baseWidth / baseHeight;
  121.                 $('.slide-item').height(baseHeight * rate); // 余白を削除する
  122.                 // transform を使用することでCLSの影響を受けないようにする
  123.                 $('.slide-item img')
  124.                     .css(
  125.                         {
  126.                             'transform-origin': 'top left',
  127.                             'transform': 'scaleY(' + rate + ')',
  128.                             'transition': 'transform .1s'
  129.                         }
  130.                     );
  131.                 // 正しいサイズに近くなったら属性を解除する
  132.                 setTimeout(removeSize, 500);
  133.             };
  134.             $('.item_visual').on('init', slickInitial);
  135.             // リサイズ時は CLS の影響を受けないため属性を解除する
  136.             $(window).resize(removeSize);
  137.             $('.item_visual').slick({
  138.                 dots: false,
  139.                 arrows: false,
  140.                 responsive: [{
  141.                     breakpoint: 768,
  142.                     settings: {
  143.                         dots: true
  144.                     }
  145.                 }]
  146.             });
  147.             $('.slideThumb').on('click', function() {
  148.                 var index = $(this).attr('data-index');
  149.                 $('.item_visual').slick('slickGoTo', index, false);
  150.             })
  151.         });
  152.     </script>
  153.     <script>
  154.         $(function() {
  155.             $('.add-cart').on('click', function(event) {
  156.                 {% if form.classcategory_id1 is defined %}
  157.                 // 規格1フォームの必須チェック
  158.                 if ($('#classcategory_id1').val() == '__unselected' || $('#classcategory_id1').val() == '') {
  159.                     $('#classcategory_id1')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
  160.                     return true;
  161.                 } else {
  162.                     $('#classcategory_id1')[0].setCustomValidity('');
  163.                 }
  164.                 {% endif %}
  165.                 {% if form.classcategory_id2 is defined %}
  166.                 // 規格2フォームの必須チェック
  167.                 if ($('#classcategory_id2').val() == '__unselected' || $('#classcategory_id2').val() == '') {
  168.                     $('#classcategory_id2')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
  169.                     return true;
  170.                 } else {
  171.                     $('#classcategory_id2')[0].setCustomValidity('');
  172.                 }
  173.                 {% endif %}
  174.                 // 個数フォームのチェック
  175.                 if ($('#quantity').val() < 1) {
  176.                     $('#quantity')[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');
  177.                     return true;
  178.                 } else {
  179.                     $('#quantity')[0].setCustomValidity('');
  180.                 }
  181.                 event.preventDefault();
  182.                 $form = $('#form1');
  183.                 $.ajax({
  184.                     url: $form.attr('action'),
  185.                     type: $form.attr('method'),
  186.                     data: $form.serialize(),
  187.                     dataType: 'json',
  188.                     beforeSend: function(xhr, settings) {
  189.                         // Buttonを無効にする
  190.                         $('.add-cart').prop('disabled', true);
  191.                     }
  192.                 }).done(function(data) {
  193.                     // レスポンス内のメッセージをalertで表示
  194.                     $.each(data.messages, function() {
  195.                         $('#ec-modal-header').text(this);
  196.                     });
  197.                     $('.ec-modal').show()
  198.                     // カートブロックを更新する
  199.                     $.ajax({
  200.                         url: "{{ url('block_cart') }}",
  201.                         type: 'GET',
  202.                         dataType: 'html'
  203.                     }).done(function(html) {
  204.                         $('.ec-headerRole__cart').html(html);
  205.                     });
  206.                 }).fail(function(data) {
  207.                     alert('{{ 'カートへの追加に失敗しました。'|trans }}');
  208.                 }).always(function(data) {
  209.                     // Buttonを有効にする
  210.                     $('.add-cart').prop('disabled', false);
  211.                     //工事特急券の場合、カートへ移動
  212.                     if ($('.add-cart').hasClass('cart-express')) {
  213.                         location.href = "{{ url('cart') }}";
  214.                     }
  215.                 });
  216.             });
  217.         });
  218.         $('.ec-modal-wrap').on('click', function(e) {
  219.             // モーダル内の処理は外側にバブリングさせない
  220.             e.stopPropagation();
  221.         });
  222.         $('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {
  223.             $('.ec-modal').hide()
  224.         });
  225.     </script>
  226.     <script type="application/ld+json">
  227.     {
  228.         "@context": "https://schema.org/",
  229.         "@type": "Product",
  230.         "name": "{{ Product.name }}",
  231.         "image": [
  232.             {% for img in Product.ProductImage %}
  233.                 "{{ app.request.schemeAndHttpHost }}{{ asset(img, 'save_image') }}"{% if not loop.last %},{% endif %}
  234.             {% else %}
  235.                 "{{ app.request.schemeAndHttpHost }}{{ asset(''|no_image_product, 'save_image') }}"
  236.             {% endfor %}
  237.         ],
  238.         "description": "{{ Product.description_list | default(Product.description_detail) | replace({'\n': '', '\r': ''}) | slice(0,300) }}",
  239.         {% if Product.code_min %}
  240.         "sku": "{{ Product.code_min }}",
  241.         {% endif %}
  242.         "offers": {
  243.             "@type": "Offer",
  244.             "url": "{{ url('product_detail', {'id': Product.id}) }}",
  245.             "priceCurrency": "{{ eccube_config.currency }}",
  246.             "price": {{ Product.getPrice02IncTaxMin ? Product.getPrice02IncTaxMin : 0}},
  247.             "availability": "{{ Product.stock_find ? "InStock" : "OutOfStock" }}"
  248.         }
  249.     }
  250.     </script>
  251.     <script>
  252.         $(function() {
  253.             setTimeout(function() {
  254.                 $('.slider-for').slick({
  255.                     slidesToShow: 1,
  256.                     slidesToScroll: 1,
  257.                     arrows: false,
  258.                     fade: true,
  259.                     asNavFor: '.slider-nav',
  260.                 }).on('init', function(event, slick) {
  261.                     console.log('slider-for đã khởi tạo');
  262.                 });
  263.                 $('.slider-nav').slick({
  264.                     slidesToShow: $('.slider-nav img').length,
  265.                     slidesToScroll: 0,
  266.                     asNavFor: '.slider-for',
  267.                     centerMode: true,
  268.                     focusOnSelect: true
  269.                 });
  270.             }, 300);
  271.         });
  272.     </script>
  273.     <script>
  274.         $(function() {
  275.             $('#favorite-heart').click(function(event) {
  276.                 $('#favorite').click();
  277.             });
  278.         });
  279.     </script>
  280. {% endblock %}
  281. {% block main %}
  282.     {% if Product.id == 1207 %}
  283.         {# 工事特急券 #}
  284.         <div class="ec-featured-product-page">
  285.             <div class="ec-banner">
  286.                 <div class="ec-banner__inner">
  287.                     <div class="inner">
  288.                         <h2>{{ Product.name }}</h2>
  289.                     </div>
  290.                 </div>
  291.                 <div class="ec-breadcrumb">
  292.                     <ul class="ec-breadcrumb__menu">
  293.                         <li class="ec-breadcrumb__item"><a href="{{ url('homepage') }}">TOP</a></li>
  294.                         <li class="ec-breadcrumb__item"><span>></span></li>                           
  295.                         <li class="ec-breadcrumb__item"><p>{{ Product.name }}</p></li>
  296.                     </ul>
  297.                 </div>
  298.             </div>
  299.         </div>
  300.         
  301.         <div class="ec-product-detail-page">
  302.             <div class="ec-inquiry-page">
  303.                 <div class="ec-product-detail-main">
  304.                     <div class="ec-product-detail__inner">
  305.                         <div class="inner">
  306.                             <div class="product-press">
  307.                                 <table>
  308.                                     <tr>
  309.                                         <th width="25%">工事種別</th>
  310.                                         <th width="25%">期間</th>
  311.                                         <th width="25%">追加料金</th>
  312.                                         <th width="25%">備考</th>
  313.                                     </tr>
  314.                                     <tr>
  315.                                         <td>特急工事</td>
  316.                                         <td>1週間以内 </td>
  317.                                         <td>{{ Product.getPrice02Min| number_format(0, ",") }}円(税抜) </td>
  318.                                         <td>万が一期間内に実施できなかった場合は、全額返金保証有</td>
  319.                                     </tr>
  320.                                     <tr>
  321.                                         <td>通常工事</td>
  322.                                         <td>1週間~1ヶ月<br><small>※繁忙期等の混雑状況によります。</small></td>
  323.                                         <td>標準工事費に含む</td>
  324.                                         <td></td>
  325.                                     </tr>
  326.                                 </table>
  327.                                 <p>通常工事は、ご注文をいただいた順にご案内をさせていただきます。お客様の注文状況や工事エリア、繁忙期等により異なりますが、工事特急券をご利用いただいた場合、1週間以内で設置工事が完了するように優先的に工事のご案内をさせていただきます。万が一、1週間以内に設置工事が完了しなかった場合は、工事特急券費用({{ Product.getPrice02Min| number_format(0, ",") }}円)は全額返金させていただきます。</p>
  328.                                 <form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
  329.                                     {% if Product.stock_find %}
  330.                                         <div class="ec-productRole__actions">
  331.                                             {% if form.classcategory_id1 is defined %}
  332.                                                 <div class="ec-select">
  333.                                                     {{ form_row(form.classcategory_id1) }}
  334.                                                     {{ form_errors(form.classcategory_id1) }}
  335.                                                 </div>
  336.                                                 {% if form.classcategory_id2 is defined %}
  337.                                                     <div class="ec-select">
  338.                                                         {{ form_row(form.classcategory_id2) }}
  339.                                                         {{ form_errors(form.classcategory_id2) }}
  340.                                                     </div>
  341.                                                 {% endif %}
  342.                                             {% endif %}
  343.                                             <div class="ec-numberInput" style="display: none;">
  344.                                                 {{ form_widget(form.quantity) }}
  345.                                                 {{ form_errors(form.quantity) }}
  346.                                             </div>
  347.                                         </div>
  348.                                         
  349.                                         <div class="ec-product-detail__group">
  350.                                             <div class="list-btn">
  351.                                                 <a href="{{ url('cart') }}" class="btn btn-back"><span>戻る</span></a>
  352.                                             </div>
  353.                                             <div class="product">
  354.                                                 <div class="right">
  355.                                                     <div class="list-btn">
  356.                                                         <button type="submit" class="cart add-cart cart-express" style="border: none;">
  357.                                                             <span>{{ 'カートに入れる'|trans }}</span>
  358.                                                         </button>
  359.                                                     </div>
  360.                                                 </div>
  361.                                             </div>
  362.                                         </div>
  363.                                         
  364.                                     {% endif %}
  365.                                     {{ form_rest(form) }}
  366.                                 </form>  
  367.                             </div>                   
  368.                         </div>
  369.                     </div>
  370.                 </div>
  371.             </div>
  372.         </div>
  373.     {% else %}
  374.         {% set isTelProduct = false %}
  375.         {% set isLoanProduct = false %}
  376.         {% if Product.ProductCategories is not empty %}
  377.             {% for ProductCategory in Product.ProductCategories %}
  378.                 {% if ProductCategory.Category.id == 117 %}
  379.                     {% set isTelProduct = true %}
  380.                 {% endif %}
  381.                 {% if (ProductCategory.category_id == 118) %}
  382.                     {% set isLoanProduct = true %} 
  383.                 {% endif %}
  384.             {% endfor %}
  385.         {% endif %}
  386.         
  387.         {# 普通商品 #}
  388.         <div class="ec-product-detail-page">
  389.             <div class="ec-inquiry-page">
  390.                 <div class="ec-banner">
  391.                     <div class="ec-breadcrumb">
  392.                         <ul class="ec-breadcrumb__menu">
  393.                             <li class="ec-breadcrumb__item"><a href="{{ url('homepage') }}">TOP</a></li>
  394.                             <li class="ec-breadcrumb__item"><span>></span></li>
  395.                             {% if Product.ProductCategories is not empty %}
  396.                                 {% for ProductCategory in Product.ProductCategories %}
  397.                                     {% if ProductCategory.Category.id == 7 or ProductCategory.Category.id == 8 %}
  398.                                         <li class="ec-breadcrumb__item"><a href="{{ url('product_list') }}?category_id={{ ProductCategory.Category.id }}">{{ ProductCategory.Category.name }}</a></li>
  399.                                         <li class="ec-breadcrumb__item"><span>></span></li>
  400.                                     {% endif %}
  401.                                 {% endfor %}
  402.                             {% endif %}
  403.                            
  404.                             <li class="ec-breadcrumb__item"><p>{{ Product.name }}</p></li>
  405.                         </ul>
  406.                     </div>
  407.                 </div>
  408.                 <div class="ec-product-detail-main">
  409.                     <div class="ec-product-detail__inner">
  410.                         <div class="inner">
  411.                             <div class="ec-product-detail__group">
  412.                                 <div class="product tatami">
  413.                                     <div class="left">
  414.                                         <div class="slider-for">
  415.                                             {% for ProductImage in Product.ProductImage %}
  416.                                                 <img src="{{ asset(ProductImage, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}">
  417.                                             {% else %}
  418.                                                 <img src="{{ asset(''|no_image_product, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}">
  419.                                             {% endfor %}
  420.                                         </div>
  421.                                         <div class="slider-nav">
  422.                                             {% for ProductImage in Product.ProductImage %}
  423.                                                 <img src="{{ asset(ProductImage, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}">
  424.                                             {% else %}
  425.                                                 <img src="{{ asset(''|no_image_product, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}">
  426.                                             {% endfor %}
  427.                                         </div>
  428.                                     </div>
  429.                                     <div class="right">
  430.                                         {% for ProductCategory in Product.ProductCategories %}
  431.                                             {% if ProductCategory.Category.name == "おすすめ" %}
  432.                                             <div class="list-cate v2">
  433.                                                 {% for cate in categories %}
  434.                                                     {% if cate.parent == "機能" %}
  435.                                                         {% if cate.id in recommendCatChild %}
  436.                                                             <img src="{{ asset('assets/img/product/cate-') }}{{cate.id}}.png" alt=""/>
  437.                                                         {% else %}
  438.                                                             <img src="{{ asset('assets/img/product/cate-') }}{{cate.id}}-uc.png" alt=""/>
  439.                                                         {% endif %}
  440.                                                     {% endif %}
  441.                                                 {% endfor %}
  442.                                             </div>
  443.                                             {% endif %}
  444.                                         {% endfor %}
  445.                                         {% if Product.ProductCategories is not empty %}
  446.                                           {% for ProductCategory in Product.ProductCategories %}
  447.                                             {% if ProductCategory.Category.name == "おすすめ" %}
  448.                                               <div class="list-cate v3">
  449.                                                 <div class="year-model">
  450.                                                     {% for cate in categories %}
  451.                                                     {% if cate.parent == "20XXモデル" %}
  452.                                                         {% if cate.id in moderYearCatChild %}
  453.                                                             <img src="{{ asset('assets/img/product/ymodel-') }}{{cate.id}}.png" alt=""/>
  454.                                                         {% endif %}
  455.                                                     {% endif %}
  456.                                                     {% endfor %}
  457.                                                 </div>
  458.                                                 {% for cate in categories %}
  459.                                                     {% if cate.parent == "メーカー" %}
  460.                                                         {% if cate.id in tradeCatChild %}
  461.                                                             <img src="{{ asset('assets/img/product/trademark-') }}{{cate.id}}.png" alt=""/>
  462.                                                         {% endif %}
  463.                                                     {% endif %}
  464.                                                 {% endfor %}
  465.                                               </div>
  466.                                             {% endif %}
  467.                                           {% endfor %}
  468.                                         {% endif %}
  469.                                         <div class="list-cate basic">
  470.                                             {% if Product.ProductCategories is not empty %}
  471.                                                 {% for ProductCategory in Product.ProductCategories %}
  472.                                                     {% if ProductCategory.Category.Parent is not empty %}
  473.                                                         {% set parentCat = ProductCategory.Category.Parent %}
  474.                                                         {% if parentCat.id == 20 and parentCat.id == 21 %}
  475.                                                             {{ ProductCategory.Category.name }}
  476.                                                         {% endif %}
  477.                                                     {% endif %}
  478.                                                 {% endfor %}
  479.                                             {% endif %}
  480.                                         </div>
  481.                                         <div class="title">
  482.                                             <p>{{ Product.name }}</p>
  483.                                         </div>
  484.                                         <div class="price">
  485.                                             {# 通常価格 #}
  486.                                             {# {% if Product.hasProductClass -%}
  487.                                                 <div class="ec-productRole__priceRegular">
  488.                                                     {% if Product.getPrice01Min is not null and Product.getPrice01IncTaxMin == Product.getPrice01IncTaxMax %}
  489.                                                         <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}</span></span>
  490.                                                         <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  491.                                                     {% elseif Product.getPrice01Min is not null and Product.getPrice01Max is not null %}
  492.                                                         <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}~ {{ Product.getPrice01IncTaxMax|price }}</span></span>
  493.                                                         <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  494.                                                     {% endif %}
  495.                                                 </div>
  496.                                             {% else %}
  497.                                                 {% if Product.getPrice01Max is not null %}
  498.                                                     <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:{{ Product.getPrice01IncTaxMin|price }}</span>
  499.                                                     <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  500.                                                 {% endif %}
  501.                                             {% endif %} #}
  502.                                             {# 販売価格 #}
  503.                                             <div class="ec-productRole__price">
  504.                                                 {% if Product.hasProductClass -%}
  505.                                                     {% if Product.getPrice02IncTaxMin == Product.getPrice02IncTaxMax %}
  506.                                                         <p>
  507.                                                             {# <span>¥</span> #}
  508.                                                             {{ Product.getPrice02IncTaxMin|price }}
  509.                                                             <small>(税込)</small>
  510.                                                         </p>
  511.                                                     {% else %}
  512.                                                         <p>
  513.                                                             {# <span>¥</span> #}
  514.                                                             {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
  515.                                                             <small>(税込)</small>
  516.                                                         </p>
  517.                                                     {% endif %}
  518.                                                 {% else %}
  519.                                                     <p>
  520.                                                     {% if recommendCatChild %}                                                         
  521.                                                         {% if(isLoanProduct == true) %}
  522.                                                             {% set priceProduct = ((Product.getPrice02IncTaxMin / 24 / 10) // 1 * 10) %}
  523.                                                             <span class="price-1">月々<span class="ic-yen">¥</span>{{ priceProduct|number_format(0, ",") }}/24回払い</span><br />
  524.                                                             <span>価格: </span>
  525.                                                             <span class="price-2">¥</span>
  526.                                                             <span class="price-2">{{ Product.getPrice02IncTaxMin| number_format(0, ",") }}</span>
  527.                                                             <small>(税込)</small>
  528.                                                             <span class="price-2"> / ¥{{ Product.getPrice02Min| number_format(0, ",") }}</span>
  529.                                                             <small>(税抜)</small>
  530.                                                         {% else %}
  531.                                                             <span>価格: </span>
  532.                                                             <span class="ic-yen">¥</span>
  533.                                                             <span class="price-1">{{ Product.getPrice02IncTaxMin| number_format(0, ",") }}</span>
  534.                                                             <small>(税込)</small>
  535.                                                             <span class="price-2"> / ¥{{ Product.getPrice02Min| number_format(0, ",") }}</span>
  536.                                                             <small>(税抜)</small>
  537.                                                         {% endif %}
  538.                                                         
  539.                                                     {% else %}
  540.                                                         {# <span>¥</span> #}
  541.                                                         {{ Product.getPrice02IncTaxMin|price }}
  542.                                                         <small>(税込)</small>
  543.                                                     {% endif %}
  544.                                                         
  545.                                                     </p>
  546.                                                 {% endif %}
  547.                                             </div>
  548.                                             
  549.                                             
  550.                                         </div>
  551.                                         {% if Product.code_min is not empty %}
  552.                                             <div class="num-product">
  553.                                                 <p>品番</p>
  554.                                                 <span>{{ Product.code_min }}{% if Product.code_min != Product.code_max %} ~ {{ Product.code_max }}{% endif %}</span>
  555.                                             </div>
  556.                                         {% endif %}
  557.                                         
  558.                                         {# <div class="func">
  559.                                             <p>機能</p>
  560.                                             <span>{{ Product.Feature.name }}</span>
  561.                                         </div> #}
  562.                                         
  563.                                         <div class="text">
  564.                                             <p>{{ Product.description_detail|raw|nl2br }}</p>
  565.                                         </div>
  566.                                         <form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
  567.                                             {{ form_widget(form._token) }}
  568.                                             {{ form_widget(form.product_id) }}
  569.                                             {{ form_widget(form.ProductClass) }}
  570.                                             
  571.                                             {% if Product.stock_find %}
  572.                                                 <div class="ec-productRole__actions">
  573.                                                     {% if form.classcategory_id1 is defined %}
  574.                                                         <div class="ec-select">
  575.                                                             {{ form_row(form.classcategory_id1) }}
  576.                                                             {{ form_errors(form.classcategory_id1) }}
  577.                                                         </div>
  578.                                                         {% if form.classcategory_id2 is defined %}
  579.                                                             <div class="ec-select">
  580.                                                                 {{ form_row(form.classcategory_id2) }}
  581.                                                                 {{ form_errors(form.classcategory_id2) }}
  582.                                                             </div>
  583.                                                         {% endif %}
  584.                                                     {% endif %}
  585.                                                     {% if isTelProduct != true %}
  586.                                                         <div class="ec-numberInput"><span>{{ '数量'|trans }}</span>
  587.                                                             {{ form_widget(form.quantity) }}
  588.                                                             {{ form_errors(form.quantity) }}
  589.                                                         </div>
  590.                                                     {% endif %}
  591.                                                 </div>
  592.                                                 <div class="list-btn">
  593.                                                     {% if isTelProduct == true %}
  594.                                                         <a href="tel:080-0222-4466" class="cart cart-tel" style="border: none;">
  595.                                                             <span>{{ '080-0222-4466'|trans }}</span>
  596.                                                         </a>
  597.                                                     {% elseif isLoanProduct == true %}
  598.                                                         <a href="{{ url('loan_examination') }}?id={{ Product.id }}" class="cart cart-loan" style="border: none;">
  599.                                                             <span>{{ '審査のお申込み'|trans }}</span>
  600.                                                         </a>
  601.                                                     {% else %}
  602.                                                         <button type="submit" class="cart add-cart" style="border: none;">
  603.                                                             <span>{{ 'カートに入れる'|trans }}</span>
  604.                                                         </button>
  605.                                                     {% endif %}
  606.                                                     
  607.                                                     {% if is_favorite == false %}
  608.                                                         <a href="javascript:void(0);" id="favorite-heart" class="favorite"><span></span></a>
  609.                                                     {% else %}
  610.                                                         <a href="javascript:void(0);" class="favorite active"><span></span></a>
  611.                                                     {% endif %}
  612.                                                 </div>
  613.                                             {% else %}
  614.                                                 <div class="list-btn">
  615.                                                     <button type="button" class="cart" disabled="disabled">
  616.                                                         {{ 'ただいま品切れ中です。'|trans }}
  617.                                                     </button>
  618.                                                     {% if is_favorite == false %}
  619.                                                         <a href="javascript:void(0);" id="favorite-heart" class="favorite"><span></span></a>
  620.                                                     {% else %}
  621.                                                         <a href="javascript:void(0);" class="favorite active"><span></span></a>
  622.                                                     {% endif %}
  623.                                                 </div>
  624.                                             {% endif %}
  625.                                             {# {{ form_rest(form) }} #}
  626.                                         </form>
  627.                                         <div class="ec-modal">
  628.                                             <div class="ec-modal-overlay">
  629.                                                 <div class="ec-modal-wrap">
  630.                                                     <span class="ec-modal-close"><span class="ec-icon"><img src="{{ asset('assets/icon/cross-dark.svg') }}" alt=""/></span></span>
  631.                                                     <div id="ec-modal-header" class="text-center">{{ 'カートに追加しました。'|trans }}</div>
  632.                                                     <div class="ec-modal-box">
  633.                                                         <div class="ec-role">
  634.                                                             <span class="ec-inlineBtn--cancel">{{ 'お買い物を続ける'|trans }}</span>
  635.                                                             <a href="{{ url('cart') }}" class="ec-inlineBtn--action">{{ 'カートへ進む'|trans }}</a>
  636.                                                         </div>
  637.                                                     </div>
  638.                                                 </div>
  639.                                             </div>
  640.                                         </div>
  641.                                         {% if BaseInfo.option_favorite_product %}
  642.                                             <div style="display: none;">
  643.                                                 <form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post">
  644.                                                     <div class="ec-productRole__btn">
  645.                                                         {% if is_favorite == false %}
  646.                                                             <button type="submit" id="favorite" class="ec-blockBtn--cancel">
  647.                                                                 {{ 'お気に入りに追加'|trans }}
  648.                                                             </button>
  649.                                                         {% else %}
  650.                                                             <button type="submit" id="favorite" class="ec-blockBtn--cancel"
  651.                                                                     disabled="disabled">{{ 'お気に入りに追加済です。'|trans }}
  652.                                                             </button>
  653.                                                         {% endif %}
  654.                                                     </div>
  655.                                                 </form>
  656.                                             </div>
  657.                                         {% endif %}
  658.                                     </div>
  659.                                 </div>
  660.                                 <div class="list-btn">
  661.                                     <a href="{{ url('homepage') }}#construction" class="btn btn-sd"><span>各種工事について</span></a>
  662.                                     <a href="{{ url('contact') }}" class="btn btn-sd"><span>お問い合わせ</span></a>
  663.                                 </div>
  664.                             </div>
  665.                         </div>
  666.                     </div>
  667.                 </div>
  668.             </div>
  669.         </div>
  670.     {% endif %}
  671.     
  672. {% endblock %}