Where is the best location to limit the number of decimal points displayed with a discount?
Right now the discount is displayed as 21.45% (with two decimal points of resolution) I want to display only 21%.
Should I just modify the database table `Orders_Discounts` and change the field from
`Savings_Percent` decimal(10,2) NOT NULL default '0.00',
to
`Savings_Percent` decimal(10,0) NOT NULL default '0',
:
???
Thanks!


:
Reply With Quote


!!!!