You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

models.py 232B

1234567891011121314
  1. from oscar.apps.payment.abstract_models import *
  2. class Source(AbstractSource):
  3. pass
  4. class SourceType(AbstractSourceType):
  5. pass
  6. class Transaction(AbstractTransaction):
  7. pass
  8. class Bankcard(AbstractBankcard):
  9. pass