I'm trying to create a simple POS (Point of Sale) system.
I have associations set up in the order models to the items and seats (tables)
class Order < ActiveRecord::Base
has_many :order_splits
has_many :order_split_items, :through => :order_splits
belongs_to :seat, :foreign_key =>...