Commit 9553415e by jianshuqin

修复BUG:月售销利润 成本其他费用数据

parent 0b878be5
...@@ -1326,7 +1326,7 @@ ORDER BY t1.createtime DESC "; ...@@ -1326,7 +1326,7 @@ ORDER BY t1.createtime DESC ";
var param = new DynamicParameters(); var param = new DynamicParameters();
var sql = $@"SELECT * FROM dc_month_sales_profit_order_summary WHERE month = @month var sql = $@"SELECT * FROM dc_month_sales_profit_order_summary WHERE month = @month
AND summary_type = @cost AND summary_type = @cost
AND financecategoryname LIKE '{financecategory.Replace("产品", "")}%' "; AND financecategoryname LIKE '{financecategory.Replace("其它", "其他").Replace("产品", "")}%' ";
param.Add("month", month); param.Add("month", month);
if (isCost.Contains("成本")) if (isCost.Contains("成本"))
{ {
......
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