Commit a0a53097 by 纪旭 韦

no message

parent 863f9506
...@@ -467,9 +467,9 @@ public ApiResponse Issued([FromBody] AllotRequest request) ...@@ -467,9 +467,9 @@ public ApiResponse Issued([FromBody] AllotRequest request)
var res = _allotService.GetCheckBase(request.ID); var res = _allotService.GetCheckBase(request.ID);
string error = ""; string error = "";
if (res.CheckEmp.Body?.Any() != true) if (res.CheckEmp.Body?.Any() == true)
error += "测算表人员信息与「人员字典」无法匹配,"; error += "测算表人员信息与「人员字典」无法匹配,";
if (res.CheckDept.Body?.Any() != true) if (res.CheckDept.Body?.Any() == true)
error += "测算表核算单元与「核算单元及组别」信息无法匹配"; error += "测算表核算单元与「核算单元及组别」信息无法匹配";
if (!string.IsNullOrEmpty(error)) if (!string.IsNullOrEmpty(error))
throw new PerformanceException(error); throw new PerformanceException(error);
......
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