app/template/user_data/delivery.twig line 1

Open in your IDE?
  1. {% extends '@user_data/layout/default_frame.twig' %}
  2. {% block title %}
  3.     配送・送料について | こだわり品質【小ロット1個から】ZEAMI Goods
  4. {% endblock %}
  5. {% block content %}
  6.     <!-- ▼▼ MAIN CONTENTS __________________________________________________________________________________________________ ▼▼ -->
  7.     <main
  8.         id="mainContents">
  9.         <!-- // ++ パンクズ ++ //////////////////////////////////////////////////////////// // -->
  10.         <div id="bread_crumbBloc" class="fades">
  11.             <ul id="breadCrumb" class="fades">
  12.                 <li class="up">
  13.                     <a href="/"><img src="{{ asset('assets/img/icon_home.png') }}" alt="ホーム"></a>
  14.                 </li>
  15.                 <li class="up">
  16.                     ご利用ガイド
  17.                 </li>
  18.                 <li class="up">配送・送料について</li>
  19.             </ul>
  20.             <!-- ///// #breadCrumb +++++ ///// -->
  21.             <!-- ///// +++++ #bread_crumbBloc +++++ ///// -->
  22.         </div>
  23.         <!-- // == MAIN ================================================================================ // -->
  24.         <section
  25.             id="Delivery" class="section_basic">
  26.             <!-- // ++ ページタイトル ++ /////////////////////////////////////////////////////////////// -->
  27.             <div id="section_titleBloc" class="fades twolayout_body">
  28.                 <div id="title_twoLayout">
  29.                     <h3 class="section_title up">配送・送料について</h3>
  30.                     {% if deliveryDiscount.type and (deliveryDiscount.discount) and (deliveryDiscount.type)  %}
  31.                         <p class="title_cap up">商品代金{{deliveryDiscount.MinOrder|price}}円以上で送料{{deliveryDiscount.discount|price}}{{deliveryDiscount.type}}OFFサービス</p>
  32.                     {% endif %}
  33.                     <p class="section_note up">大阪にある自社工房から全世界に発送いたします。<br>
  34.                         ※来店引取時 無料</p>
  35.                 </div>
  36.                 <!-- //// ++++ #title_twoLayout ++++ //// -->
  37.                 <figure id="titlePic" class="two_layout"><img src="{{ asset('/html/user_data/assets/image/delivery_image2.png') }}"></figure>
  38.                 <!-- ///// #section_titleBloc +++++ ///// -->
  39.             </div>
  40.             <!-- // ++ 送料など ++ /////////////////////////////////////////////////////////////// -->
  41.             <div id="Postage" class="one_box">
  42.                 <h3 class="section_title up">送料など</h3>
  43.                 <div id="tableContainer" class="fades">
  44.                     <table id="postageTable" cellpadding="0" cellspacing="0" class="fades">
  45.                         <tbody>
  46.                             <tr>
  47.                                 <th class="carrier" rowspan="2">運送業者</th>
  48.                                 <th class="postage_price separator" colspan="4">配送料金</th>
  49.                                 <th class="postage_type" rowspan="2">配達日数<br>目安</th>
  50.                                 <th class="postage_type" rowspan="2">到着日<br>指定</th>
  51.                                 <th class="postage_type" rowspan="2">到着時間<br>指定</th>
  52.                                 <th class="postage_type" rowspan="2">代金引換</th>
  53.                                 <th class="postage_type" rowspan="2">配達形式</th>
  54.                             </tr>
  55.                             <tr>
  56.                                 <th class="postage_price">全国</th>
  57.                                 <th class="postage_price">北海道</th>
  58.                                 <th class="postage_price">沖縄</th>
  59.                                 <th class="postage_price separator">離島</th>
  60.                             </tr>
  61.                             {% for delivery in deliveries %}
  62.                                 <tr>
  63.                                     <td class="carrier">{{delivery.name}}</td>
  64.                                     <td class="postage_price">{{delivery.nationwide ? delivery.nationwide|price : '-'}}</td>
  65.                                     <td class="postage_price">
  66.         
  67.                                             {% for item in delivery.DeliveryFees %}
  68.                                                 {% if item.Pref.name == "北海道" %}
  69.                                                     {{item.fee is defined and item.fee is not null and item.fee|trim != '' ? item.fee|price : '-'}}
  70.                                                 {% endif %}
  71.                                             {% endfor %}
  72.                                     </td>
  73.                                     <td class="postage_price">
  74.                                             {% for item in delivery.DeliveryFees %}
  75.                                                 {% if item.Pref.name == "沖縄県" or item.Pref.name == "沖縄" %}
  76.                                                     {{item.fee is defined and item.fee is not null and item.fee|trim != '' ? item.fee|price : '-'}}
  77.                                                 {% endif %}
  78.                                             {% endfor %}
  79.                                     </td>
  80.                                     <td class="postage_price separator"> {{delivery.islands is same as(0) ? 'Ask' : (delivery.islands ? delivery.islands|price : '-')}}</td>
  81.                                     <td>{{delivery.delivery_date}}</td>
  82.                                     <td>{{delivery.arrive_date ? '◯' : '×'}}</td>
  83.                                     <td class="postage_type">
  84.                                         {% if delivery.DeliveryTimes|length > 0 %}
  85.                                             {% for time in delivery.DeliveryTimes %}
  86.                                                 {{ time.delivery_time }} <br>
  87.                                             {% endfor %}
  88.                                         {% else %}
  89.                                         {{ '×' }}
  90.                                         {% endif %}
  91.                                     </td>
  92.                                     <td>{{delivery.pay_cash ? '◯' : '×'}}</td>
  93.                                     <td>{{delivery.delivery_type}}</td>
  94.                                 </tr>
  95.                             {% endfor %}
  96.                             <tr>
  97.                                 <td class="carrier">海外発送</td>
  98.                                 <td class="postage_price" colspan="4" style="border-right: 4px solid #014646">{{minInternationalFee ? (minInternationalFee|price ~ '〜') : '-'}}</td>
  99.                                 <td class="postage_price" colspan="5"></td>
  100.                             </tr>
  101.                         </tbody>
  102.                     </table>
  103.                 </div>
  104.                 <div style="margin-top: 30px">※一部の地域(離島等)はご注文後に正式な送料をご連絡させていただく場合がございます。予めご了承ください。</div>
  105.                 <!-- //// ++++ #tableContainer ++++ //// -->
  106.                 <!-- ///// #Postage +++++ ///// -->
  107.             </div>
  108.             <!-- // ++ お届け日数について ++ /////////////////////////////////////////////////////////////// -->
  109.             <div id="Postage" class="one_box">
  110.                 <h3 class="section_title up">お届け日数について</h3>
  111.                 <p class="title_cap up">平常配送日数目安</p>
  112.                 <ul
  113.                     id="postage_infoList">
  114.                     {% for delivery in deliveries %}
  115.                     <!-- ☆☆ クロネコゆうパケット ☆☆ -->
  116.                     <li class="one_data up">
  117.                         <h5 class="postage_list_headline up">{{delivery.name}}</h5>
  118.                         <figure class="postage_pic up"><img style="width: 361px; height: 272px;" src="{{ asset(delivery.image|no_image_product, 'save_image') }}"></figure>
  119.                         <!-- //// .one_data **** /// -->
  120.                     </li>
  121.                     {% endfor %}
  122.                     <!-- //// ++++ #postage_infoList ++++ ///// -->
  123.                 </ul>
  124.                 <p class="postage_cap up">天候・災害・交通事情・その他トラブルが発生した場合、ご指定の日時での配送が出来ない場合がございます。納期にはじゅうぶん余裕を持ってご注文頂けますようお願い致します。一部の地域(離島等)は、それ以降の配送の可能性もございます。</p>
  125.                 <!-- ///// #Postage +++++ ///// -->
  126.             </div>
  127.             <!-- // ++ 店頭引取について ++ /////////////////////////////////////////////////////////////// -->
  128.             <div id="Store" class="one_box">
  129.                 <h3 class="section_title up">店頭引取について</h3>
  130.                 <h4 class="guide_headline fades">本社/FACTO_OSAKA [大阪・江坂]</h4>
  131.                 <p class="flow_notes indent up">◯ 商品お受取時店頭支払(現金・クレジットカード・PayPay・au PAY)</p>
  132.                 <p class="flow_notes indent up">◯ 店頭引取をご希望の場合は、完成予定日の翌営業日11時からお引取可能。事前のご予約にご協力ください</p>
  133.                 <figure id="payment-accessMap">
  134.                     <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3277.868877398006!2d135.4902870757471!3d34.75889572289904!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6000e5b6f9ba168b%3A0x3185ef8a686677c2!2sFACTO_OSAKA!5e0!3m2!1sja!2sjp!4v1713609119019!5m2!1sja!2sjp" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
  135.                 </figure>
  136.                 <!-- /// +++ #payment-accessMap +++ /// -->
  137.                 <p class="flow_notes up">〒564-0051 大阪府吹田市豊津町21-10 クルーズ江坂第二ビル2F<br>
  138.                     <span class="nolink">tel 06-6384-8422</span><br>
  139.                     営業時間:11:00〜19:00<a href="#" target="_blank">(営業日カレンダー)</a>
  140.                 </p>
  141.                 <!-- ///// #Store +++++ ///// -->
  142.             </div>
  143.             <!-- // ++ GUIDE LINK ++ //////////////////////////////////////////////////////////// -->
  144.             {# {% include '@user_data/layout/guide_link.twig' %} #}
  145.         </section>
  146.         <!-- ///// +++++ #Delivery +++++ ///// -->
  147.         <!-- ///// +++++ #mainContents +++++ ///// -->
  148.     </main>
  149. {% endblock %}