Soucis entre mon flash et Paypal

Fermé
Caiman - 12 déc. 2008 à 17:12
 Caiman - 12 déc. 2008 à 17:30
Bonjour,

Voilà je viens de mettre en ligne un petit site E-commerce sous flash qui fonctionne très bien. Pour le règlement je renvoi sur mon compte Paypal. Le soucis est que j'arrive bien sur ma page de paiement mais il m'affiche mon prix en USD alors que sur le site je suis en Euro. Voici le code d'envoi sur le compte Paypal :

function buyProducts() {
for (a=1; a<=_root.cart_Arr.length; a++) {
this['item_name_'+a] = _root.cart_Arr[a-1].label;
this['item_number_'+a] = _root.cart_Arr[a-1].code;
this['quantity_'+a] = _root.cart_Arr[a-1].quantity;
this['amount_'+a] = _root.cart_Arr[a-1].price+currency;
this['shipping_'+a] = 0.00;
}
business = "boutique@richard-drink.fr";
cmd = '_cart';
upload = 1;
invoice = random(120000);

getURL("https://www.paypal.com/fr/home", "_blank", "POST");

Comment faire je ne comprends pas du tout ou je doit modifier pour préciser que c'est en Euro.

Merci pour votre aide !

Sinon allez faire un petit outr sur www.richard-drink.fr un ptit concept sympa et innovant.

Caiman
A voir également:

1 réponse

La ligne de renvoi sur paypal est plutot ça : getURL("https://www.paypal.com/fr/webapps/mpp/home", "_blank", "POST");

Merci
0