Commit cb165566 by 泽锋 李

fix

parent f612a905
......@@ -1726,18 +1726,18 @@ left join dc_base_warehouse as tdb on t1.warehouse_code = tdb.warehouse_code whe
{
if (search_data.warehousetype == "中国")
{
sql += " and t2.hq_type=@warehousetype ";
sql += " and tdb.hq_type=@warehousetype ";
parameters.Add("warehousetype", "国内仓");
}
else
{
if ("amazon".Equals(search_data.platform_type, StringComparison.OrdinalIgnoreCase))
{
sql += " and t2.hq_type in ('fba仓') ";
sql += " and tdb.hq_type in ('fba仓') ";
}
else
{
sql += " and t2.hq_type not in ('国内仓') ";
sql += " and tdb.hq_type not in ('国内仓') ";
}
}
......
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