It may sound strange, I need a module that increases the cost of a product when ordering a specific product more than a certain quantity. It will also suit if this is implemented with the help of an additional commission to the order (but the calculation should be only from the cost of a particular product).
For example, a USB cable costs $10 (but if you buy more than 5 pieces, the price will be $11), and a charger is $15 (the price is always the same). When ordering, it should look like this:
2 × USB cable + 1 × charger = 10*2 + 15 = 35$
5 × USB cable + 1 × charger = 11*5 + 15 = 70$
10 × USB cable + 10 × charger = 11*10 + 15*10 = 260$
Is there a module with similar functionality? Or can someone tell me how this can be done?
For example, a USB cable costs $10 (but if you buy more than 5 pieces, the price will be $11), and a charger is $15 (the price is always the same). When ordering, it should look like this:
2 × USB cable + 1 × charger = 10*2 + 15 = 35$
5 × USB cable + 1 × charger = 11*5 + 15 = 70$
10 × USB cable + 10 × charger = 11*10 + 15*10 = 260$
Is there a module with similar functionality? Or can someone tell me how this can be done?