本文整理匯總了Python中models.order.Order.orderSimpleGoldAmount方法的典型用法代碼示例。如果您正苦於以下問題:Python Order.orderSimpleGoldAmount方法的具體用法?Python Order.orderSimpleGoldAmount怎麽用?Python Order.orderSimpleGoldAmount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.order.Order
的用法示例。
在下文中一共展示了Order.orderSimpleGoldAmount方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: ProcessOrder
# 需要導入模塊: from models.order import Order [as 別名]
# 或者: from models.order.Order import orderSimpleGoldAmount [as 別名]
#.........這裏部分代碼省略.........
tPayloadEncoded = tOrderHandler.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)
tResult = str(urllib.unquote(tResponse.read()))
tResultSplit = tResult.split("&")
for tPair in tResultSplit:
tSplitPair = tPair.split("=")
if len(tSplitPair) == 1:
tSplitPair.append("")
tResultDictionary[tSplitPair[0]] = tSplitPair[1]
logging.debug(tSplitPair[0] + " " + tSplitPair[1])
tGoldAmountString = tResultDictionary["L_NAME0"]
logging.debug("Gold amount string %s".format(tGoldAmountString))
try:
tGoldRegex = re.compile("([0-9]*?[m|M]).T")
tGoldMatch = tGoldRegex.findall(tGoldAmountString)
# logging.debug("Backup gold amount parser hit, string " + tGoldAmountString + " Match: " + tGoldMatch[0])
tGoldAmount = tGoldMatch[0]
except:
tGoldRegex = re.compile("([0-9]*?[m|M]).T")
tGoldMatch = tGoldRegex.findall(tGoldAmountString)
try:
# logging.debug("Backup gold amount parser hit, string " + tGoldAmountString + " Match: " + tGoldMatch[0])
tGoldAmount = tGoldMatch[0]
except:
# logging.debug("No gold match")
tGoldAmount = ""
tOrder.orderQuantity = NumberToGp.ConvertBetToInt(tGoldAmount)
tOrder.orderSimpleGoldAmount = tGoldAmount
tOrder.orderFormEmail = tEmail
tOrder.orderAccountName = tRsName
tOrder.orderMobileNumber = tMobilePhone
tOrder.orderPromotionalCode = tPromotionCode.lower()
tOrder.orderIp = tOrderIp
if tMembers == "yes":
tOrder.orderCustomerIsMember = True
else:
tOrder.orderCustomerIsMember = False
# Paypal Info
tOrder.orderTransactionId = tTransactionId
tOrder.orderPaypalFirstName = tCustomerFirstName
tOrder.orderPaypalLastName = tCustomerLastName
tOrder.orderCost = float(tArgumentDic["payment_gross"])
tOrder.orderCustomerPaypalId = tArgumentDic["payer_id"]
tOrder.orderPaypalEmail = str(tPaypalEmail).lower()
tAssignedAgentNick = tPaypalOrder.GetAssignedAgent(tOrder)
tOrder.orderAssignedAgent = tAssignedAgentNick
# logging.debug("Order assigned to agent: " + str(tAssignedAgentNick))
tOrder.orderReferralCode = tReferCode
tOrder.orderDeliver = "False"
if tOrder.orderVerificationCode == None or tOrder.orderVerificationCode == "":
tOrder.orderVerificationCode = re.sub(r"\W", "", str(uuid.uuid4())).lower()
tCurrentEocPrices = PriceContainer.GetCurrentPriceDic()