| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- u"""Vanilla implementation of order models"""
- from django.db import models
-
- from oscar.order.abstract_models import *
- from oscar.address.abstract_models import AbstractShippingAddress, AbstractBillingAddress
-
- class Order(AbstractOrder):
- pass
-
- class OrderNote(AbstractOrderNote):
- pass
-
- class CommunicationEvent(AbstractCommunicationEvent):
- pass
-
- class CommunicationEventType(AbstractCommunicationEventType):
- pass
-
- class ShippingAddress(AbstractShippingAddress):
- pass
-
- class BillingAddress(AbstractBillingAddress):
- pass
-
- class Line(AbstractLine):
- pass
-
- class LinePrice(AbstractLinePrice):
- pass
-
- class LineAttribute(AbstractLineAttribute):
- pass
-
- class ShippingEvent(AbstractShippingEvent):
- pass
-
- class ShippingEventType(AbstractShippingEventType):
- pass
-
- class PaymentEvent(AbstractPaymentEvent):
- pass
-
- class PaymentEventType(AbstractPaymentEventType):
- pass
-
- class OrderDiscount(AbstractOrderDiscount):
- pass
-
-
-
|