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

1234567891011121314151617181920
  1. from exceptions import Exception
  2. from oscar.apps.basket.abstract_models import (AbstractBasket, AbstractLine, AbstractLineAttribute,
  3. OPEN, MERGED, SAVED, SUBMITTED)
  4. class InvalidBasketLineError(Exception):
  5. pass
  6. class Basket(AbstractBasket):
  7. pass
  8. class Line(AbstractLine):
  9. pass
  10. class LineAttribute(AbstractLineAttribute):
  11. pass