回答編集履歴

2

追記

2020/06/08 12:02

投稿

winterboum
winterboum

スコア23567

test CHANGED
@@ -3,3 +3,17 @@
3
3
  が逆ですね
4
4
 
5
5
  next if Call.where(statu: "APP").present?
6
+
7
+
8
+
9
+ 『直近1ヶ月で更新されていない』もおかしいですね
10
+
11
+ next if self.where('created_at > ?', "1.month.ago.all_day").blank?
12
+
13
+ ですと、「新規作成がここ一月」であるものがない場合は パス(importしない)
14
+
15
+ ですね。
16
+
17
+ next if customer.updated_at < Time.now - 1.month
18
+
19
+ では?

1

typo修正

2020/06/08 12:02

投稿

winterboum
winterboum

スコア23567

test CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  が逆ですね
4
4
 
5
- next if Call.where(statu: "APP").prexent?
5
+ next if Call.where(statu: "APP").present?