Subversion Repositories SmartDukaan

Rev

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

Rev 23081 Rev 23096
Line 60... Line 60...
60
    amount = Field(Integer)
60
    amount = Field(Integer)
61
    creditedOn = Field(DateTime)
61
    creditedOn = Field(DateTime)
62
    using_options(shortnames=True)
62
    using_options(shortnames=True)
63
    using_table_options(mysql_engine="InnoDB")
63
    using_table_options(mysql_engine="InnoDB")
64
    
64
    
-
 
65
class PendingRechargeCommissions(Entity):
-
 
66
    user_id=Field(Integer, primary_key=True)
-
 
67
    approvedAmountInPaise = Field(Integer)
-
 
68
    lastUpdated = Field(DateTime)
-
 
69
    using_options(shortnames=True)
-
 
70
    using_table_options(mysql_engine="InnoDB")
-
 
71
    
-
 
72
    
65
class LineItem(Entity):
73
class LineItem(Entity):
66
    id = Field(Integer, primary_key=True, autoincrement=True)
74
    id = Field(Integer, primary_key=True, autoincrement=True)
67
    item_id = Field(Integer)
75
    item_id = Field(Integer)
68
    productGroup = Field(String(100))
76
    productGroup = Field(String(100))
69
    brand = Field(String(100))
77
    brand = Field(String(100))