Subversion Repositories SmartDukaan

Rev

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

Rev 669 Rev 731
Line 49... Line 49...
49
    using_options(shortnames=True)
49
    using_options(shortnames=True)
50
 
50
 
51
class ServiceableLocationDetails(Entity):
51
class ServiceableLocationDetails(Entity):
52
    provider = ManyToOne("Provider", primary_key=True)
52
    provider = ManyToOne("Provider", primary_key=True)
53
    dest_pincode = Field(String(6), primary_key=True)
53
    dest_pincode = Field(String(6), primary_key=True)
54
    dest_code = Field(String(5))
54
    dest_code = Field(String(10))
55
    exp = Field(Boolean)
55
    exp = Field(Boolean)
56
    cod = Field(Boolean)
56
    cod = Field(Boolean)
57
    station_type = Field(Integer)
57
    station_type = Field(Integer)
58
    using_options(shortnames=True)
58
    using_options(shortnames=True)
59
 
59