[ic] 3 decimal places with discount tag

Jeff Fearn jefffearn at gmail.com
Mon Jan 31 20:33:16 EST 2005


On Mon, 31 Jan 2005 14:10:41 -0600, Joshua Lavin
<joshua at kingdomdesign.com> wrote:
> Our perl tag code for the discount is:
> 
> $Session->{discount}{ALL_ITEMS} = '$s * ' . $discount;
> 

You could try

$Session->{discount}{ALL_ITEMS} = 'sprintf("%.2f", $s * ' . $discount . ')';

Jeff


More information about the interchange-users mailing list