テーマ仕様書
shop
マイページ
定期受注
部分テンプレート
定期注文詳細タブ★

定期注文詳細タブ(部分テンプレート)

マイページ内 定期注文詳細画面(以下の画面)で利用する共通ナビゲーション用部分テンプレートです。
必要に応じて各画面で include して利用します。(マイページ内の以下の画面以外では利用できません)

  • 定期注文詳細画面 基本情報
  • 定期注文詳細画面 基本情報の編集
  • 定期注文詳細画面 お届け先情報
  • 定期注文詳細画面 お届け先情報の編集
  • 定期注文詳細画面 商品情報
  • 定期注文詳細画面 商品の編集
  • 定期注文詳細画面 購入情報
  • 定期注文詳細画面 お届け予定日カレンダー

テーマ管理のファイルパス

ec_force/shop/customer/subs_orders/shared/_nav.html.liquid
ec_force/shop/customer/subs_orders/shared/_nav.html+smartphone.liquid

必要なコンポーネント

任意とあるもの以外はシステム上必要なコンポーネントとなりますので、必ず使用するようにしてください。

<a {% unless template == 'shop/customer/subs_orders' %}href="/shop/customer/subs_orders/{{ subs_order.number }}"{% endunless %}>基本情報</a>
<a {% unless template == 'shop/customer/subs_orders/shipping_address' %}href="/shop/customer/subs_orders/{{ subs_order.number }}/shipping_address"{% endunless %}>お届け先住所</a>
<a {% unless template == 'shop/customer/subs_orders/order_items' %}href="/shop/customer/subs_orders/{{ subs_order.number }}/order_items"{% endunless %}>商品情報</a>
<a {% unless template == 'shop/customer/subs_orders/orders' %}href="/shop/customer/subs_orders/{{ subs_order.number }}/orders"{% endunless %}>購入情報</a>
{% if subs_order.active? and base_info.use_delvery_calendar? %}
  <a {% unless template == 'shop/customer/subs_orders/calendars' %}href="/shop/customer/subs_orders/{{ subs_order.number }}/calendars?date={{ subs_order.scheduled_to_be_delivered_at | date: '%Y-%m-%d' }}"{% endunless %}>お届け予定日カレンダー</a>
{% endif %}