I am trying to write a script that calculates a price based upon the quantities.
Database :
pid | prodict | unit | price
1 | coke |100 | 2
2 | coke |100 | 1.8
3 | coke |300 | 1.5
4 | coke | | 1.1
1 | pepsi |100 | 2.2
2 | pepsi |50 | 2
3 | pepsi | | .8
Pid is product id, Product is Product name/Product code. Unit is Incremental unit, or in addition to the existing unit by the number, price is price per unit for incremental unit.
Real Problems:
- if unit is '', or Null, that is that identifies the maximum cumulative unit and then the price in that null column applies to that.
- Not all the products have same level of price. some might end up with 1 value (flat rate, in that case, unit would be null or ''. some might go as up as possible.
- There is no cumulative column and i can not add that. It is not there, and is not possible to add now becuase products might be in millions (asssumption, to make the code flexible for unlimited products)
- All you would get is a lumpsum of units and product code. eg. 100 units of coke, or 200 units of pepsi.
- Number in unit column is Inclusive, that is Less than equal to.
I was a big fan of For loop and break(bad programming), but now i think i need either if condition or while loop, for both i do not have much confidence.
Thank you in advance
NoteIf you feel difficult to understand the problem, then just assume the income tax calculator, same or similar thing - upto x amount, base tax, then for NEXT y amount, y tax rate, for next z amount, z tax rate more than z, z+ tax
Well, you certainly want to loop through the products first, and then work out a total based on the quantity passed in. Something like this?
Got a bit carried away but I think that should work.