read_products: do calculate total_price for alias of addon
There was a bug with the example product defined as: +smk,matekrat 1.50@+statiegeld "..." Only the id `+smk` was considered, and no total price was calculated. This broke the accessible id `matekrat`. The fix is to consider the keys of the products in the hash, instead of the `id` field.
This commit is contained in:
parent
de5d3bc925
commit
b22ac11476
1 changed files with 3 additions and 2 deletions
|
@ -144,8 +144,9 @@ sub read_products($filename = "revbank.products", $default_contra = "+sales/prod
|
|||
}
|
||||
|
||||
# Calculate tag and total price
|
||||
PRODUCT: for my $product (values %products) {
|
||||
next if $product->{id} =~ /^\+/;
|
||||
PRODUCT: for my $id (keys %products) {
|
||||
next if $id =~ /^\+/;
|
||||
my $product = $products{$id};
|
||||
|
||||
my $tag_price = $product->{price} || 0;
|
||||
my $hidden = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue