Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12
  1. #11
    Join Date
    Oct 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Serious problem with VAT

    OK this is how you fix it...

    Open invoice.php in the admin directory and scroll down to line 199, it should look like this:

    Code:
                          $currencies->format(zen_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']) * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) .
    All we need to do is expand the zen_add_tax() function to also enclose the multiplication by quantity...

    Like this:

    Code:
                          $currencies->format(zen_add_tax($order->products[$i]['final_price'] * $order->products[$i]['qty'], $order->products[$i]['tax']), true, $order->info['currency'], $order->info['currency_value']) .
    Simple huh.

  2. #12
    Join Date
    Apr 2007
    Posts
    14
    Plugin Contributions
    0

    Default Re: Serious problem with VAT

    Well that link you posted refreshmentshop seems a good place to go, although I still seem to have fixed it in another way. Sorry can't reverse engineer what I did to quote it. Maybe if I get more time.

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Serious problem with customizing my online store
    By beautynexus in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 6 May 2011, 09:32 PM
  2. I have a problem with cupons and vat - EU VAT Mod
    By oberheimer in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 8 Feb 2011, 04:31 PM
  3. Customer Order - VAT - Serious Problem -Help
    By rabz in forum Managing Customers and Orders
    Replies: 1
    Last Post: 22 Dec 2008, 05:04 PM
  4. Serious problem with my zencart
    By doll5272 in forum Basic Configuration
    Replies: 3
    Last Post: 1 Aug 2008, 02:56 PM
  5. Problem with VAT after using discount coupon VAT is not changing...
    By mrplants in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 7
    Last Post: 11 Jan 2007, 03:54 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg