Commit fddc06c5 by ruyun.zhang@suvalue.com

Merge branch 'feature/科室字典BUG' into develop

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