paypal交易历史记录会产生额外的定期付款

时间:2013-05-09 23:58:40

标签: paypal paypal-sandbox

我正在使用paypal重复出现的宝石:

https://github.com/fnando/paypal-recurring

对于rails应用程序上的ruby

以下是我的代码的选定部分:

 def make_recurring

    process :request_payment

    if @plan
      create_units
      process :create_recurring_profile, period: @plan.recurring, amount: (@plan.price), frequency: 1, start_at: Time.zone.now        
    end
  end


 def process(action, options={})
    not_recurring_amount =  @cart.total_price  
    not_recurring_amount += 19.95 if @plan #add activation price for first payment

    options = options.reverse_merge(
      token: @order.paypal_payment_token,
      payer_id: @order.paypal_customer_token,
      description: "Your product total is below",
      amount: not_recurring_amount.round(2),
      currency: "USD"
    )

    response = PayPal::Recurring.new(options).send(action)
    raise response.errors.inspect if response.errors.present?
    response
  end

基本上,用户购买产品并收取239.95的费用。然后用户通过一次激活购买产品计划并收取33.95的费用。这些都是一次性付款。然后,当他们购买该计划时,他们还会按照该通话时间计划每月收取14.95美元的费用。一切似乎都有效,但我注意到在我的贝宝沙盒帐户中另一个反复出现的费用是空白的:

enter image description here

为什么会发生空白?

1 个答案:

答案 0 :(得分:1)

这不是实际收费,只是创建个人资料的记录。您必须首先创建一个配置文件,然后才能收费。这可以在您看到的PayPal帐户中反映出来。