Subversion Repositories SmartDukaan

Rev

Rev 13577 | Rev 13664 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13577 Rev 13610
Line 68... Line 68...
68
    tracingkUrl  = None
68
    tracingkUrl  = None
69
    placedOn  = None
69
    placedOn  = None
70
    trackingNumber  = None
70
    trackingNumber  = None
71
    amountPaid  = None 
71
    amountPaid  = None 
72
    quantity  = None
72
    quantity  = None
-
 
73
    cashBackStatus = None
-
 
74
    cashBackAmount = None
-
 
75
    closed = None
73
    
76
    
74
    def __init__(self, productTitle, productUrl, placedOn, amountPaid, status=Store.ORDER_PLACED, quantity = 1):
77
    def __init__(self, productTitle, productUrl, placedOn, amountPaid, status=Store.ORDER_PLACED, quantity = 1):
75
        self.productTitle = productTitle
78
        self.productTitle = productTitle
76
        self.productUrl = productUrl
79
        self.productUrl = productUrl
77
        self.placedOn = placedOn
80
        self.placedOn = placedOn
78
        self.amountPaid = amountPaid
81
        self.amountPaid = amountPaid
79
        self.status = status
82
        self.status = status
80
        self.quantity = 1
83
        self.quantity = 1
-
 
84
        self.closed = False
81
    
85
    
82
 
86