при интеграции razorpay с django. платеж прошел успешно, но не получил order_id
в моем файле views.py
def pay (request):
if request.method=='POST':
order_amount = 50000
order_currency = 'INR'
order_receipt = 'order_rcptid_11'
notes = {'Shipping address': 'Bommanahalli, Bangalore'}
ash=client.order.create(amount=order_amount, currency=order_currency, receipt=order_receipt, notes=notes, payment_capture='0')
print(ash)
return render(request, 'shop/pay.html')
и я получил сообщение об ошибке
AttributeError в / shop / pay / module 'razorpay.client' не имеет атрибута 'order'