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:
Juerd Waalboer 2024-12-26 03:13:19 +01:00
parent de5d3bc925
commit b22ac11476

View file

@ -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;