in reply to Creating Reports with hashes: Use of uninitialized value while adding integers
Shouldn't
my $quantity = (); my $total_quantity = (); [download]
be
my $quantity = 0; my $total_quantity = 0; [download]