1 # These are the "variations" of an OrderShippingType
3 # They allow an admin to specify weight ranges and prices
4 # for an OrderShippingType.
6 class OrderShippingWeight
8 include DataMapper::Persistable
10 belongs_to :order_shipping_type
12 property :min_weight, :float, :default => 0.0, :nullable => false
13 property :max_weight, :float, :default => 0.0, :nullable => false
14 property :price, :float, :default => 0.0, :nullable => false