Subversion Repositories SmartDukaan

Rev

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

Rev 10295 Rev 14072
Line 28... Line 28...
28
    contactFax = Field(String(12))
28
    contactFax = Field(String(12))
29
    contactEmail = Field(String(50))
29
    contactEmail = Field(String(50))
30
    registeredAddress = Field(String(100))
30
    registeredAddress = Field(String(100))
31
    communicationAddress = Field(String(100))
31
    communicationAddress = Field(String(100))
32
    stateId = Field(Integer)
32
    stateId = Field(Integer)
-
 
33
    poValidityLimit = Field(Integer)
33
    using_options(shortnames=True)
34
    using_options(shortnames=True)
34
    using_table_options(mysql_engine="InnoDB")
35
    using_table_options(mysql_engine="InnoDB")
35
    
36
    
36
    def __init__(self):
37
    def __init__(self):
37
        '''
38
        '''
Line 55... Line 56...
55
        t_supplier.contactFax = self.contactFax
56
        t_supplier.contactFax = self.contactFax
56
        t_supplier.contactEmail = self.contactEmail
57
        t_supplier.contactEmail = self.contactEmail
57
        t_supplier.registeredAddress = self.registeredAddress
58
        t_supplier.registeredAddress = self.registeredAddress
58
        t_supplier.communicationAddress = self.communicationAddress
59
        t_supplier.communicationAddress = self.communicationAddress
59
        t_supplier.stateId = self.stateId
60
        t_supplier.stateId = self.stateId
-
 
61
        t_supplier.poValidityLimit = self.poValidityLimit
60
        
62
        
61
        return t_supplier
63
        return t_supplier
62
64