KonaKart Community Forum

Installation / Configuration => Programming of KonaKart => Topic started by: Anni on December 04, 2007, 03:38:11 pm

Title: User selecting the currency???
Post by: Anni on December 04, 2007, 03:38:11 pm
hi everyone,

I was wondering if it's possible (with the existing code) to allow users to select the currency they want to use. similar to the languages tile. or can I actually use that jsp as a guideline and write something similar for currencies?

regards,
anni
Title: Re: User selecting the currency???
Post by: trevor on December 04, 2007, 03:50:55 pm
Anni,

We haven't implemented multicurrency display because it can be missleading. i.e. You may show the product prices in multiple currencies but then your payment gateway will probably only accept one currency and provide an exchange rate which is different to the one that you use on the web site and so a customer ends up paying a different amount to what he though he was paying.

The databse supports it (there is a multiplier in the currency object) so in theory you could implement it but it would be quite an arduous task since you'd have to process all of the prices before they get displayed.

Trevor
Title: Re: User selecting the currency???
Post by: Anni on December 05, 2007, 11:49:05 am
hi,

thanks for the answer. I already feared that it would be like this.
but what about not letting the user select it but doing it myself based on the delivery country. I've seen in another post that for doing anything to the prices before checkout, I could edit CheckoutConfirmationSubmitAction.java. would that also be the place to edit the selected currencies?

and another question. how can I check, which product options have been selected?

regards,
anni
Title: Re: User selecting the currency???
Post by: Anni on December 05, 2007, 03:01:38 pm
where do the compiled action classes go? do I have to update the konakart-custom.jar???

regards,
anni
Title: Re: User selecting the currency???
Post by: julie on December 05, 2007, 03:18:35 pm
No, they go under WEB-INF/classes etc. and will override the ones in the jar.
Title: Re: User selecting the currency???
Post by: Anni on December 05, 2007, 03:22:42 pm
ok, thanks :)
Title: Re: User selecting the currency???
Post by: Anni on December 17, 2007, 11:07:11 am
hi again,

just another question. which JSPs and classes do I have to edit when I want to let the customer select the currency at checkout? I've had a look at the checkout actions and JSPs but I'm not sure which ones I need  :-\ 

regards,
anni