0

私は次のネストされたフォームを持っています:

<%= form_for @contrat,:url => backend_orders_update_report_url(@contrat) do |f| %>
<%= f.fields_for :contrat_lines do |fcl| %>
    <%=  fcl.object.inspect  %>
  <% end %>
<% end %>

出力は次のとおりです。

nil 

ネストされたフォームでは、いくつかの要素をフォームとしてではなく生のテキストとして表示し、いくつかの要素をフォーム フィールドとして表示したいと考えています。通常、f.object.name を実行するフォームでは、名前にアクセスして、必要に応じて表示できます。しかし、ここで fcl.object を実行すると、nil しかありません。contrat_line オブジェクトの検査を表示する必要があります。

ネストされた形式でデータにアクセスすることは可能ですか?

編集 :

コントローラーのアクション:

def show_report
  @contrat = Contrat.find(params[:id])
end

最初の関係でモデルがどのように見えるかを次に示します。

ContratLine :

class ContratLine < ActiveRecord::Base
  include Priceable

  belongs_to :contrat
  belongs_to :good
  #a enlever ici et dans la base
  attr_accessible :active_start,:active,:good_id,:pricing,:contrat
  validates :active_start, :presence=> true,:if => "active"
  validate :active_start_smaller_than_active_stop
  validate :active_start_day_cannot_be_greater_than_28
  has_one :pricing, :as => :priceable, :dependent => :delete
  before_validation :convert_month_year_to_date
  after_save :set_user_subscription_date

契約 :

class Contrat < ActiveRecord::Base

  has_many :contrat_lines, :dependent => :delete_all

  belongs_to :user
  attr_accessible :user_id,:pricing_id,:state,:adresse_id,:adresse,:payment,:adresse_attributes,:automatic,:start_date,:end_date
  enum_attr :state, %w(basket waiting_data to_confirm paid) do
    labels :basket=>'Panier',  :to_confirm=>'Non payé',:paid=>'Payé'
  end
  enum_attr :payment, %w(debit_card wire_transfer cheque direct_debit)
  belongs_to :adresse
  accepts_nested_attributes_for :adresse, :allow_destroy => true
  scope :by_state,  lambda { |state| where("state = ?",state) }
  scope :last_automatic, where("automatic = true").order("invoice_date DESC")
  scope :last_with_adresse, where("state != 'basket'").order("invoice_date DESC")

  before_validation :set_numbers
4

1 に答える 1

1

attr_accessibleにaccepts_nested_attributes_for:contrat_linesと:contrat_lines_attributesがありません

于 2013-02-10T11:47:04.327 に答える