您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

models.py 982B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. u"""Vanilla implementation of order models"""
  2. from django.db import models
  3. from oscar.order.abstract_models import *
  4. from oscar.address.abstract_models import AbstractShippingAddress, AbstractBillingAddress
  5. class Order(AbstractOrder):
  6. pass
  7. class OrderNote(AbstractOrderNote):
  8. pass
  9. class CommunicationEvent(AbstractCommunicationEvent):
  10. pass
  11. class CommunicationEventType(AbstractCommunicationEventType):
  12. pass
  13. class Batch(AbstractBatch):
  14. pass
  15. class ShippingAddress(AbstractShippingAddress):
  16. pass
  17. class BillingAddress(AbstractBillingAddress):
  18. pass
  19. class BatchLine(AbstractBatchLine):
  20. pass
  21. class BatchLinePrice(AbstractBatchLinePrice):
  22. pass
  23. class ShippingEvent(AbstractShippingEvent):
  24. pass
  25. class ShippingEventType(AbstractShippingEventType):
  26. pass
  27. class PaymentEvent(AbstractPaymentEvent):
  28. pass
  29. class PaymentEventType(AbstractPaymentEventType):
  30. pass
  31. class BatchLineAttribute(AbstractBatchLineAttribute):
  32. pass