Commit d10c9c33 by 泽锋 李

fix

parent ff435be4
......@@ -88,7 +88,7 @@ namespace AutoTurnOver.Controllers
return File(memory, "text/csv", "现金流明细.csv");
}
public JsonResult GetSkuView(int? data_type , string sku_label, string bailun_sku, int offset, int limit, string order, string sort, string buyer_name, string supplier_name,string product_type)
public JsonResult GetSkuView(int? data_type, string sku_label, string bailun_sku, int offset, int limit, string order, string sort, string buyer_name, string warehousecode, string supplier_name, string warehousetype, int? warehousearea, int? monitor_status = null, string product_type = null)
{
try
{
......@@ -103,7 +103,11 @@ namespace AutoTurnOver.Controllers
sku_label = string.IsNullOrWhiteSpace( sku_label)?null : WebUtility.UrlDecode(sku_label),
data_type = data_type,
supplier_name = supplier_name,
product_type = product_type
product_type = product_type,
warehouse_code = warehousecode,
monitor_status =monitor_status,
warehousearea = warehousearea,
warehousetype = warehousetype
};
var services = new CashFlowServices();
var page_data = services.SkuView(m);
......
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