Subversion Repositories SmartDukaan

Rev

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

Rev 21844 Rev 22491
Line 869... Line 869...
869
    updatedAt = Field(DateTime)
869
    updatedAt = Field(DateTime)
870
    packageDimensions = Field(String(20))
870
    packageDimensions = Field(String(20))
871
    using_options(shortnames=True)
871
    using_options(shortnames=True)
872
    using_table_options(mysql_engine="InnoDB")
872
    using_table_options(mysql_engine="InnoDB")
873
    
873
    
-
 
874
class CodCourierPaymentRemittance(Entity):
-
 
875
    id = Field(Integer, primary_key=True, autoincrement=True)
-
 
876
    provider_id = Field(Integer)
-
 
877
    airwayBillNo = Field(String(50))
-
 
878
    collectionReference = Field(String(50))
-
 
879
    amount = Field(Float)
-
 
880
    settledAt = Field(DateTime)
-
 
881
    using_options(shortnames=True)
-
 
882
    using_table_options(mysql_engine="InnoDB")
-
 
883
    
874
class PMSA(Entity):
884
class PMSA(Entity):
875
    id = Field(Integer, primary_key=True, autoincrement=True)
885
    id = Field(Integer, primary_key=True, autoincrement=True)
876
    name = Field(String(256))
886
    name = Field(String(256))
877
    phone = Field(String(10))
887
    phone = Field(String(10))
878
    emailId = Field(String(50))
888
    emailId = Field(String(50))