Subversion Repositories SmartDukaan

Rev

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

Rev 14460 Rev 14532
Line 129... Line 129...
129
        self.amountPaid = amountPaid
129
        self.amountPaid = amountPaid
130
        self.status = status
130
        self.status = status
131
        self.quantity = quantity
131
        self.quantity = quantity
132
        self.closed = False
132
        self.closed = False
133
        self.missingAff = True
133
        self.missingAff = True
-
 
134
        
-
 
135
class FeaturedDeals():
-
 
136
    
-
 
137
    def __init__(self, sku, category_id, thresholdPrice, rank):
-
 
138
        self.sku = sku
-
 
139
        self.category_id = category_id
-
 
140
        self.thresholdPrice = thresholdPrice
-
 
141
        self.rank = rank 
134
    
142
    
135
 
143