Subversion Repositories SmartDukaan

Rev

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

Rev 1249 Rev 1261
Line 45... Line 45...
45
    unit_price = Field(Float)
45
    unit_price = Field(Float)
46
    unit_weight = Field(Float)
46
    unit_weight = Field(Float)
47
    total_price = Field(Float)
47
    total_price = Field(Float)
48
    transfer_price = Field(Float)
48
    transfer_price = Field(Float)
49
    total_weight = Field(Float)
49
    total_weight = Field(Float)
-
 
50
    transfer_price = Field(Float)
50
    order = ManyToOne("Order")
51
    order = ManyToOne("Order")
51
    using_options(shortnames=True)
52
    using_options(shortnames=True)
52
    using_table_options(mysql_engine="InnoDB")
53
    using_table_options(mysql_engine="InnoDB")
53
    
54
    
54
class Order(Entity):
55
class Order(Entity):