Page 1 of 2 12 LastLast
Results 1 to 10 of 15
  1. #1
    Join Date
    Feb 2007
    Posts
    1,704
    Plugin Contributions
    0

    Default UK VAT increase Jan 2011... keep prices the same

    With the VAT increase today in the UK to 20% here are the instructions how to iuncrease your VAT to 20%

    1)log into you admin section.

    2)Back up your database

    3)click on the locations & taxes > tax rates

    4)click on the UK tax rate and click edit

    5)change the VAT rate to 20.0000

    your site will now be using the current 20% vat rate.

    KEEPING PRICES THE SAME
    If you would like to keep your prices throughtout your websiter the same as they are before when at 17.5% ie price at 17.5% gross was 117.50 with net of 100 if at 20% you would also like the keep the gross at 117.50 you will need to change the net of the items. Here is a SQL script to change your entire website so no prices change.

    update products set products_price = (1.175*products_price)/1.20;

    to use this script do the following

    1)log into your admin section

    2)back up your database

    3)go to tools>sql patches

    4)copy and paste the above code into the box and click run
    Last edited by kitcorsa; 4 Jan 2011 at 11:07 AM.

  2. #2
    Join Date
    Feb 2007
    Posts
    1,704
    Plugin Contributions
    0

    Default Re: UK VAT increase Jan 2011... keep prices the same

    you will need to go throught an manually change the specials prices as these are not changes also change the postage costs if you dont want these to change also

  3. #3
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: UK VAT increase Jan 2011... keep prices the same

    For completeness you should also update the price sorter i.e.

    update products set products_price = products_price * 1.175 / 1.2, products_price_sorter = products_price_sorter * 1.175 / 1.2, products_last_modified = now();

    and specials can be updated by

    update specials set specials_new_products_price = specials_new_products_price * 1.175 / 1.2, specials_last_modified = now();

    This assumes that all products are VATable (otherwise a conditional query based on your tax classes is needed)

    And yes, if you're accounting for VAT in your shipping costs (and you should be if you're VAT-registered) don't forget to tweak your shipping module costs.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  4. #4
    Join Date
    Feb 2007
    Posts
    1,704
    Plugin Contributions
    0

    Default Re: UK VAT increase Jan 2011... keep prices the same

    Thanks for extanding this a bit further. I forgot to add onto mine that i went to store manager and updated the price sorter there

  5. #5
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: UK VAT increase Jan 2011... keep prices the same

    Is there a way to increase specials price for a manufacturer?
    I'm not too good with SQL, I've tried:

    HTML Code:
    update specials set specials_new_products_price = specials_new_products_price * 1.175, specials_last_modified = now() where manufacturers_id = 8 ;
    But it doesnt work.

  6. #6
    Join Date
    Feb 2007
    Posts
    1,704
    Plugin Contributions
    0

    Default Re: UK VAT increase Jan 2011... keep prices the same

    update specials set specials_new_products_price = specials_new_products_price * 1.175 where manufacturers_id = 8, specials_last_modified = now() ;

  7. #7
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: UK VAT increase Jan 2011... keep prices the same

    Neither of the above will work because the manufacturers_id isn't in the specials table.

    Try

    UPDATE specials s, products p
    SET s.specials_new_products_price = s.specials_new_products_price * 1.175, s.specials_last_modified = now()
    WHERE s.products_id = p.products_id
    AND p.manufacturers_id = 8;

    Untested, but should work.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  8. #8
    Join Date
    Jan 2010
    Posts
    7
    Plugin Contributions
    0

    Default Re: UK VAT increase Jan 2011... keep prices the same

    Thanks for this :)

  9. #9
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: UK VAT increase Jan 2011... keep prices the same

    Thanks Kuroi, it works perfectly!

  10. #10
    Join Date
    Aug 2008
    Posts
    5
    Plugin Contributions
    0

    Default Re: UK VAT increase Jan 2011... keep prices the same

    Thanks Guys -worked first time! -Jc.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 How can I keep the same Admin password on my account the same ?
    By brevardcountypcr in forum General Questions
    Replies: 4
    Last Post: 10 Jul 2012, 10:14 PM
  2. USPS Jan 2011 changes
    By spjrr in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 4 Jan 2011, 06:18 PM
  3. UK VAT - REMINDER.....the UK tax man arrived today 4th Jan 2011
    By JSWeb in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 4
    Last Post: 4 Jan 2011, 01:08 PM
  4. Updating UK VAT to 17.5% at 12.01am on Jan 1st
    By Dunk in forum General Questions
    Replies: 6
    Last Post: 1 Jan 2010, 09:01 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR