Subversion Repositories SmartDukaan

Rev

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

Rev 14072 Rev 21844
Line 17... Line 17...
17
    id = Field(Integer, primary_key=True, autoincrement=True)
17
    id = Field(Integer, primary_key=True, autoincrement=True)
18
    name = Field(String(30))
18
    name = Field(String(30))
19
    phone = Field(String(12))
19
    phone = Field(String(12))
20
    fax = Field(String(12))
20
    fax = Field(String(12))
21
    tin = Field(String(10))
21
    tin = Field(String(10))
-
 
22
    gstin = Field(String(20))
22
    pan = Field(String(10))
23
    pan = Field(String(10))
23
    headName = Field(String(30))
24
    headName = Field(String(30))
24
    headDesignation = Field(String(20))
25
    headDesignation = Field(String(20))
25
    headEmail = Field(String(50))
26
    headEmail = Field(String(50))
26
    contactName = Field(String(30))
27
    contactName = Field(String(30))
Line 57... Line 58...
57
        t_supplier.contactEmail = self.contactEmail
58
        t_supplier.contactEmail = self.contactEmail
58
        t_supplier.registeredAddress = self.registeredAddress
59
        t_supplier.registeredAddress = self.registeredAddress
59
        t_supplier.communicationAddress = self.communicationAddress
60
        t_supplier.communicationAddress = self.communicationAddress
60
        t_supplier.stateId = self.stateId
61
        t_supplier.stateId = self.stateId
61
        t_supplier.poValidityLimit = self.poValidityLimit
62
        t_supplier.poValidityLimit = self.poValidityLimit
62
        
63
        t_supplier.gstin = self.gstin
63
        return t_supplier
64
        return t_supplier
64
65