mingwireless Posted March 30, 2011 Share Posted March 30, 2011 hi alli have some problem here with the ( new order e-mail ) on this bottom of the error message :PayPal response: TIMESTAMP -> 2011-03-30T22:38:11Z TRANSACTIONID -> 8U237574MB732500G TRANSACTIONTYPE -> cart PAYMENTTYPE -> instant ORDERTIME -> 2011-03-30T22:38:10Z AMT -> 16.95 FEEAMT -> 0.79 TAXAMT -> 1.95 CURRENCYCODE -> CAD PAYMENTSTATUS -> Completed PENDINGREASON -> None REASONCODE -> None PROTECTIONELIGIBILITY -> Eligible INSURANCEOPTIONSELECTED -> false SHIPPINGOPTIONISDEFAULT -> false Order finished with PayPal!dose any body know what is this problem ? how to fix? i am using the latest PS1.4 and the paypal version 2.4 any idea for this issue?ThanksMing Link to comment Share on other sites More sharing options...
shokinro Posted March 30, 2011 Share Posted March 30, 2011 this message doesn't look like an error? I can tell where is the problem. Link to comment Share on other sites More sharing options...
IBICO Posted April 1, 2011 Share Posted April 1, 2011 Also getting this, but not sure if it is an error. When people write a message with his/her order it does not say this message.PayPal response: TIMESTAMP -> 2011-03-31T22:54:41Z TRANSACTIONID -> 7MR4469892889541K TRANSACTIONTYPE -> expresscheckout PAYMENTTYPE -> instant ORDERTIME -> 2011-03-31T22:54:40Z AMT -> 91.00 FEEAMT -> 3.21 TAXAMT -> 0.00 CURRENCYCODE -> USD PAYMENTSTATUS -> Completed PENDINGREASON -> None REASONCODE -> None PROTECTIONELIGIBILITY -> Ineligible INSURANCEOPTIONSELECTED -> false SHIPPINGOPTIONISDEFAULT -> false Order finished with PayPal! Link to comment Share on other sites More sharing options...
tomerg3 Posted April 1, 2011 Share Posted April 1, 2011 Usually PAYMENTSTATUS -> Completed means it was completed.Do you see the order posted in your payapl account?Do you see the order in the PS orders page?If you answeres yes to the two above, please add [solved] to your first post title. Link to comment Share on other sites More sharing options...
shokinro Posted April 1, 2011 Share Posted April 1, 2011 it seems that the messages are kind of log, not error message.where does those message show up, on the front office page? or back office order information page?If it is at back office, then you can just ignore it. Link to comment Share on other sites More sharing options...
mingwireless Posted April 1, 2011 Author Share Posted April 1, 2011 Yes we got all those you said , what about this messages when received the NEW ORDER from the customer by e-mail?: PayPal response: TIMESTAMP -> 2011-03-30T22:38:11Z TRANSACTIONID -> 8U237574MB732500G TRANSACTIONTYPE -> cart PAYMENTTYPE -> instant ORDERTIME -> 2011-03-30T22:38:10Z AMT -> 16.95 FEEAMT -> 0.79 TAXAMT -> 1.95 CURRENCYCODE -> CAD PAYMENTSTATUS -> Completed PENDINGREASON -> None REASONCODE -> None PROTECTIONELIGIBILITY -> Eligible INSURANCEOPTIONSELECTED -> false SHIPPINGOPTIONISDEFAULT -> false Order finished with PayPal! also you can see that the same messages at the back Office order detail section too see Attach PIC, its that any way to fix? or just ignore it?Thanks Link to comment Share on other sites More sharing options...
shokinro Posted April 1, 2011 Share Posted April 1, 2011 This is just log message. It is not error.If your order and everything is fine, then just ignore it. Link to comment Share on other sites More sharing options...
soggy moggie Posted April 7, 2011 Share Posted April 7, 2011 What if the order isnt fine? Link to comment Share on other sites More sharing options...
shokinro Posted April 7, 2011 Share Posted April 7, 2011 in that case, the message should be different.it should tel you what was wrong.you can try to find out what is the cause. Link to comment Share on other sites More sharing options...
delite Posted April 7, 2011 Share Posted April 7, 2011 Is there any way to make the paypal module return to your shop in default shop currency and not in the currency you paid? My currency isn't supported by PayPal so i used the prestashop integrated currency converter to convert my currency in to USD but after the customer send the payment when its getting back to my shop all the prices are in USD and not RON. Link to comment Share on other sites More sharing options...
shokinro Posted April 7, 2011 Share Posted April 7, 2011 I think it is known bug? or PrestaShop specification?I have fixed this issue in my Agile Paypal module. Also you can find it here on how to fix this issue. Link to comment Share on other sites More sharing options...
delite Posted April 7, 2011 Share Posted April 7, 2011 I think it is known bug? or PrestaShop specification?I have fixed this issue in my Agile Paypal module. Also you can find it here on how to fix this issue. Thank you for answering, in paypal 2.4 there is now redirect.php in main folder. There is one redirect.php file in /modules/paypal/standard, i edited and added:// check currency of payment $customercurrency = $cookie->id_currency; if ($currency_order->id != $currency_module->id) { $cookie->id_currency = $currency_module->id; $cart->id_currency = $currency_module->id; $cart->update(); } and $cookie->id_currency = $customercurrency; by the end of the file ( there is no end of script as indicated in your blog ) but when i return to my shop the currency is still in USD and not my default shop currency Link to comment Share on other sites More sharing options...
shokinro Posted April 7, 2011 Share Posted April 7, 2011 sorry, it is misunderstanding. My solution is that for fixing the customer currency lost issue.If you want yo change back to default currency please change last line as following(you don't need to add the first line) $cookie->id_currency = intval(Configuration::get('PS_CURRENCY_DEFAULT')); Link to comment Share on other sites More sharing options...
delite Posted April 7, 2011 Share Posted April 7, 2011 I will try to be more explicit, my store default currency is RON(my store currency isnt supported by paypal), paypal currency is set as USD so when i chose PayPal as payment method its converting the amount my customer has to pay in RON in USD, everything is working good until my customer return to shop where all the prices are displayed in USD and not RON any more. P.S. i tried to add $cookie->id_currency = intval(Configuration::get('PS_CURRENCY_DEFAULT')); as last line in /modules/paypal/standard/redirect.php with no luck.EDITED: after reading your blog once again, "issue 2" is exactly what's happening, customer losing its currency after completing or cancel the order. Link to comment Share on other sites More sharing options...
shokinro Posted April 7, 2011 Share Posted April 7, 2011 if you pud the code at the end of redirect.php file.the currency should be changed back to default currency.I don't why it doesn't work. $cookie->id_currency = intval(Configuration::get('PS_CURRENCY_DEFAULT')); I just tried at my demo site, it works finesyou can have try here (note: email is disabled, you will not receive any email)http://expresscheckout.dyndns.org:8080/shop1417/My default currency is USD, you can choose any currency at front and go to Paypal and cancel it come back. it will change back to default currency USD Link to comment Share on other sites More sharing options...
delite Posted April 7, 2011 Share Posted April 7, 2011 What prestashop version are you using and what paypal module version? Im using prestashop 1.4.0.17 and paypal 2.4. Link to comment Share on other sites More sharing options...
shokinro Posted April 7, 2011 Share Posted April 7, 2011 I didn't see you image attached.and I got confused. Is that what you wanted? Change back to default currency (USD at my demo site) Link to comment Share on other sites More sharing options...
delite Posted April 7, 2011 Share Posted April 7, 2011 thats exactly what i want, im sorry im a bit tired (its 5 AM here). What prestashop version do you have and what paypal module version? Im using prestashop 1.4.0.17 and PayPal module 2.14 maybe thats why i cant make it work.... Link to comment Share on other sites More sharing options...
shokinro Posted April 8, 2011 Share Posted April 8, 2011 The URL in my previous post is PrestaShop 1.4.0.17 and using Paypal 2.4I attached the redirect.php in this post for your reference.put this file to following folder/modules/paypal/standard/ redirect.php Link to comment Share on other sites More sharing options...
Recommended Posts