소스 검색

Merge branch 'develop' into fix-urlencode

pull/2/head
Rushabh Mehta 7 년 전
committed by GitHub
부모
커밋
81a664f091
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      payments/templates/pages/razorpay_checkout.py

+ 2
- 1
payments/templates/pages/razorpay_checkout.py 파일 보기

@@ -5,6 +5,7 @@ import frappe
from frappe import _
from frappe.utils import flt, cint
import json
from six import string_types

no_cache = 1
no_sitemap = 1
@@ -39,7 +40,7 @@ def get_api_key():
def make_payment(razorpay_payment_id, options, reference_doctype, reference_docname):
data = {}

if isinstance(options, basestring):
if isinstance(options, string_types):
data = json.loads(options)

data.update({


불러오는 중...
취소
저장