app/template/mizunasu/Mail/order.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. {% autoescape 'safe_textmail' %}
  9. {{ Order.name01 }} {{ Order.name02 }} 様
  10. この度はご注文いただき誠にありがとうございます。下記ご注文内容にお間違えがないかご確認下さい。
  11. ************************************************
  12.  ご請求金額
  13. ************************************************
  14. ご注文日時:{{ Order.order_date|date_sec }}
  15. ご注文番号:{{ Order.order_no }}
  16. お支払い合計:{{ Order.payment_total|price}}
  17. お支払い方法:{{ Order.payment_method }}
  18. {% if BaseInfo.isOptionPoint and Order.Customer is not null %}
  19. ご利用ポイント:{{ Order.usePoint|number_format }} pt
  20. 加算ポイント:{{ Order.addPoint|number_format }} pt
  21. {% endif %}
  22. お問い合わせ:{{ Order.message }}
  23. ************************************************
  24.  ご注文商品明細
  25. ************************************************
  26. {% set isShowReducedTaxMess = false %}
  27. {% for OrderItem in Order.MergedProductOrderItems %}
  28. 商品コード:{{ OrderItem.product_code }}
  29. 商品名:{{ OrderItem.product_name }}  {{ OrderItem.classcategory_name1 }}  {{ OrderItem.classcategory_name2 }} {% if is_reduced_tax_rate(OrderItem) %}※{% set isShowReducedTaxMess = true %}{% endif %}
  30. 単価:{{ OrderItem.price_inctax|price }}
  31. 数量:{{ OrderItem.quantity|number_format }}
  32. {% endfor %}
  33. {% if isShowReducedTaxMess %}※は軽減税率対象商品です。
  34. {% endif %}
  35. -------------------------------------------------
  36. 小 計:{{ Order.subtotal|price }}
  37. 手数料:{{ Order.charge|price }}
  38. 送 料:{{ Order.delivery_fee_total|price}}
  39. {% if Order.taxable_discount < 0 %}
  40. 値引き:{{ Order.taxable_discount|price }}
  41. {% endif %}
  42. -------------------------------------------------
  43. 合 計:{{ Order.taxable_total|price }}
  44. {% for item in Order.tax_free_discount_items %}
  45. {{ item.product_name }}:{{ item.total_price|price }}
  46. {% endfor %}
  47. ============================================
  48. お支払い合計:{{ Order.payment_total|price }}
  49.   {% for rate, total in Order.total_by_tax_rate %}
  50.   ({{ rate }} %対象:{{ total|price }} 内消費税:{{ Order.tax_by_tax_rate[rate]|price }})
  51.   {% endfor %}
  52. ************************************************
  53.  ご注文者情報
  54. ************************************************
  55. お名前:{{ Order.name01 }} {{ Order.name02 }} 様
  56. お名前(カナ):{{ Order.kana01 }} {{ Order.kana02 }} 様
  57. {% if Order.company_name %}
  58. 会社名:{{ Order.company_name }}
  59. {% endif %}
  60. 郵便番号:〒{{ Order.postal_code }}
  61. 住所:{{ Order.Pref.name }}{{ Order.addr01 }}{{ Order.addr02 }}
  62. 電話番号:{{ Order.phone_number }}
  63. メールアドレス:{{ Order.email }}
  64. ************************************************
  65.  配送情報
  66. ************************************************
  67. {%  for Shipping in Order.Shippings %}
  68. ◎お届け先{% if Order.multiple %}{{ loop.index }}{% endif %}
  69. お名前:{{ Shipping.name01 }} {{ Shipping.name02 }} 様
  70. お名前(カナ):{{ Shipping.kana01 }} {{ Shipping.kana02 }} 様
  71. {% if Shipping.company_name %}
  72. 会社名:{{ Shipping.company_name }}
  73. {% endif %}
  74. 郵便番号:〒{{ Shipping.postal_code }}
  75. 住所:{{ Shipping.Pref.name }}{{ Shipping.addr01 }}{{ Shipping.addr02 }}
  76. 電話番号:{{ Shipping.phone_number }}
  77. 配送方法:{{ Shipping.shipping_delivery_name }}
  78. お届け日:{{ Shipping.shipping_delivery_date is empty ? '指定なし' : Shipping.shipping_delivery_date|date_day }}
  79. お届け時間:{{ Shipping.shipping_delivery_time|default('指定なし') }}
  80. {%  for OrderItem in Shipping.productOrderItems %}
  81. 商品コード:{{ OrderItem.product_code }}
  82. 商品名:{{ OrderItem.product_name }}  {{ OrderItem.classcategory_name1 }}  {{ OrderItem.classcategory_name2 }}
  83. 数量:{{ OrderItem.quantity|number_format }}
  84. {% endfor %}
  85. ------------------------------------------
  86. {% set config = repository('Plugin\\Noshidelivery\\Entity\\NoshideliveryConfig').get %}
  87. {% if Shipping.NoshideliveryCheck == '希望する' %}
  88. のし:希望する
  89. {% if config.gift_kind %}のしの種類:{{ Shipping.NoshideliveryKind|default('選択されていません。') }}{% endif %}
  90. {% if config.gift_tie %}表書き(上段):{{ Shipping.NoshideliveryTie|default('なし') }}
  91. {% if Shipping.gp_title is not empty %}表書き[その他]:{{ Shipping.gp_title }}{% endif %}{% endif %}
  92. {% if config.gift_name %}お名前(下段):{{ Shipping.gp_name|default('なし') }}{% endif %}
  93. {% else %}
  94. のし:希望しない
  95. {% endif %}
  96.                                 
  97. ------------------------------------------
  98. {% endfor %}
  99. {% if Order.complete_mail_message is not empty %}
  100. {{ Order.complete_mail_message }}
  101. {% endif %}
  102. ************************************************
  103.  お振込銀行口座
  104. ************************************************
  105. 銀行振り込みのお客様は、下記の口座にお振込みください。
  106. 入金確認後の発送となります。
  107. PayPay銀行
  108. ビジネス営業部(005)
  109. 普通:2693109
  110. 名義:ダイワフード(カ)オツケモノドコロイセヤ
  111. ============================================
  112. このメッセージはお客様へのお知らせ専用ですので、
  113. このメッセージへの返信としてご質問をお送りいただいても回答できません。
  114. ご了承ください。
  115. 泉州水なす漬利休の郷いせや
  116. https://iseya-mizunasu.jp/
  117. 〒590-0024
  118. 大阪府堺市堺区向陵中町1-1-1
  119. お問い合わせ窓口
  120. Email: webshop@daiwafood.co.jp
  121. TEL : 072-255-1611 ( 9:00 - 17:00 日曜定休)
  122. {% endautoescape %}