Commit b5eea309 by 泽锋 李

fix

parent 971c5b5f
...@@ -198,6 +198,7 @@ left join dc_auto_sales as t2 on t1.bailun_sku = t2.bailun_sku and t1.warehouse_ ...@@ -198,6 +198,7 @@ left join dc_auto_sales as t2 on t1.bailun_sku = t2.bailun_sku and t1.warehouse_
{ {
string sql = $@" select string sql = $@" select
t1.usable_stock, t1.usable_stock,
t1.shipped_stock,
t2.area_name, t2.area_name,
t2.warehouse_name, t2.warehouse_name,
t1.warehouse_code, t1.warehouse_code,
......
...@@ -8,6 +8,7 @@ namespace AutoTurnOver.Models.ApiDto.Stock ...@@ -8,6 +8,7 @@ namespace AutoTurnOver.Models.ApiDto.Stock
public class api_stock_dto public class api_stock_dto
{ {
public decimal usable_stock { get; set; } public decimal usable_stock { get; set; }
public decimal shipped_stock { get; set; }
public string area_name { get; set; } public string area_name { get; set; }
public string warehouse_name { get; set; } public string warehouse_name { get; set; }
public string warehouse_code { get; set; } public string warehouse_code { 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