statiegeld: support statiegeld-only products

This commit is contained in:
Juerd Waalboer 2023-01-19 01:51:40 +01:00
parent 4d5eae3ad7
commit 5e91aaff3d
2 changed files with 3 additions and 2 deletions

View file

@ -30,13 +30,15 @@ sub statiegeld_product($product) {
$product = $products->{$product} or return;
}
# Called 'addons' here but also includes the queried product itself,
# to support things that are 100% statiegeld (e.g. empty crate)
my @relevant_addons = grep {
my $addon = $_;
!$addon->{percent}
and (List::Util::any { $addon->{contra} eq $_ } @addon_accounts)
and $addon->{price} > 0;
} @{ $product->{addons} // [] };
} $product, @{ $product->{addons} // [] };
return 0 if not @relevant_addons;
return { product => $product, statiegeld_addons => \@relevant_addons };

View file

@ -4,7 +4,6 @@
# voiding of tokens
# querying of tokens
# expiry of tokens
# token for non-hidden addon (direct product use)
use List::Util;