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

1234567891011121314151617181920212223242526272829303132
  1. """
  2. Vanilla implementation of order models
  3. """
  4. from django.db import models
  5. from oscar.order.abstract_models import *
  6. from oscar.address.abstract_models import AbstractAddress, AbstractDeliveryAddress, AbstractBillingAddress
  7. class Order(AbstractOrder):
  8. pass
  9. class Batch(AbstractBatch):
  10. pass
  11. class DeliveryAddress(AbstractDeliveryAddress):
  12. pass
  13. class BillingAddress(AbstractBillingAddress):
  14. pass
  15. class BatchLine(AbstractBatchLine):
  16. pass
  17. class BatchLineEvent(AbstractBatchLineEvent):
  18. pass
  19. class BatchLineEventType(AbstractBatchLineEventType):
  20. pass
  21. class BatchLineAttribute(AbstractBatchLineAttribute):
  22. pass