Commit 5c9af07b by lcx

特殊核算人员为空 报错

parent ff42a0f6
......@@ -191,8 +191,11 @@ public void SpecialUnitCompute(PerExcel excel, per_allot allot, List<res_baiscno
resDataList.Add(res);
}
if (computeEmployees == null || !computeEmployees.Any()) continue;
var empolyees = computeEmployees.Where(t => t.AccountingUnit == group.AccountingUnit);
if (empolyees == null || !empolyees.Any()) continue;
foreach (var empolyee in empolyees)
{
//if (empolyee == 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