私はうまく機能するPayPal URLアプローチを使用していますが、税金を請求しようとすると、すべての商品の合計値にのみ税金が適用されるように見えますが、合計商品+送料に税金を請求したいと思います。
商品 $100.00、配送料 $20.00、小計 $120.00、税 (10%) $12.00、総計 $132.00
私はうまく機能するPayPal URLアプローチを使用していますが、税金を請求しようとすると、すべての商品の合計値にのみ税金が適用されるように見えますが、合計商品+送料に税金を請求したいと思います。
商品 $100.00、配送料 $20.00、小計 $120.00、税 (10%) $12.00、総計 $132.00
金額ではなく税率を適用するように税変数を変更しました。現時点では、サービスは通常非課税であるため、PayPal は配送料を含めて税金を請求していません。
これが要件である場合は、投稿を PayPal に送信する前に、サイトの合計税額を計算することをお勧めします。値は tax_1 フィールドに入力できます。2 番目の投稿でこの例を示しました。
https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_cart
&business=xxxxxxxxxxxxxx_biz@gmail.com
&button_subtype=services
&upload=1
&no_note=1
¤cy_code=USD
&rm=1
&item_name_1=Product1
&amount_1=200.00
&quantity_1=2
&item_name_2=Product2
&amount_2=200.00
&quantity_2=2
&shipping_2=6
&tax_rate_1=10
&tax_rate_2=10
&return=http://staging.xxxx.com/store/success.aspx
&cancel_return=http://staging.xxxx.com/store/failed.aspx
金額を計算する例を次に示します。各アイテムの税額ではなく、1 つの税額のみを送信していることに注意してください。PayPal は項目別の税額をお客様に表示しないため、お客様の側に影響はありません。
https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_cart
&business=xxxxxxxxxxxxxx_biz@gmail.com
&button_subtype=services
&upload=1
&no_note=1
¤cy_code=USD
&rm=1
&item_name_1=Product1
&amount_1=200.00
&quantity_1=2
&item_name_2=Product2
&amount_2=200.00
&quantity_2=2
&shipping_2=6
&tax_1=10
&return=http://staging.xxxx.com/store/success.aspx
&cancel_return=http://staging.xxxx.com/store/failed.aspx