Default tag_price to 0.00 instead of 0

This commit is contained in:
Juerd Waalboer 2025-01-06 23:41:07 +01:00
parent 21f35a812e
commit 16afac851a

View file

@ -154,7 +154,7 @@ sub read_products($filename = "revbank.products", $default_contra = "+sales/prod
next if $id =~ /^\+/;
my $product = $products{$id};
my $tag_price = $product->{price} || 0;
my $tag_price = $product->{price} || RevBank::Amount->new(0);
my $hidden = 0;
my @seen = ($product);