Commit d3f2c206 by ruyun.zhang@suvalue.com

Merge branch 'hotfix/科室字典BUG'

parents c9ea0b6b d8d1d047
......@@ -654,7 +654,7 @@ public List<cof_accounting> GetAccountingList(AccoungingRequest request)
}
if (request.Type == (int)AccountTypeEnum.AccountingUnit && !string.IsNullOrEmpty(request.UnitType))
exp = exp.And(t => t.UnitType == request.UnitType);
exp = exp.And(t => t.UnitType == request.UnitType.Replace("行政后勤", "行政工勤"));
return cofaccountingRepository.GetEntities(exp) ?? new List<cof_accounting>();
}
......
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