Commit 6a5e335b by ivan Lan

Fix the last commit

parent 57524ea2
...@@ -58,7 +58,7 @@ module Shotengai ...@@ -58,7 +58,7 @@ module Shotengai
if val.keys.sort == product.spec_template.keys.sort if val.keys.sort == product.spec_template.keys.sort
keys = []; values = []; keys = []; values = [];
proc = Proc.new { |k, v| keys << "spec_value->'$.\"#{k}\"' = ? "; values << v } proc = Proc.new { |k, v| keys << "spec_value->'$.\"#{k}\"' = ? "; values << v }
val === Harray ? val.hash_map(&proc) : val.map(&proc) Shotengai::Harray === val ? val.hash_map(&proc) : val.map(&proc)
where(product: product).where(keys.join(' and '), *values) where(product: product).where(keys.join(' and '), *values)
else else
self.none self.none
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment