コード例 #1
0
ファイル: profile.py プロジェクト: syntheistnode/nadine
 def auto_bill_enabled(self):
     if not hasattr(settings, 'USA_EPAY_KEY'):
         return None
     api = PaymentAPI()
     return api.auto_bill_enabled(self.user.username)
コード例 #2
0
ファイル: core.py プロジェクト: nadineproject/nadine
 def auto_bill_enabled(self):
     api = PaymentAPI()
     return api.auto_bill_enabled(self.user.username)
コード例 #3
0
ファイル: core.py プロジェクト: StarSpace46/nadine
 def auto_bill_enabled(self):
     api = PaymentAPI()
     return api.auto_bill_enabled(self.user.username)
コード例 #4
0
ファイル: profile.py プロジェクト: nadineproject/nadine
 def auto_bill_enabled(self):
     if not hasattr(settings, 'USA_EPAY_SOAP_KEY'):
         return None
     api = PaymentAPI()
     return api.auto_bill_enabled(self.user.username)