Hide topup items from cart

This commit is contained in:
Kukks
2023-05-31 15:49:13 +02:00
parent f733c9ea77
commit 4309603317

View File

@@ -236,6 +236,10 @@
@for (var index = 0; index < Model.Items.Length; index++)
{
var item = Model.Items[index];
if (item.PriceType == ViewPointOfSaleViewModel.ItemPriceType.Topup)
{
continue;
}
var image = item.Image;
var description = item.Description;