welcart カートページでの税込み表示

www.welcart.com/documents/manual/cart
カートの構成
cart.php/カート
商品詳細画面から「カートへ入れる」のボタンが押されたときに最初に表示されるページです。
購入しようとしている商品の一覧が表示されます。
カートで購入する数量を変更することができます。
customer_info.php/お客様情報入力画面
メールアドレスなどのお客様情報を記入してもらう画面が表示されます。
サブナビに表示される「清算する」項目をクリックしてもこのページに移動します。
delivery_info.php/発送・支払い方法入力画面
発送先・支払方法を選択する画面が表示されます。
発送先をお客様情報で記入した場所と同じところに送るか、別の場所に送るかを選択することができます。
confirm.php/内容確認画面
今まで入力してきた購入商品・お客様情報・発送先・支払方法を最終的に確認します。
completion.php/買い物完了画面
内容確認画面で「上記内容で注文する」ボタンを押した後に表示される画面です。
error.php/エラー画面
カート内でなんらかのエラーが生じた場合に表示される画面です。

cart.php/カート

$cart_table_footer = '</tbody>

		
<tfoot>
		
<tr>
			
<th class="num">&nbsp;</th>

			
<th class="thumbnail">&nbsp;</th>

			
<th colspan="3" scope="row" class="aright">' . __('total items','usces') . usces_guid_tax('return') . '</th>

			
<th class="aright">' . usces_crform($this->get_total_price(), true, false, 'return') . '</th>

			
<th class="stock">&nbsp;</th>

			
<th class="action">&nbsp;</th>

		</tr>

';
	
	//税込み 追記	
	 $total_price = usces_total_price('return') - usces_order_discount('return');
    $tax = $this -> getTax( $total_price );
	
	$cart_table_footer .='
	
<tr>
        
<td colspan="5" class="aright">'.usces_tax_label(array(), 'return').'</td>

        
<td class="aright">'. usces_crform($tax, true, false,'return').'</td>

        
<td colspan="2">&nbsp;</td>

    </tr>

    
<tr>
        
<th colspan="5" class="aright">税込合計<em class="tax">(税込)</em></th>

        
<th class="aright">'.
		usces_crform(($total_price + $tax), true, false, 'return'). '</th>

        
<th colspan="2">&nbsp;</th>

    </tr>

';

		
	//ここまで 	
	$cart_table_footer .='	</tfoot>

	</table>

';

これを追加 へんこう

参考
welcustom.net/consumption-tax-cart-page/

<?php if ( 'exclude' == $this->options['tax_mode'] ): ?>
<?php $total_price = usces_total_price('return') - usces_order_discount('return'); $tax = $this -> getTax( $total_price );
?>
    
<tr>
        
<td colspan="5" class="aright"><?php _e('consumption tax', 'usces'); ?></td>

        
<td class="aright"><?php echo usces_crform($tax, true, false); ?></td>

        
<td colspan="2">&nbsp;</td>

    </tr>

    
<tr>
        
<th colspan="5" class="aright"><?php _e('total items','usces'); ?><em class="tax">(税込)</em></th>

        
<th class="aright"><?php echo usces_crform(($total_price + $tax), true, false); ?></th>

        
<th colspan="2">&nbsp;</th>

    </tr>

<?php endif; ?>