Search the Community
Showing results for tags 'standard'.
-
I'm looking for recommendations as to whether to use PayPal Express or Standard, or both on my site. I have standard running for about 4 weeks and I see it's worth it. I'd love to hear opinions on this.
-
Liebe osCommerce Gemeinschaft, Bei meinem Shop (v2.3.) habe ich erfolgreich die PayPal App installiert und verwende PayPal Standard. Jetzt wird bei der E-Mail-Benachrichtigung der Zusatz – Widerruf nicht angehängt? Ich habe dieses Problem auch schon im deutschen Forum nachgefragt, doch bis jetzt konnte mir niemand helfen. http://forums.oscommerce.de/topic/83050-bei-paypal-standard-keine-e-mail-bestätigung Was muss ich machen damit der Widerruf-Zusatz in der E-Mail angezeigt wird? Beste Grüße, Frank -- Hello osCommerce Community In my store (v2.3). I have successfully installed the PayPal app and use PayPal standard. Now in the e-mail notification is the addition - not appended withdrawal? I checked this problem already in the German forum, but until now no one could help me. http://forums.oscommerce.de/topic/83050-bei-paypal-standard-keine-e-mail-bestätigung What do I need in order to make the withdrawal additive in the e-mail is displayed? Best Regards, Frank
-
I added raiwas @@raiwa paypal invoice fix for PayPal standard. http://addons.oscommerce.com/info/8491 somehow the tax calculation doesn't seem to be right on the PayPal payment site. I ship domestic and international. International customers don't have to pay VAT here in my country so my shop and the PayPal module show everything correctly during the checkout and payment process. The problem starts when a domestic customer pays with PayPal. Here is the Layout in my Shop (checkout_confirmation.php page) Item 1 -> 1620 Yen Item 2 -> 1080 Yen ------------------------------ Sub-Total: 2700 Yen + Shipping 810 Yen ------------------------------ Total: 3510 Yen (incl. 8% VAT, 260 Yen) As you can see all prices are incl. 8% VAT the items, the shipping cost and at the end inside the brackets you see how much VAT is included in the total amount. Now PayPal shows me this Layout: Item 1 -> 1500 Yen Item 2 -> 1000 Yen ------------------------------ Sub-Total: 2500 Yen Tax: 260 Yen Shipping: 810 Yen ------------------------------ Total: 3570 Yen PayPal shows the item prices without VAT (which i don't mind) but later after the subtotal he adds 260 Yen VAT and additional shipping of 810 Yen (which includes 8% VAT again) So PP charges the VAT for the shipping cost twice that's why the 60 Yen price difference. He pulls the VAT of the total amount and the shipping cost. How to prevent this? I could turn of tax for the shipping cost in my shop but then the shop calculation would not be right. This following code is raiwas invoice fix (btw. thanks for that @@raiwa! :thumbsup: ) $parameters = array('cmd' => '_cart', 'upload' => '1', 'handling_cart' => $this->format_raw($order->info['shipping_cost']), 'shopping_url' => STORE_URL.'/'.FILENAME_STORE, 'tax_cart' => $this->format_raw($order->info['tax']), 'business' => MODULE_PAYMENT_PAYPAL_STANDARD_ID, 'currency_code' => $currency, 'invoice' => substr($cart_PayPal_Standard_ID, strpos($cart_PayPal_Standard_ID, '-')+1), 'custom' => $customer_id, 'no_note' => '1', 'notify_url' => tep_href_link('ext/modules/payment/paypal/standard_ipn.php', '', 'SSL', false, false), 'return' => tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL'), 'cancel_return' => tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'), 'bn' => 'osCommerce22_Default_ST', 'paymentaction' => ((MODULE_PAYMENT_PAYPAL_STANDARD_TRANSACTION_METHOD == 'Sale') ? 'sale' : 'authorization')); for ($i=0, $n=sizeof($order->products); $i<$n; $i++) { $j = $i + 1; $attributes_description = ''; if ( (isset($order->products[$i]['attributes'])) && (sizeof($order->products[$i]['attributes']) > 0) ) { for ($j2=0, $n2=sizeof($order->products[$i]['attributes']); $j2<$n2; $j2++) { $attributes_description = $attributes_description . " (" . $order->products[$i]['attributes'][$j2]['option'] . ': ' . $order->products[$i]['attributes'][$j2]['value'] . ")"; } } $parameters['item_name_'.$j] = $order->products[$i]['name'] . $attributes_description; $parameters['amount_'.$j] = $this->format_raw($order->products[$i]['final_price']); $parameters['quantity_'.$j] = $order->products[$i]['qty']; } and how can i change the Layout in the PayPal site? I would like to have the Tax part shown AFTER the shipping cost. Item Item ------------- Sub-total +shipping +tax ------------ Total Something like that. Kind regards Tsimi
- 13 replies