本文整理匯總了Python中models.order.Order.orderRefundAgent方法的典型用法代碼示例。如果您正苦於以下問題:Python Order.orderRefundAgent方法的具體用法?Python Order.orderRefundAgent怎麽用?Python Order.orderRefundAgent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.order.Order
的用法示例。
在下文中一共展示了Order.orderRefundAgent方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: post
# 需要導入模塊: from models.order import Order [as 別名]
# 或者: from models.order.Order import orderRefundAgent [as 別名]
def post(self):
tUrl = "https://api-3t.paypal.com/nvp"
tPaypalPayload = {}
tPaypal = PaypalRefund()
tAgent = Agent()
tOrder = Order()
tUser = users.get_current_user()
tTransId = str(self.request.get("orderid"))
tAgentEmail = str(tUser.email())
tAgent = Agent().GetAgentByEmail(tAgentEmail)
tRefundAgent = tAgentEmail
tOrderQuery = Order.all()
tOrderQuery.filter("orderTransactionId", tTransId)
# logging.debug("Transaction id: " + tTransId)
tOrder = tOrderQuery.get()
if tOrder.orderDeliver != "True":
tPaypalPayload["METHOD"] = "RefundTransaction"
tPaypalPayload["TRANSACTIONID"] = tTransId
tPayloadEncoded = tPaypal.GeneratePayload(tPaypalPayload)
request_cookies = mechanize.CookieJar()
request_opener = mechanize.build_opener(mechanize.HTTPCookieProcessor(request_cookies))
request_opener.addheaders = [("Content-Type", "application/x-www-form-urlencoded")]
mechanize.install_opener(request_opener)
tResponse = mechanize.urlopen(url=tUrl, timeout=25.0, data=tPayloadEncoded)
# logging.debug("Mechanize Package")
# logging.debug("Url: " + tUrl)
# logging.debug("Data: " + str(tPaypalPayload))
tResult = tResponse.read()
# logging.debug(tResult)
tOrder.orderIsRefunded = "True"
tOrder.orderRefundAgent = tRefundAgent
tOrder.orderLocked = "True"
tOrder.orderRefundId = ""
tOrder.put()
self.response.out.write("Order Locked and Refunded")