Jump to content

Price mass increase


Ayojewel

Recommended Posts

If it is price decrease, then you do that at store back office - Prices Rules - Catalogue Price Rules that applies to whole catalogue.

For price increase, you may have to use SQL statement to change product original price.

 

you may need to update following tables

 

ps_product

ps_product_shop

Edited by shokinro (see edit history)
Link to comment
Share on other sites

it will be something like this to update all products increase price with 100.

 

UPDATE ps_product set price = price + 100;

UPDATE ps_product_shop price = price + 100;

 

Please make a backup of your database before make any changes, in case you want to go back to previous state.

Link to comment
Share on other sites

Thanks so much for your help. I have tried, and it worked. However, i noticed that final prices are calculated by raising the base prices by 10% and subtracting the discount amount from the new base price. This is a problem for me as the final prices are what i use. Is there a way to increase ONLY the final prices by 10%?

Link to comment
Share on other sites

the final price is based on based and other discount you set for the products.

it is impossible to do so without knowing the existing discount setting and even you know existing discount, it might also be difficult.

 

if you just want to increase 10%, you can use following

 

UPDATE ps_product set price = price * 1.1;

UPDATE ps_product_shop price = price * 1.1;

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...