London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
ILineItemCalculator returns a LineItemPrices which contains extended price and discounted price. It is possible to return 0 when you are giving more discount than the cost of the line item. for example, if you are buying 2 items with price per unit = 4.5, and you have a promotion of "buying 2 get $10 discount". Is that the case?
Tricky thing is that we have no discounts set up - just a straight price for the product.
So my guess is that we are missing some configuration, or found a bug - i just cant figure out what it is.
Hey,
Sitting with an issue on a new commerce integration where we cant calculate LineItem/OrderGroup totals.
Following lines always returns Zero:
var _orderGroupCalculator = ServiceLocator.Current.GetInstance();
var _lineItemCalculator = ServiceLocator.Current.GetInstance();
_lineItemCalculator.GetLineItemPrices(lineItem, iCart.Currency);
iCart.GetOrderGroupTotals(_orderGroupCalculator)
While the following call successfully gets the price of the same product:
var priceDetailService = ServiceLocator.Current.GetInstance();
priceDetailService.List(variantReference).ContentLink);
Running on a Commerce 12.7.0
Any idea why this happens ?