Cart: Fix wrong rounding being displayed (#5816)

This commit is contained in:
Raphael Michel
2026-01-16 16:00:50 +01:00
committed by GitHub
parent ca23f7ebc2
commit c4792800f0

View File

@@ -266,7 +266,7 @@ class CartMixin:
'itemcount': sum(c.count for c in positions if not c.addon_to),
'itemvarsums': itemvarsums,
'current_selected_payments': [
p for p in self.current_selected_payments(positions, fees, self.invoice_address)
p for p in self.current_selected_payments(lcp, fees, self.invoice_address)
if p.get('multi_use_supported')
]
}