class PrintReleaf::QuoteItem

Public Instance Methods

paper_type() click to toggle source
# File lib/printreleaf/quote_item.rb, line 9
def paper_type
  return nil if paper_type_id.nil?
  @paper_type ||= Paper::Type.find(paper_type_id)
end