Functional tests now work properly, bearing in mind whether a user is logged in or...
[depot.git] / app / models / line_item.rb
index 988324ce31782a3ecf6e441960390f484968b478..3e3afed73532113bdaae232dbbf698c4d97fff0d 100644 (file)
@@ -1,2 +1,12 @@
 class LineItem < ActiveRecord::Base
+  belongs_to :order
+  belongs_to :product
+
+#  def self.from_cart_item(cart_item)
+#    li = self.new
+#    li.product      = cart_item.product
+#    li.quantity     = cart_item.quantity
+#    li.total_price  = cart_item.price
+#    li
+#  end
 end