I have an issue with the shopsite not calculating the tax in the shopping cart. VAT in our case.
It is a bit hit and miss, sometimes it does and sometimes not.
I can add products to the cart and it does not show the tax, I can then hit recalculate and it does show tax.
in the code examples, I added the products to the cart (did not show tax) then hit the checkout button (next page did not show tax) then hit the back to cart button (now it shows the tax).
I cannot work out what is going on, I am not sure if I read somewhere of an issue similar to this in the knowledge base, but have been unable to find it again.
We are on Pro 10 sp2 r3.1
This first bit of html is from the page source just to show the change if you look where it says VAT the total is zero.
- Code: Select all
</td>
<td width="10px"> </td>
<td valign="top">
<!-- Table for totals, etc. -->
<table class="totals">
<tr><td class="totals_txt">Subtotal</td>
<td class="totals">£83.39</td>
</tr>
<tr>
<td class="totals_txt">Carriage / Shipping</td>
<td class="totals">£5.95</td>
</tr>
<tr>
<td class="totals_txt">VAT</td>
<td class="totals">£0.00</td>
</tr>
<tr>
<td class="totals_all_txt">Total</td>
<td class="totals_all">£89.34</td>
</tr></table>
<input type=hidden name="tax" value="1"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
This next bit of page code is the result of going to checkout and returning back to cart. this time we have a value of 17.87 tax.
- Code: Select all
</td>
<td width="10px"> </td>
<td valign="top">
<!-- Table for totals, etc. -->
<table class="totals">
<tr><td class="totals_txt">Subtotal</td>
<td class="totals">£83.39</td>
</tr>
<tr>
<td class="totals_txt">Carriage / Shipping</td>
<td class="totals">£5.95</td>
</tr>
<tr>
<td class="totals_txt">VAT</td>
<td class="totals">£17.87</td>
</tr>
<tr>
<td class="totals_all_txt">Total</td>
<td class="totals_all">£107.21</td>
</tr></table>
<input type=hidden name="tax" value="1"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>