Commit 90770c83 by lizefeng

采购建议支持sku多个查询

parent 98e2c509
......@@ -824,8 +824,8 @@ where 1=1 ";
}
if (!string.IsNullOrWhiteSpace(m.sku))
{
sql += $" and t1.bailun_sku=@bailun_sku ";
parameters.Add("bailun_sku", m.sku);
sql += $" and t1.bailun_sku in @bailun_skus ";
parameters.Add("bailun_skus", m.sku.Split(',').ToList());
}
if (m.warehouse_code != 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