当前位置: 首页>>代码示例>>Python>>正文


Python SoapClient.runCustomerTransaction方法代码示例

本文整理汇总了Python中pysimplesoap.client.SoapClient.runCustomerTransaction方法的典型用法代码示例。如果您正苦于以下问题:Python SoapClient.runCustomerTransaction方法的具体用法?Python SoapClient.runCustomerTransaction怎么用?Python SoapClient.runCustomerTransaction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pysimplesoap.client.SoapClient的用法示例。


在下文中一共展示了SoapClient.runCustomerTransaction方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: add_transaction_to_usaepay

# 需要导入模块: from pysimplesoap.client import SoapClient [as 别名]
# 或者: from pysimplesoap.client.SoapClient import runCustomerTransaction [as 别名]
 def add_transaction_to_usaepay(self, token, usaepay_customer_id):
     if settings.TEST_MODE:
         return 123456
     client = SoapClient(wsdl=settings.USAEPAY_WSDL,
                         trace=True,
                         ns=False)
     description = ''
     if self.autorefill and not self.company.blank_usaepay_description:
         description = 'Prepaid Phone recharge for %s' % self.autorefill.phone_number
     params = {
         u'Command': 'Sale',
         u'Details': {
             u'Amount': self.amount,
             u'Description': description,
             u'Invoice': '%s' % self.id,
             # u'OrderID': '',
             # u'PONum': '',
         }
     }
     response = client.runCustomerTransaction(Token=token,
                                              CustNum=usaepay_customer_id,
                                              PaymentMethodID=0,
                                              Parameters=params)
     result_code = response['runCustomerTransactionReturn']['ResultCode']
     if 'A' == result_code:
         result = response['runCustomerTransactionReturn']['RefNum']
         return result
     elif 'D' == result_code:
         self.atransaction = response['runCustomerTransactionReturn']['RefNum']
         self.save()
         raise Exception('Transaction Declined: %s' % response['runCustomerTransactionReturn']['Error'])
     else:
         self.atransaction = response['runCustomerTransactionReturn']['RefNum']
         self.save()
         raise Exception('Transaction Error: %s' % response['runCustomerTransactionReturn']['Error'])
开发者ID:adulenzy,项目名称:Auto-phone-recharge-system,代码行数:37,代码来源:models.py


注:本文中的pysimplesoap.client.SoapClient.runCustomerTransaction方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。