質問編集履歴

1

インポートコードの追加

2020/07/15 09:19

投稿

KOO_
KOO_

スコア58

test CHANGED
File without changes
test CHANGED
@@ -39,3 +39,33 @@
39
39
 
40
40
 
41
41
  するプログラムを組みたいのですが、どなたかご教示頂けないでしょうか?
42
+
43
+
44
+
45
+ ```
46
+
47
+ def self.import(file)
48
+
49
+ save_cont = 0
50
+
51
+ CSV.foreach(file.path, headers:true) do |row|
52
+
53
+ customer = find_by(id: row["id"]) || new
54
+
55
+ customer.attributes = row.to_hash.slice(*updatable_attributes)
56
+
57
+ next if self.where(tel: customer.tel, industry: customer.industry) > 0
58
+
59
+ next if self.where.not(industry: nil)
60
+
61
+ customer.save!
62
+
63
+ save_cnt += 1
64
+
65
+ end
66
+
67
+ save_cont
68
+
69
+ end
70
+
71
+ ```