1

私の目標は、ユーザーと特定のプロジェクトの関係ごとに選択ボックスを表示することです。すべてのユーザーをリストする必要がありますが、プロジェクト ユーザーのみが何らかの関係を持っています。他のユーザーは、自分の選択ボックスで何も選択していません。

私はこのモデルを持っています:

class Project < ActiveRecord::Base
    belongs_to :company
    has_many :tasks, :order => 'state_type_id ASC'

    has_many :project_user_relations
    has_many :users, :through => :project_user_relations

    def t_name
       name.camelcase
    end
end

class User < ActiveRecord::Base
    belongs_to :company

    has_many :tasks , :foreign_key => :assigned_user_id 

    has_many :project_user_relations
    has_many :projects, :through => :project_user_relations

    def full_name
     firstname + ' ' + lastname
    end

    def relation_to(project)
     relation=ProjectUserRelation.find_by_project_id_and_user_id(project.id, id)
     relation ||= relation=ProjectUserRelation.new
    end
end

class ProjectUserRelation < ActiveRecord::Base
    belongs_to :project
    belongs_to :user
    has_one :project_user_relation_type
end

class ProjectUserRelationType < ActiveRecord::Base
    def t_name
        I18n.t("app.projects.users.relation.type."+code)
    end
end

collection_selectで全ユーザーを表示するフォームを作りたい。私はコードを使用しました:

def edit_all
   @project = Project.find(params[:project_id])
   @users = User.all
....

私のコントローラー ルートでは問題なく動作します。

私からしてみれば:

<% @users.each do |user| %>
   <%= f.fields_for :users, user do |user_fields| %>
     <tr class="reference" rel="<%=  parent_user_path(user)  %>" >
        <td class="name"><%= link_to user.full_name, parent_user_path(user) %></td>
        <td class="email"><%= mail_to user.email %></td>
        <td class="type">
            <%= user_fields.fields_for user.relation_to @project do |relation_fields| %>
                <%= relation_fields.collection_select :project_user_relation_type, ProjectUserRelationType.all, :id, :t_name, {:include_blank => false, :prompt => t("helpers.select.prompt") } %>
            <%  end %>
         </td>
      </tr>
   <% end %>      
<% end %>     

またはテスト用:

<%= f.fields_for :users, @users do |xuser_fields| %>
    <% logger.debug "#{self.to_s} xuser_fields = #{xuser_fields.object.inspect} ;" %>
    <tr>
       <td><%= xuser_fields.text_field :firstname %></td>
       <td></td>
       <td></td>
       <td></td>
    </tr>
<% end %>

しかし、中華鍋は正しくありません

最初のものはhtmlで間違った名前を生成します:

select id="project_users_project_user_relation_project_user_relation_type" name="project[ユーザー][project_user_relation][project_user_relation_type]"

2 つ目はエラーを生成します: undefined method `firstname' for # Array:0x4d03658

この状況を解決するのを手伝ってくれませんか。

PS:長いコードで申し訳ありません:(


解決策 (おそらく - RoR ソースを読むことで解決)

私は解決策を見つけました。

方法

def name_attributes=(attributes)
    # Process the attributes hash
end

in Project モデルがありませんでした。

それは信じられない解決策です:]。fields_for: :name, @some_collection の後にも正確な構文があります。ここで、 nameは、Model で言及されている def の冒頭とまったく同じ名前でなければなりません

4

0 に答える 0