app/template/default/Mail/check_chainstore_admin.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. ご担当者様
  10. {{YYYY}}年{{MM}}月{{DD}}日マスタ登録チェック
  11. ディーラーコード未登録販売店:{{DealerCodeList|length }}件
  12. 契約番号未登録販売店:{{StockNumberList|length }}件
  13. クーポン未登録販売店:{{CouponCodeList|length }}件
  14. {% if DealerCodeList %}
  15.     ディーラーコード未登録販売店の詳細リストをご確認下さい
  16.     {% for Dealer in DealerCodeList %}
  17.         {{Dealer.ChainStore.stock_number}} - {{Dealer.ChainStore.company_name}}
  18.     {% endfor %}
  19. {% endif %}
  20. {% if StockNumberList %}
  21.     契約番号未登録販売店の詳細リストをご確認下さい
  22.     {% for StockNumber in StockNumberList %}
  23.         {{StockNumber.ChainStore.stock_number}} - {{StockNumber.ChainStore.company_name}}
  24.     {% endfor %}
  25. {% endif %}
  26. {% if CouponCodeList %}
  27.     クーポン未登録販売店の詳細リストをご確認下さい。
  28.     {% for Coupon in CouponCodeList %}
  29.         {{Coupon.ChainStore.stock_number}} - {{Coupon.ChainStore.company_name}}
  30.     {% endfor %}
  31. {% endif %}
  32. 管理画面はコチラより
  33. https://icecream.dzx.co.jp/darcysadmin/
  34. {% endautoescape %}