質問編集履歴
2
ニュアンスの編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -170,7 +170,7 @@
|
|
170
170
|
|
171
171
|
###どの項目でまとめたいのか
|
172
172
|
|
173
|
-
**「
|
173
|
+
**日付単位で「kcal」の合計値をまとめたいです。**
|
174
174
|
|
175
175
|
|
176
176
|
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -125,3 +125,55 @@
|
|
125
125
|
なにかいい方法がありましたらご教授いただければと思います。
|
126
126
|
|
127
127
|
よろしくお願い致します。
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
##追記
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
### Fooddiaryの構造
|
136
|
+
|
137
|
+
```
|
138
|
+
|
139
|
+
create_table "fooddiaries", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t|
|
140
|
+
|
141
|
+
t.integer "fooddate_id"
|
142
|
+
|
143
|
+
t.integer "user_id"
|
144
|
+
|
145
|
+
t.integer "idealweight_id"
|
146
|
+
|
147
|
+
t.integer "gram"
|
148
|
+
|
149
|
+
t.integer "kcal"
|
150
|
+
|
151
|
+
t.integer "protein"
|
152
|
+
|
153
|
+
t.integer "fat"
|
154
|
+
|
155
|
+
t.integer "carbo"
|
156
|
+
|
157
|
+
t.string "timing"
|
158
|
+
|
159
|
+
t.date "date"
|
160
|
+
|
161
|
+
t.datetime "created_at", null: false
|
162
|
+
|
163
|
+
t.datetime "updated_at", null: false
|
164
|
+
|
165
|
+
end
|
166
|
+
|
167
|
+
```
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
###どの項目でまとめたいのか
|
172
|
+
|
173
|
+
**「Kcal」を日付単位でまとめたいです。**
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
newアクションにて食品毎にkcalが登録されていくので、それらを日付毎にまとめ合計値をindexに反映させたいです。
|
178
|
+
|
179
|
+
現状では合計値ではなくそれぞれ登録されたものが反映されております。
|