When the user inputs 110 into the quantity field, and there are 20 pieces in the multiplicity, the system should automatically recalculate the quantity to be 120 pieces.
For instance, if the multiplicity is 100 and the customer requires 1010 pieces, entering 1010 into the quantity field should result in a recalculated value of 1100 pieces.
I require rounding up based on the item's multiplicity.
curValue = Math.floor(Math.ceil((curValue * this.precisionFactor )/this.precisionFactor))