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 184B

1234567
  1. u"""Vanilla implementation of Datacash models"""
  2. from django.db import models
  3. from oscar.datacash.abstract_models import Transaction
  4. class Transaction(AbstractTransaction):
  5. pass