class Quotation < CommLogistics::Base::Model::SuperiorOrder
  include Comm::Module::Model::Logging
  has_many :child_details,
           :class_name => 'QuotationDetail',
           :dependent => :destroy,
           :order => 'seq_number'
  has_many :quotations
  has_one :order
end
