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

1234567891011
  1. from django.db import models
  2. from oscar.apps.partner import abstract_models
  3. class StockRecord(abstract_models.AbstractStockRecord):
  4. # Dummy additional field
  5. offer_name = models.CharField(max_length=128, null=True, blank=True)
  6. from oscar.apps.partner.models import * # noqa