Pass the user's locale along to PayPal. If it is supported, then the checkout screen on PayPal will be in the user's locale. Fixes bug #12119.

This commit is contained in:
Colin Kuskie 2011-06-06 10:32:14 -07:00
parent b21a6e331b
commit 3c0cf0f1a5
3 changed files with 5 additions and 0 deletions

View file

@ -9,6 +9,7 @@
- fixed #12136: Unable to add more than one image in Story
- fixed #12133: RenderThingData macro doesn't accept templateId
- fixed #12152: PayPal Standard ignores shop-credit
- fixed #12119: Locale setting for paypal
7.10.17
- fixed: Forced to use a PayDriver even with a balance of 0 in the cart.

View file

@ -191,6 +191,7 @@ PayPal API spit back.
sub processPayment {
my ( $self, $transaction ) = @_;
my $i18n = WebGUI::International->new($self->session);
my $form = $self->payPalForm(
METHOD => 'DoExpressCheckoutPayment',
PAYERID => $self->session->form->process('PayerId'),
@ -198,6 +199,7 @@ sub processPayment {
AMT => $self->getCart->calculateTotal,
CURRENCYCODE => $self->get('currency'),
PAYMENTACTION => 'SALE',
LOCALECODE => $i18n->getLanguage->{locale},
);
my $response = LWP::UserAgent->new->post( $self->apiUrl, $form );
my $params = $self->responseHash($response);

View file

@ -240,6 +240,7 @@ sub paymentVariables {
my $url = $self->session->url;
my $base = $url->getSiteURL . $url->page;
my $cart = $self->getCart;
my $i18n = WebGUI::International->new($self->session);
my $return = URI->new($base);
$return->query_form( {
@ -262,6 +263,7 @@ sub paymentVariables {
return => $return->as_string,
cancel_return => $cancel->as_string,
lc => $i18n->getLanguage->{locale},
handling_cart => $cart->calculateShipping, ##According to https://www.x.com/message/180018#180018
tax_cart => $cart->calculateTaxes,