こんばんわ。現在、アソシエーションのプログラムを行なっております。
customer:calls = 1:多
の関係を構築しており、目標としてCusotmerモデルの中にあるtel
カラムをcallに紐付けてインポートを行えるようにしたいと考えています。
callには
def self.call_attributes ["tel" ,"statu", "time", "comment", "created_at","updated_at"] end #call_import def self.call_import(call_file) CSV.foreach(call_file.path, headers: true) do |row| call = Call.find_by(id: row["id"]) || new customer = Customer.find_by(tel: row["tel"]) call.attributes = row.to_hash.slice(*call_attributes) call.customer_id = customer&.id call.save! end end
上記のようにCustomer.telのrowをtelとします。
belongs_to :customer has_many :calls
上記のようにプログラムしております。既にcallにcustomer_idは認識されておりますが、customer_telを認識させるにはどうすれば良いでしょうか?よろしくお願い致します。
Completed 500 Internal Server Error in 95ms (ActiveRecord: 41.9ms) ActiveModel::UnknownAttributeError (unknown attribute 'tel' for Call.): app/models/call.rb:29:in `block in call_import' app/models/call.rb:26:in `call_import' app/controllers/customers_controller.rb:149:in `call_import'
上記、telをrowに入れインポートした際のエラーです。
create_table "customers", force: :cascade do |t| t.string "company" t.string "store" t.string "url_2" t.string "extraction_date" end
create_table "calls", force: :cascade do |t| t.string "statu" t.datetime "time" t.string "comment" t.integer "customer_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.integer "admin_id" t.integer "crm_id" t.integer "customer_tel_id" t.integer "user_id" t.index ["admin_id"], name: "index_calls_on_admin_id" t.index ["crm_id"], name: "index_calls_on_crm_id" t.index ["customer_id"], name: "index_calls_on_customer_id" t.index ["customer_tel_id"], name: "index_calls_on_customer_tel_id" t.index ["user_id"], name: "index_calls_on_user_id" end
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/14 02:37
2020/05/14 04:14 編集
2020/05/14 08:26