discount for a specific customer

Hi, I have a question. Is it impossible to apply a discount for a specific customer if he buy within 3 months lets say more than 200 $ he will get 25% discount or voucher.,.. is it impossible to be implemented with RMS 2.0 ? Thank you ISSAM

Reply to
ISSAM
Loading thread data ...

I dont think its possible with RMS 2.0

However there is alot of addon that does that thing

Check out the Retail Hero website

Reply to
Joie

Hi there,

What You are looking for it's not standard, but You can make a small add-on or get some RMS partner to do it for You. It is not that complicated at all.

If You need more info, contact me...

Regards, A.

Reply to
Antonijo Todoro

find the customer's sales for the last 3 months with this view:

create view customer_sales as select c.id, sum(e.price*e.quantity) sales from [transaction] t join transactionentry e on t.storeid=e.storeid and t.transactionnumber=e.transactionnumber join customer c on t.customerid=c.id where time>dateadd(mm,-3,getdate()) group by c.id

then update the customer's discount where sales > 200

update c set currentdiscount% from customer_sales s join customer c on s.id=c.id where sales>200

then clean up the view afterwards:

dr> Hi,

Reply to
Matt Hurst

BeanSmart website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.