Rounding of the prices
We have a need to round the final selling prices after all modifiers are applied.
if the final unit_price > 250, then replace last two decimal digits with 99
if the final unit_price <= 250, then if last two decimal digits are below 49, then replace last two decimal digits with 49 else 99
Can you please advise how to achieve this