Commit a514d05e by 泽锋 李

fba实时库存,新增asin查询

parent 0e4b307b
......@@ -851,6 +851,11 @@ left join dc_base_warehouse as t4 on t1.warehouse_code = t4.warehouse_code
countSql += " and t3.product_inner_code = @product_inner_code ";
parameters.Add("product_inner_code", $"{search_data.key_words}");
break;
case 6:
sql += " and t1.asin = @asin ";
countSql += " and t1.asin = @asin ";
parameters.Add("asin", $"{search_data.key_words}");
break;
}
}
......
......@@ -458,6 +458,8 @@ namespace AutoTurnOver.Models
{
[Description("监控状态")]
public int? monitor_status { get; set; }
[Description("Asin")]
public string asin { get; set; }
public bool isSum { get; set; }
public bool is_warehouse_sum { get; set; }
......
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