Python - 如何在Pinax Stripe订阅中传递数量?

时间:2016-09-16 17:08:53

标签: python django stripe-payments pinax

我在我的Django项目中使用pinax条带包,用户可以在其中注册多个人进行订阅。

我知道条带有一个数量参数,可以为订阅传递但在pinax包中找不到它。

有人可以指导我如何在pinax-stripe包中传递quantity参数?

1 个答案:

答案 0 :(得分:0)

Like this

Subscription.objects.create(
    customer=self.customer,
    plan=plan,
    quantity=1
)