Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2009
    Posts
    2,076
    Plugin Contributions
    0

    Default Add VAT to all Products (Apart from one Category)

    We've just registered for VAT so we need to add VAT to all products, site wide, apart from a sepcific category.

    I have an SQL query that's switch it on across the board:
    PHP Code:
    UPDATE products set products_tax_class_id 1 where products_tax_class_id 0
    How would I exclude category 350 from this query? Would really appreciate any help here.

  2. #2
    Join Date
    Mar 2009
    Posts
    91
    Plugin Contributions
    0

    Default Re: Add VAT to all Products (Apart from one Category)

    I'm not so hot on SQL but if you use easy-populate then you could do it easily with that. Most ppl seem to have easy-populate installed :)

  3. #3
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,886
    Plugin Contributions
    6

    Default Re: Add VAT to all Products (Apart from one Category)

    If that is the master_categories_id on the Products you can use:
    Code:
    UPDATE products set products_tax_class_id = 1 where products_tax_class_id = 0 and master_categories_id != 350;
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

 

 

Similar Threads

  1. Replies: 7
    Last Post: 24 Nov 2012, 06:33 AM
  2. resetting Master Category ID for all products in a category = HTTP 406 error!
    By bodyjewelrystores in forum Setting Up Categories, Products, Attributes
    Replies: 4
    Last Post: 18 Nov 2009, 04:25 AM
  3. Show Specific Category on Index Listing or Add Entire Category to Featured Products.
    By devnut in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 8 Oct 2008, 04:29 PM
  4. Category with no products dont display"There are no products to list in this category
    By atracksler in forum Setting Up Categories, Products, Attributes
    Replies: 6
    Last Post: 3 Apr 2008, 05:47 AM
  5. Replies: 0
    Last Post: 16 Mar 2007, 05:57 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
  •