次のようにcustomer_bill
との間に関連付けを作成しました。customer_bill_line_item
class CustomerBill < ActiveRecord::Base
attr_accessible :customer_bill_line_items_attributes
has_many :customer_bill_line_items, :dependent =>:destroy
accepts_nested_attributes_for :customer_bill_line_items, :allow_destroy => true
end
class CustomerBillLineItem < ActiveRecord::Base
attr_accessible :customer_bill_id
belongs_to :customer_bill, :foreign_key => "customer_bill_id"
end
作成モードでフォームに入ると、次のエラーが発生します。
uninitialized constant CustomerBill::CustomerBillLineItem
Extracted source (around line #66):
63: <%end%>
64:
65:
66: <%= f.fields_for :customer_bill_line_items do |builder| %>
67: <%= render 'customer_bill_line_item_fields', :f => builder %>
68: <%end%>
完全なスタック トレースはコメントに記載されています。
customer_bills_controller
のように作成する必要がある関連付けはあります@customer_bill.customer_bill_line_items
か??
ガイダンスが必要です。前もって感謝します。