zxedxz Posted September 2, 2005 Share Posted September 2, 2005 Hi, I already have like 200 products added. Is there a way to make them all "Taxable Goods" without having to change that to each single product? I know easy populate can do that, but some of my products don't have a product number, therefore it won't work. maybe using the database directly? Or a loop? Anyone can give me an easy way? Link to comment Share on other sites More sharing options...
Guest Posted September 2, 2005 Share Posted September 2, 2005 do it via the database via phpmyadmin Link to comment Share on other sites More sharing options...
zxedxz Posted September 2, 2005 Author Share Posted September 2, 2005 How? Do I just change replace the none with the word "taxable goods"? That it? I also noticed that if I choose traxable goods in the admin, the gross amount also change. What does this mean? What I want is to add the tax later in the check out. Thanks for your help. By the way, any way to make the "taxable good" the highlighed option in the admin add product? Link to comment Share on other sites More sharing options...
Guest Posted September 2, 2005 Share Posted September 2, 2005 go to phpadmin browse tax_class table make a record of the tax_class_id field for "taxable goods" select the products table then select sql then enter this in the run SQL query box update products set products_tax_class_id = <the number you recorded from the tax_class table> backup your dbase first just in case Link to comment Share on other sites More sharing options...
ValleyRoaster Posted November 15, 2005 Share Posted November 15, 2005 go to phpadmin browse tax_class table make a record of the tax_class_id field for "taxable goods" select the products table then select sql then enter this in the run SQL query box update products set products_tax_class_id = <the number you recorded from the tax_class table> backup your dbase first just in case I had to alter the above sql to this UPDATE `products` SET `products_tax_class_id` =1 or whatever id you choose from your tax_class_id It worked great! Life Is Too Short, Enjoy Your Coffee! Pete Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.