Commit 40b57004 by 泽锋 李

新增缺货改零轨迹页面

parent 3661807f
...@@ -499,14 +499,14 @@ where 1=1 "; ...@@ -499,14 +499,14 @@ where 1=1 ";
if (!string.IsNullOrWhiteSpace(platform)) if (!string.IsNullOrWhiteSpace(platform))
{ {
sql += " t1.platform=@platform "; sql += " and t1.platform=@platform ";
countSql += " t1.platform=@platform "; countSql += " and t1.platform=@platform ";
parameters.Add("platform", platform); parameters.Add("platform", platform);
} }
if (!string.IsNullOrWhiteSpace(bailun_sku)) if (!string.IsNullOrWhiteSpace(bailun_sku))
{ {
sql += " t1.bailun_sku=@bailun_sku "; sql += " and t1.bailun_sku=@bailun_sku ";
countSql += " t1.bailun_sku=@bailun_sku "; countSql += " and t1.bailun_sku=@bailun_sku ";
parameters.Add("bailun_sku", bailun_sku); parameters.Add("bailun_sku", bailun_sku);
} }
......
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