私はdjango-oscarフレームワークを使用してショッピングWebサイトを開発しています。実際、サンドボックスサイトを使用しています。チェックアウトプロセスに支払いを追加したいのですが、完全に混乱しています。
このリンクを読みました:「オスカーの支払い統合ドキュメント」
そして私は全体像を手に入れました。また、チェックアウト アプリでファイル views.py を読みましたが、ウェブ上で見つけられなかったいくつかの質問があります。
私の質問は、次のプロセスを処理するためにオーバーライドまたは作成する必要があるメソッド/クラスは何ですか?
ユーザーが支払いを要求した後、銀行に要求を送信し、必要なパラメーター (コード内の pay_request_parameters ) を提供する必要があります。
次に、彼らは Id を送信し、私のアクセスを確認します。次に、その Id をアドレスに投稿し、ユーザーを銀行の Web ページにリダイレクトする必要があります。
ユーザーが銀行への支払いを完了すると、最初のステップで私が提供したコールバック URL への投稿が通知されます。
その情報を使用して、支払いが成功したことを確認し、成功した場合は、銀行に決済を依頼して、お金を送ってもらう必要があります。
今、私が持っているコードは最初の 2 つのステップを実行しますが、サンドボックスでのリダイレクト後にプロセスを処理する方法がわかりません。ここに私のコードがあります:
from oscar.apps.checkout import views
from oscar.apps.payment import models
from oscar.apps.payment.exceptions import *
import requests
import datetime
mellat_services_url = 'https://bpm.shaparak.ir/pgwchannel/services/pgw?wsdl'
start_pay_url = 'https://bpm.shaparak.ir/pgwchannel/startpay.mellat'
terminal_id = 'xxx'
username = 'xxx'
password = 'xxx'
# Subclass the core Oscar view so we can customise
class PaymentDetailsView(views.PaymentDetailsView):
def handle_payment(self, order_number, total, **kwargs):
# Talk to payment gateway. If unsuccessful/error, raise a
# PaymentError exception which we allow to percolate up to be caught
# and handled by the core PaymentDetailsView.
# mellat cycle start
local_date = str(datetime.date.today())[0:4] + str(datetime.date.today())[5:7] + str(datetime.date.today())[8:10]
local_time = str(datetime.datetime.now().time())[0:2] + str(datetime.datetime.now().time())[3:5] + str(datetime.datetime.now().time())[6:8]
# call bpPayRequest and get refId
pay_request_parameters = {'terminalId': terminal_id, 'userName': username,
'userPassword': password, 'orderId': order_number,
'amount': total.incl_tax, 'localDate': local_date,
'localTime': local_time, 'additionalData': ""
'callBackUrl': 'mysite.com/checkout/preview/'}
pay_request_answer = requests.post(mellat_services_url, pay_request_parameters)
if not pay_request_answer.split(",")[0] == 0:
response_code = pay_request_answer.split(",")[0]
if response_code[0] == '1':
raise UnableToTakePayment()
else:
raise PaymentError()
requests.post(start_pay_url, pay_request_answer.split(",")[1])
raise RedirectRequired(start_pay_url)
# post the refId to bank and then redirect customer to the bank
# apparently wait for the bank ( like for 10 mins ) to get the payment status
# if the bank responded with success, the you verify the payment with a post to the bank
# if everything was verified, tell the bank for a settlement
# mellat cycle end
#The rest should be implemented but I dont know where I should put this
#All I know is that it should be done after the verification with the data
#sent from the bank.
reference = gateway.pre_auth(order_number, total.incl_tax, kwargs['bankcard'])
# Payment successful! Record payment source
source_type, __ = models.SourceType.objects.get_or_create(
name="SomeGateway")
source = models.Source(
source_type=source_type,
amount_allocated=total.incl_tax,
reference=reference)
self.add_payment_source(source)
# Record payment event
self.add_payment_event('pre-auth', total.incl_tax)
前もって感謝します。