简体   繁体   English

如何在PayPal定期付款中添加多个金额?

[英]How to add multiple amount in PayPal recurring payment?

I want to use recurring biling system in my website. 我想在我的网站中使用重复使用的双语系统。 For that my requirement is 为此,我的要求是

"A customer purchases a $300 annual plan. Next year it will automatically take another payment for renewal at $250 which is slightly lower than the original $300." “一位客户购买了300美元的年度套餐。明年,它会自动以250美元的价格再次收取续订费用,这比原来的300美元略低。”

Below is the example: 下面是示例:

<form action="https://sandbox.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_xclick-subscriptions">
    <input type="hidden" name="business" value="chinmay235-facilitator@gmail.com">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="no_shipping" value="1">
    <input type="hidden" name="description" value="Test Prouct" />
    <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    <input type="hidden" name="a3" value="250.00">
    <input type="hidden" name="p3" value="1"> 
    <input type="hidden" name="t3" value="Y">
    <input type="hidden" name="src" value="1">
    <input type="hidden" name="sra" value="1">
</form>

From the above example takes one amount which is a3 as recurring amount $250 each year once but i need the recurring billing system takes $300 for the first time and the recurring billing amount is $250 从上面的示例中,每年一次需要一笔金额为a3重复金额$ 250,但我需要重复开单系统第一次需要$ 300,重复开票金额为$ 250

Please let me know what should be the parameter for one time payment which is $300 请让我知道一次付款的参数应该是300美元

Thanks... 谢谢...

<form action="https://sandbox.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_xclick-subscriptions">
    <input type="hidden" name="business" value="chinmay235-facilitator@gmail.com">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="no_shipping" value="1">
    <input type="hidden" name="description" value="Test Prouct" />
    <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    <input type="hidden" name="a1" value="300.00">
    <input type="hidden" name="p1" value="1"> 
    <input type="hidden" name="t1" value="Y">
    <input type="hidden" name="a3" value="250.00">
    <input type="hidden" name="p3" value="1"> 
    <input type="hidden" name="t3" value="Y">
    <input type="hidden" name="src" value="1">
    <input type="hidden" name="sra" value="1">
    <input type="hidden" name="bn" value="AngellEYE_PHPClass">
</form>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM