Subversion Repositories SmartDukaan

Rev

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

Rev 19351 Rev 19451
Line 412... Line 412...
412
        self.messagetext = messagetext 
412
        self.messagetext = messagetext 
413
        self.smsprocessed = smsprocessed
413
        self.smsprocessed = smsprocessed
414
        self.notification_processed = notification_processed
414
        self.notification_processed = notification_processed
415
        self.notification_type = notification_type 
415
        self.notification_type = notification_type 
416
        self.notification_long_text = None
416
        self.notification_long_text = None
417
            
-
 
418
417
            
-
 
418
class CrmRefundWallet:
-
 
419
    def __init__(self, user_id,email_id,mobile,amount,type,store,reference_no,reference_desc,status,created):
-
 
420
        self.user_id = user_id
-
 
421
        self.email_id = email_id
-
 
422
        self.mobile = mobile
-
 
423
        self.amount = amount
-
 
424
        self.type = type
-
 
425
        self.store = store
-
 
426
        self.reference_no = reference_no
-
 
427
        self.reference_desc = reference_desc
-
 
428
        self.status = status
-
 
429
        self.created_timestamp = created
-
 
430
        self.update_timestamp = None        
-
 
431
419
432