Currency Converter & Option Group Products

Posted By Cabrach Wed 7 Oct 2015
Add to Favorites1
Author Message
Cabrach
 Posted Wed 7 Oct 2015
Supreme Being

Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)

Group: Forum Members
Last Active: Tue 3 Nov 2015
Posts: 5, Visits: 57

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.


Paul
 Posted Wed 7 Oct 2015
große Käse

große Käse - (456,638 reputation)große Käse - (456,638 reputation)große Käse - (456,638 reputation)große Käse - (456,638 reputation)große Käse - (456,638 reputation)große Käse - (456,638 reputation)große Käse - (456,638 reputation)große Käse - (456,638 reputation)große Käse - (456,638 reputation)

Group: Administrators
Last Active: 1 hour ago
Posts: 806, Visits: 2,738
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)


--
If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.

If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb
Cabrach Marked As Answer
 Posted Wed 7 Oct 2015
Supreme Being

Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)Supreme Being - (2,193 reputation)

Group: Forum Members
Last Active: Tue 3 Nov 2015
Posts: 5, Visits: 57
Thanks, that's worked perfectlySmile

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top