軽減税率が適用されるショップでは、消費税率10%の商品と8%の商品が混在することもあるかと思います。 テーマで利用できるテンプレートタグを用意しましたので、適宜ご利用ください。 ※このテンプレートタグはWelcart v1.9.22 から利用できます。
目次
商品詳細ページ
商品詳細ページで使えるテンプレートタグ
通常価12,000円、売価10,000円、適用税率8%の商品の場合
従来のテンプレートタグ
通常価
usces_the_itemCpriceCr()
通貨記号とカンマ付きで表示します。
売価
usces_the_itemPriceCr()
通貨記号とカンマ付きで表示します。
税区分
usces_guid_tax()
税区分を表示します。
新たに追加したテンプレートタグ
<em>税込価格</em> <?php usces_the_itemPriceCr_taxincluded(); ?> <?php usces_the_taxrate(); ?>
適用税率で計算した税込の売価
usces_the_itemPriceCr_taxincluded()
通貨記号とカンマ付きで表示します。
usces_the_itemPrice_taxincluded()
カンマ付きで表示します。通貨記号は付きません。
税率
usces_the_taxrate()
税率を表示します。
WCEX SKU Select には対応していません。商品詳細ページで、WCEX SKU Select で選択時に表示される金額は、常に税別価格となります。
消費税額は、購入時に税率ごとに1回しか計算しません。例えば、カートに商品が複数入っていた場合、商品ごとに消費税額を計算して加算するのではなく、以下のような計算式で算出します。
消費税額 =( 10%対象品目の合計額 ✕ 0.10 )+( 8%対象品目の合計額 ✕ 0.08 )
従って、商品詳細ページで税込価格(単価+消費税額)を表示しても、購入時の消費税額と誤差が生じる場合があります。
カートページ
usces_cart_tax()
<tr> <th class="num"></th> <th class="thumbnail"></th> <th colspan="3" scope="row" class="aright"> <?php _e( 'consumption tax', 'usces' ); ?> </th> <th class="aright amount"> <?php usces_crform( usces_cart_tax( 'return' ), true, false ); ?> </th> <th class="stock"></th> <th class="action"></th> </tr>
内容確認ページ
usces_confirm_tax()
<tr> <td class="num"></td> <td colspan="5" class="aright"> <?php usces_confirm_tax(); ?> </td> </tr>