I'm having some problems with the taxes of my shipment. When I set my shipment price at € 10,00 and I use the standard tax rule of 19%, the total ammount for each shipping is € 11,90.
So far so good, but when I look at my shopping cart I see that the tax is included twice. In the shipment costs and in the total tax.
(http://www.nvsdesign.nl/klanten/dubbelebtw.jpg)
It actually should display:
Subtotal: € 30,79
Shipment: € 10,00 (without the tax included!)
Total tax: € 7,75
Total: € 48,54
This is my basket.html file, what do I need to change to get this result displayed?
<?php
if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' );
/**
* This is the default Basket Template. Modify as you like.
*
* @version $Id: basket_b2c.html.php 1377 2008-04-19 17:54:45Z gregdev $
* @package VirtueMart
* @subpackage templates
* @copyright Copyright (C) 2004-2005 Soeren Eberhardt. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details.
*
* http://virtuemart.net
*/
?>
<div id="basket_container" style="float: left;">
<div class="inside" style="float: left;">
<div class="black-basket" style="float: left;">
<div style="float: left;"><div style="float: left;"><div style="float: left;"><div style="float: left;">
<div class="col-module_fix" style="float: left;">
<div style="display: none;">
<h3>
<span class="col-module_header_r">
<span class="col-module_header_l">
<span class="col-module_header_arrow">
<span class="col-module_header_color" style="font-weight: bold; color: #FFD11B;"><?php echo $VM_LANG->_('PHPSHOP_CART_TITLE'); ?></span>
</span>
</span>
</span>
</h3>
</div>
<div class="col-module_content" style="float: left; width: 99%;">
<div class="op_basket_header op_basket_row">
<div class="op_col1"> </div>
<div class="op_col2"><?php echo $VM_LANG->_('PHPSHOP_CART_NAME') ?></div>
<div class="op_col3"> </div>
<div class="op_col4"><?php echo $VM_LANG->_('PHPSHOP_CART_SKU') ?></div>
<div class="op_col6"><?php echo $VM_LANG->_('PHPSHOP_CART_QUANTITY') ?> / <?php echo $VM_LANG->_('PHPSHOP_CART_ACTION') ?></div>
<div class="op_col5"><?php echo $VM_LANG->_('PHPSHOP_CART_PRICE') ?></div>
<div class="op_col7"><?php echo $VM_LANG->_('PHPSHOP_CART_SUBTOTAL') ?></div>
</div>
<?php
$max = count($product_rows);
$curr = 0;
foreach( $product_rows as $product ) {
$curr++;
?>
<div class="op_basket_row"<?php
if (($max) != $curr)
{
echo ' style="border-bottom: 1px solid #cccccc;" ';
}
?>>
<div class="op_col1"><?php
echo $this->op_show_image($product['product_full_image'], '', 50, 50, 'product');
?></div>
<div class="op_col2_2"><?php echo $product['product_name'] . $product['product_attributes'] ?></div>
<div class="op_col4"><?php echo $product['product_sku'] ?></div>
<div class="op_col6"><?php echo $product['update_form'] ?>
<?php echo $product['delete_form'] ?></div>
<div class="op_col5"><?php echo $product['product_price'] ?></div>
<div class="op_col7"><?php echo $product['subtotal'] ?></div>
</div>
<?php } ?>
<!--Begin of SubTotal, Tax, Shipping, Coupon Discount and Total listing -->
<?php if (!empty($shipping_inside_basket))
{
?>
<div class="op_basket_row" style="padding-bottom: 4px;">
<div class="op_col1"> </div>
<div class="op_col2_3">
<div><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_SHIPPING'); ?></div>
<div id='shipping_inside_basket'><?php if (!empty($shipping_select)) echo $shipping_select; ?></div></div>
<div class="op_col5_3"><div id='shipping_inside_basket_cost'></div></div>
</div>
<?php
}
if (!empty($payment_select))
{
?>
<div class="op_basket_row" style="display: none;">
<div class="op_col1"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_PAYMENT_LBL'); ?></div>
<div class="op_col2_3"><?php echo $payment_select; ?></div>
<div class="op_col5_3"> <span id='payment_inside_basket_cost'></span></div>
</div>
<?php
}
?>
<?php
if (false)
{
// this will show product subtotal with tax, remove if(false)
?>
<div class="op_basket_row totals" id="tt_static_total_div_basket" >
<div class="op_col1_4" align="right" id="tt_total_basket_static2"><?php echo $VM_LANG->_('PHPSHOP_CART_SUBTOTAL') ?>:</div>
<div class="op_col5_3" id="tt_order_subtotal_basket2">
<?php
$product_subtotal = $totals_array['order_subtotal']+$totals_array['order_tax'];
echo $GLOBALS['CURRENCY_DISPLAY']->getFullValue($product_subtotal); ?>
</div>
</div>
<?php
}
?>
<div class="op_basket_row totals" id="tt_order_subtotal_div_basket" >
<div class="op_col1_4" id="tt_order_subtotal_txt_basket"><?php echo $VM_LANG->_('PHPSHOP_CART_SUBTOTAL') ?>:</div>
<div class="op_col5_3" id="tt_order_subtotal_basket"></div>
</div>
<div class="op_basket_row totals" style="display: none;" id="tt_order_payment_discount_before_div_basket">
<div class="op_col1_4" id="tt_order_payment_discount_before_txt_basket">:
</div>
<div class="op_col5_3" id="tt_order_payment_discount_before_basket"></div>
</div>
<div class="op_basket_row totals" style="display: none;" id="tt_order_payment_discount_after_div_basket">
<div class="op_col1_4" id="tt_order_payment_discount_after_txt_basket">:
</div>
<div class="op_col5_3" align="right" id="tt_order_payment_discount_after_basket"></div>
</div>
<div class="op_basket_row totals" <?php if (empty($discount_before)) echo ' style="display: none;" '; ?> id="tt_order_discount_before_div_basket">
<div class="op_col1_4" align="right"><?php echo $VM_LANG->_('PHPSHOP_COUPON_DISCOUNT') ?>:
</div>
<div class="op_col5_3" align="right" id="tt_order_discount_before_basket"><?php echo $coupon_display ?></div>
</div>
<div class="op_basket_row totals" id="tt_shipping_rate_div_basket" <?php if (($no_shipping == '1') || (!empty($shipping_inside_basket))) echo ' style="display:none;" '; ?>>
<div class="op_col1_4" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_SHIPPING') ?>: </div>
<div class="op_col5_3" align="right" id="tt_shipping_rate_basket"></div>
</div>
<div class="op_basket_row totals" <?php if (empty($discount_after)) echo ' style="display:none;" '; ?> id="tt_order_discount_after_div_basket">
<div class="op_col1_4" align="right"><?php echo $VM_LANG->_('PHPSHOP_COUPON_DISCOUNT') ?>:
</div>
<div class="op_col5_3" align="right" id="tt_order_discount_after_basket"><?php echo $coupon_display ?></div>
</div>
<div class="op_basket_row totals" id="tt_tax_total_0_div_basket" style="display:none;" >
<div class="op_col1_4" align="right" id="tt_tax_total_0_txt_basket"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_TOTAL_TAX') ?>: </div>
<div class="op_col5_3" align="right" id="tt_tax_total_0_basket"><?php echo $tax_display ?></div>
</div>
<div class="op_basket_row totals" id="tt_tax_total_1_div_basket" style="display:none;" >
<div class="op_col1_4" align="right" id="tt_tax_total_1_txt_basket"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_TOTAL_TAX') ?>: </div>
<div class="op_col5_3" align="right" id="tt_tax_total_1_basket"><?php echo $tax_display ?></div>
</div>
<div class="op_basket_row totals" id="tt_tax_total_2_div_basket" style="display:none;" >
<div class="op_col1_4" align="right" id="tt_tax_total_2_txt_basket"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_TOTAL_TAX') ?>: </div>
<div class="op_col5_3" align="right" id="tt_tax_total_2_basket"><?php echo $tax_display ?></div>
</div>
<div class="op_basket_row totals" id="tt_tax_total_3_div_basket" style="display:none;" >
<div class="op_col1_4" align="right" id="tt_tax_total_3_txt_basket"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_TOTAL_TAX') ?>: </div>
<div class="op_col5_3" align="right" id="tt_tax_total_3_basket"><?php echo $tax_display ?></div>
</div>
<div class="op_basket_row totals" id="tt_tax_total_4_div_basket" style="display:none;" >
<div class="op_col1_4" align="right" id="tt_tax_total_4_txt_basket"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_TOTAL_TAX') ?>: </div>
<div class="op_col5_3" align="right" id="tt_tax_total_4_basket"><?php echo $tax_display ?></div>
</div>
<div style="height: 1px; background: none; width: 200px; float: right; border-bottom: 1px solid #cccccc; clear: both;"> </div>
<div class="op_basket_row">
<div class="op_col1_4" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_TOTAL') ?>: </div>
<div class="op_col5_3" align="right" id="tt_total_basket"><strong><?php echo $order_total_display ?></strong></div>
</div>
<?php if (!empty($continue_link)) { ?>
<div class="op_basket_row totals">
<div style="width: 100%; clear: both;">
<a href="<?php echo $continue_link ?>" class="continue_link" ><span style="color: #FFD11B;">
<?php echo $VM_LANG->_('PHPSHOP_CONTINUE_SHOPPING'); ?></span>
</a>
</div>
</div>
<?php } ?>
</div>
</div>
</div></div></div></div>
</div>
</div>
</div>
Thnx, Niels