質問編集履歴
2
試したことを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,6 +64,22 @@
|
|
64
64
|
|
65
65
|
|
66
66
|
|
67
|
+
## 試したこと
|
68
|
+
|
69
|
+
・present?を使う
|
70
|
+
|
71
|
+
scopeの下部を
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
{ asset_name: search_name.present? ? "%#{search_name}%" : "", industry_id: search_name.present? ? "#{industry_id}" : "" }
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
この場合でも``を検索してしまい、結果がゼロ件になってしまう。
|
80
|
+
|
81
|
+
|
82
|
+
|
67
83
|
## 環境
|
68
84
|
|
69
85
|
Rails 6.0
|
1
不必要な情報の削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
```
|
58
58
|
|
59
|
-
@items = @items.
|
59
|
+
@items = @items.name_and_id_search_in_items_or_masters(index_search_params[:search_name],index_search_params[:search_id])
|
60
60
|
|
61
61
|
|
62
62
|
|