Currency Converter & Option Group Products


https://forum.kartris.com/Topic6220.aspx
Print Topic | Close Window

By Cabrach - Wed 7 Oct 2015

I've noticed that it the currency converter is not calculating option group products correctly. It's fine for the base version, but any option with a different price is not being converted at all. The basket passes this short amount on to the checkout, giving the customer a considerable discount on the actual price.

Any help with this bug would be very much appreciated.


By Paul - Wed 7 Oct 2015
We fixed this bug in the source control within last couple of days, it will be in the next beta release, but depending on which version of Kartris you have, this is the fix:

v2.8xxx and earlier:

App_Code/EntityClasses/Basket.vb

v2.9000+

App_Code/BLL/BasketBLL.vb

In both cases, find this

numPrice = numPrice + objItem.OptionPrice

Replace with
numPrice = numPrice + CurrenciesBLL.ConvertCurrency(SESS_CurrencyID, .OptionPrice)
By Cabrach - Wed 7 Oct 2015
Thanks, that's worked perfectlySmile