回答編集履歴
2
文法の修正
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
items_attributes: [:quantity, :price]).tap do |p|
|
18
18
|
|
19
|
-
p[:items_attributes].reject! { |i| i[:
|
19
|
+
p[:items_attributes].reject! { |i| i[:quantity].to_i.zero? }
|
20
20
|
|
21
21
|
end
|
22
22
|
|
1
文法の修正
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
items_attributes: [:quantity, :price]).tap do |p|
|
18
18
|
|
19
|
-
p[:items_attributes].reject! { |i| i[: quantity].to_i.zero?}
|
19
|
+
p[:items_attributes].reject! { |i| i[: quantity].to_i.zero? }
|
20
20
|
|
21
21
|
end
|
22
22
|
|