Commit febc1ac4 by 泽锋 李

刊登报表 商品编码 改成内部商品编码

parent d6750d0e
......@@ -90,6 +90,7 @@ tw.warehouse_code,
t1.bailun_sku as 'base_bailun_sku',
t1.sku_title_cn,
t1.product_code,
t1.product_inner_code,
t1.buyer_name,
t1.brand,
t1.weight,
......@@ -166,8 +167,8 @@ where tdb.usable_stock>0 ";
}
if (!string.IsNullOrWhiteSpace(search.product_code))
{
sql += " and t1.product_code =@product_code ";
parameters.Add("product_code", search.product_code);
sql += " and t1.product_inner_code =@product_inner_code ";
parameters.Add("product_inner_code", search.product_code);
}
if (search.listing_status == 1)
{
......
......@@ -11,6 +11,7 @@ namespace AutoTurnOver.Models
public class listing_status_view_dto
{
public string hq_type { get; set; }
public string product_inner_code { get; set; }
public string source_str
{
get
......
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