is there a way to run multiple copies of the same basic script but set to different categories every day so that it will update all the tax information for new products as they come in? this is a couple of copies of the script I want to run not all of them.
Code:UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 26; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 103; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 92; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 162; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 159; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 132; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 9; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 200; UPDATE products SET products_tax_class_id = 7 WHERE master_categories_id = 202;


Reply With Quote
