fix(products): update kit price calculation to use actual_price instead of get_sale_price()

This commit is contained in:
2026-01-23 23:51:09 +03:00
parent 14c1a4f804
commit 87f6484258

View File

@@ -41,7 +41,7 @@ class TreeItem:
if item_type == 'product':
self.price = obj.sale_price
elif item_type == 'kit':
self.price = obj.get_sale_price()
self.price = obj.actual_price
else:
self.price = None