回答編集履歴
1
追記
test
CHANGED
@@ -27,3 +27,51 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
と解釈されます。
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
---
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
**コメントに返信**
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
> redirect_to productions_searches_path
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
モデルのなかでredirect_toを使うのは避けた方がいいでしょう。
|
46
|
+
|
47
|
+
(そもそも使えないと思います。)
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
LIKE検索でもないのに%で囲む意味がよくわかりませんが
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
```ruby
|
56
|
+
|
57
|
+
Production.where(date: date).
|
58
|
+
|
59
|
+
where(group_id: group_id).
|
60
|
+
|
61
|
+
where(product_id: product_id)
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
```ruby
|
68
|
+
|
69
|
+
Production.where("(date = ?) AND (group_id = ?) AND (product_id = ?)",
|
70
|
+
|
71
|
+
date, group_id, product_id)
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
どっちでもよかったはずです。
|