Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 08-05-2013 15:17:37

Uncletim
Member
From: Boulder, CO
Registered: 08-03-2003
Posts: 375
Website

Is there a way to automatically increase the pricing after a date

I have a client that would like to offer a product at a certain price for x amount of weeks and then have the price go up at a certain date.

Is there a way to do that?

Offline

 

#2 08-05-2013 16:56:51

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Is there a way to automatically increase the pricing after a date

Not automatically, but you could execute SQL like this on the date the price is supposed to go up:

UPDATE ecom_prod SET regprice=regprice*1.10 WHERE pricestatus='R'

UPDATE ecom_prod SET saleprice=saleprice*1.10 WHERE pricestatus='S'

That would increase all prices by 10%.


Nick Hendler

Offline

 

#3 08-06-2013 12:19:09

Uncletim
Member
From: Boulder, CO
Registered: 08-03-2003
Posts: 375
Website

Re: Is there a way to automatically increase the pricing after a date

It seems like it would be just as easy to go into the cart and just adjust the price manually.

No big deal.

Thanks Nick.

Offline

 

Board footer