全院发放表一次分配管理绩效BUG修复

parent 3e0adcc5
...@@ -963,7 +963,7 @@ ...@@ -963,7 +963,7 @@
</member> </member>
<member name="P:Performance.DtoModels.PerDataAccountBaisc.BasicFactor"> <member name="P:Performance.DtoModels.PerDataAccountBaisc.BasicFactor">
<summary> <summary>
医生基础系数 预算比例
</summary> </summary>
</member> </member>
<member name="P:Performance.DtoModels.PerDataAccountBaisc.AssessBeforeOtherFee"> <member name="P:Performance.DtoModels.PerDataAccountBaisc.AssessBeforeOtherFee">
......
...@@ -54,7 +54,7 @@ public class PerDataAccountBaisc : IPerData ...@@ -54,7 +54,7 @@ public class PerDataAccountBaisc : IPerData
public decimal Number { get; set; } public decimal Number { get; set; }
/// <summary> /// <summary>
/// 医生基础系数 /// 预算比例
/// </summary> /// </summary>
public decimal BasicFactor { get; set; } public decimal BasicFactor { get; set; }
......
...@@ -780,7 +780,7 @@ private List<ComputeResponse> GetAllotPerformance(int allotId, int hospitalId, i ...@@ -780,7 +780,7 @@ private List<ComputeResponse> GetAllotPerformance(int allotId, int hospitalId, i
//// 业务中层人员信息 //// 业务中层人员信息
//var empolyeeList = _perforImemployeeclinicRepository.GetEntities(t => t.AllotID == allotId); //var empolyeeList = _perforImemployeeclinicRepository.GetEntities(t => t.AllotID == allotId);
// 一次绩效 获取特定人员绩效结果 // 一次绩效 获取特定人员绩效结果
var allot = _perforRescomputeRepository.GetEntities(t => t.AllotID == allotId && mTypes.Contains(t.AccountType) && t.NeedSecondAllot == "否")?.OrderByDescending(t => t.AccountingUnit); var allot = _perforRescomputeRepository.GetEntities(t => t.AllotID == allotId && mTypes.Contains(t.AccountType) && (string.IsNullOrEmpty(t.NeedSecondAllot) || t.NeedSecondAllot == "否"))?.OrderByDescending(t => t.AccountingUnit);
//var apramounts = perapramountRepository.GetEntities(t => t.AllotId == allotId); //var apramounts = perapramountRepository.GetEntities(t => t.AllotId == allotId);
return allot?.Select(t => return allot?.Select(t =>
......
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