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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. from oscar.apps.order.abstract_models import *
  2. from oscar.apps.address.abstract_models import AbstractShippingAddress, AbstractBillingAddress
  3. class Order(AbstractOrder):
  4. pass
  5. class OrderNote(AbstractOrderNote):
  6. pass
  7. class CommunicationEvent(AbstractCommunicationEvent):
  8. pass
  9. class ShippingAddress(AbstractShippingAddress):
  10. pass
  11. class BillingAddress(AbstractBillingAddress):
  12. pass
  13. class Line(AbstractLine):
  14. pass
  15. class LinePrice(AbstractLinePrice):
  16. pass
  17. class LineAttribute(AbstractLineAttribute):
  18. pass
  19. class ShippingEvent(AbstractShippingEvent):
  20. pass
  21. class ShippingEventType(AbstractShippingEventType):
  22. pass
  23. class PaymentEvent(AbstractPaymentEvent):
  24. pass
  25. class PaymentEventType(AbstractPaymentEventType):
  26. pass
  27. class OrderDiscount(AbstractOrderDiscount):
  28. pass