Commit c0bc9587 authored by liudong1993's avatar liudong1993

1

parent 8dfd01d3
......@@ -534,18 +534,22 @@ namespace Edu.Education.Helper
try
{
Console.WriteLine("开始执行营收报表....");
LogHelper.Write("开始执行营收报表....");
FinanceModule financeModule = new FinanceModule();
financeModule.SetEduRevenueReport(100000, DateTime.Now.AddYears(-2).ToString("yyyy-MM-dd"), false);
Console.WriteLine("结束执行营收报表....");
LogHelper.Write("结束执行营收报表....");
Console.WriteLine("开始执行简易报表....");
LogHelper.Write("开始执行简易报表....");
//financeModule.InsertBatchSimple_V2(100000, 2020);
financeModule.InsertBatchSimple_V2(100000, DateTime.Now.Year);
financeModule.InsertBatchSimple_V2(100000, DateTime.Now.Year - 1);
Console.WriteLine("结束执行简易报表....");
LogHelper.Write("结束执行简易报表....");
}
catch (Exception ex)
{
LogHelper.Write(ex, "CreateRevenueReport");
LogHelper.Write(ex, "CreateRevenueReport简易报表出错");
}
return null;
}
......
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