Commit 32e592a6 by 泽锋 李

fix

parent 09573f06
...@@ -918,8 +918,8 @@ where 1=1 "; ...@@ -918,8 +918,8 @@ where 1=1 ";
if (!string.IsNullOrWhiteSpace(m.product_inner_code)) if (!string.IsNullOrWhiteSpace(m.product_inner_code))
{ {
sql += " and t3.product_inner_code=@product_inner_code "; sql += " and t3.product_inner_code in @product_inner_codes ";
parameters.Add("product_inner_code", m.product_inner_code); parameters.Add("product_inner_codes", m.product_inner_code.Split(',').ToList());
} }
if (m.type != null) if (m.type != null)
{ {
......
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