テーマ仕様書 更新履歴
2025年
2025/03/18更新

2025/03/18更新

+ 更新した行
- 削除した行

関連商品情報取得ロジックの修正

cart > カート画面

     {{ order.subtotal_include_tax_with_campaign_discount | number_to_currency: format: '%n %u' }}
     
     <!-- 関連商品 -->
-    {% if base_info.use_related_products_on_cart? and order.related_products.size != 0 %}
+    {% if base_info.use_related_products_on_cart? and related_products.size != 0 %}
 
       <!-- 関連商品一覧 -->
-      {% for related_product in order.related_products %}
+      {% for related_product in related_products %}
 
         <!-- 関連商品画像 -->
         <a href="/shop/products/{{ related_product.master.sku }}">

product > 商品詳細画面

   <!-- 関連商品 (「ショップ管理 > 各種設定 > ショップの機能設定」の「併売商品複数設定」が有効の場合、任意) -->
-  {% if base_info.use_related_products_on_detail? and product.active_related_products.size != 0 %}
+  {% if base_info.use_related_products_on_detail? and related_products.size != 0 %}
 
     <!-- 関連商品一覧 -->
-    {% for related_product in product.active_related_products %}
+    {% for related_product in related_products %}
 
       <!-- 関連商品画像(任意) -->
       <a href="/shop/products/{{ related_product.master.sku }}">

スマレジ連携機能のリリース準備のため

スマレジ受注が内税の場合の購入履歴表記に対応しました。

mypage > 購入履歴詳細画面 基本情報

   <!-- 注文小計(任意) -->
   {{ order.subtotal | number_to_currency: format: '%n %u' }}
   
+  <!-- スマレジ受注内税額(任意) -->
+  {% if order.smaregi_tax_included? %}
+    {{ order.smaregi_order.tax_include | number_to_currency: foramt: '%n %u' }}
+  {% endif %}
+  
   <!-- 8%対象小計(任意) -->
   {{ order.subtotal8 | number_to_currency: format: '%n %u' }}
 
   <!-- 10%対象小計(任意) -->
   {{ order.subtotal10 | number_to_currency: format: '%n %u' }}
  
   <!-- 割引(任意) -->
   -{{ order.discount_not_with_point | number_to_currency: format: '%n %u' }}
  
   <!-- 8%対象割引(任意) -->
   -{{ order.discount8 | number_to_currency: format: '%n %u' }}
  
   <!-- 10%対象割引(任意) -->
   -{{ order.discount10 | number_to_currency: format: '%n %u' }}
  
   <!-- ポイント利用(任意) -->
   -{{ order.discount_point_amount | number_to_currency: format: '%n %u' }}
  
   <!-- ラッピング代(任意) -->
   {{ order.misc_fee | number_to_currency: format: '%n %u' }}
  
   <!-- 送料 -->
   {{ order.deliv_fee | number_to_currency: format: '%n %u' }}
  
   <!-- 手数料(任意) -->
   {{ order.charge | number_to_currency: format: '%n %u' }}
 
   <!-- 調整金額(任意) -->
   {{ order.adjustment | number_to_currency: format: '%n %u' }}  
 
   <!-- 消費税 -->
-  {{ order.tax | number_to_currency: format: '%n %u' }}
+  {% if order.smaregi_order? == false %}
+    {{ order.tax | number_to_currency: format: '%n %u' }}
+  {% elsif order.smaregi_tax_excluded? %}
+    {{ order.smaregi_order.tax_exclude | number_to_currency: format: '%n %u' }}
+  {% endif %}
   
   <!-- 8%対象消費税(任意) -->
   {{ order.tax8 | number_to_currency: format: '%n %u' }}