Default tag_price to 0.00 instead of 0
This commit is contained in:
parent
21f35a812e
commit
16afac851a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue