Commit 4294b154 by wyc

科室详情-特殊核算组(数据来源调整)

parent 585b15da
......@@ -134,6 +134,12 @@ public UniteDeptDetailResponse UniteDeptDetail(int allotId, UnitType unitType, s
{
var special = _perforResspecialunitRepository.GetEntities(t => t.AllotID == allotId && t.Department == accountingUnit);
if (special?.Any() != true) return response;
account.AdjustLaterOtherFee = special.FirstOrDefault()?.AdjustLaterOtherFee ?? 0;
account.AssessLaterOtherFee = special.FirstOrDefault()?.AssessLaterOtherFee ?? 0;
account.AssessBeforeOtherFee = special.FirstOrDefault()?.AssessBeforeOtherFee ?? 0;
account.MedicineExtra = special.FirstOrDefault()?.MedicineExtra ?? 0;
account.MaterialsExtra = special.FirstOrDefault()?.MaterialsExtra ?? 0;
account.ScoringAverage = special.FirstOrDefault()?.ScoringAverage ?? 0;
var detailItems = new DeptDetailItem();
#region 补全特殊核算组量化指标明细
......
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