Subversion Repositories SmartDukaan

Rev

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

Rev 13721 Rev 13781
Line 74... Line 74...
74
    cashBackStatus = None
74
    cashBackStatus = None
75
    cashBackAmount = None
75
    cashBackAmount = None
76
    cashBackPercentage = None
76
    cashBackPercentage = None
77
    imgUrl = None
77
    imgUrl = None
78
    closed = None
78
    closed = None
-
 
79
    missingAff = None
79
    
80
    
80
    def __init__(self, productTitle, productUrl, placedOn, amountPaid, status=Store.ORDER_PLACED, quantity = 1):
81
    def __init__(self, productTitle, productUrl, placedOn, amountPaid, status=Store.ORDER_PLACED, quantity = 1):
81
        self.productTitle = productTitle
82
        self.productTitle = productTitle
82
        self.productUrl = productUrl
83
        self.productUrl = productUrl
83
        self.placedOn = placedOn
84
        self.placedOn = placedOn
84
        self.amountPaid = amountPaid
85
        self.amountPaid = amountPaid
85
        self.status = status
86
        self.status = status
86
        self.quantity = 1
87
        self.quantity = 1
87
        self.closed = False
88
        self.closed = False
-
 
89
        self.missingAff = True
88
    
90
    
89
 
91