Hi. Thanks for quick reply, but it's not what I really need.
Prices here is depending on diferent variables that users cannot change.
For example:
I have a busines card that can be printed in 4 modes of printing: 1colour, 2 colour, 3 colour, 4 colour.
every mode have different equations for prices that is dependable of quantity.
first mode: -0,00001 * $qty * $qty + 0,0516 * $qty + 30,883
second mode: 0,0000006 * $qty * $qty + 0,0332 * $qty + 47,876
third mode: -0,000007 * $qty * $qty + 0,0525 * $qty + 63,613
so every time user change variant, other equation is called to calculate the price. It is not determined as price * quantity.
I got exell file with those equations and it's working very nice there. Now I need to make it work in Hikashop.
Cause it's printing office I have different sizes of products:
flyer A5, Flyer A4... and every product has same variants: different modes for printing. So I defined sizes as separate product, now I need to implement calculations per variant.
Is it possible?