Commit 8115a24f authored by 黄奎's avatar 黄奎

页面修改

parent a4872e4c
......@@ -455,6 +455,8 @@ namespace Edu.WebApi.Controllers.Course
deptList.Add(deptObj);
}
}
if (deptList != null && deptList.Count > 0)
{
var financeModel = new
{
FrID = 0,
......@@ -502,6 +504,9 @@ namespace Edu.WebApi.Controllers.Course
}
}
}
}
if (financeList != null && financeList.Count > 0)
{
string sign = EncryptionHelper.AesEncrypt(JsonHelper.Serialize(financeList), Config.FinanceKey);
var resultInfo = new
{
......@@ -512,6 +517,11 @@ namespace Edu.WebApi.Controllers.Course
);
return ApiResult.Success("财务单据生成中,请稍后刷新查看");
}
else
{
return ApiResult.Success(message: "没有要生成返佣的金额!");
}
}
/// <summary>
/// 调用erp生成财务单据接口
......
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