Commit 04627d0e by lcx

科主任/护士长绩效详情添加其他管理绩效、医院奖罚

parent f460e96e
...@@ -1037,6 +1037,11 @@ ...@@ -1037,6 +1037,11 @@
应发管理绩效 应发管理绩效
</summary> </summary>
</member> </member>
<member name="P:Performance.DtoModels.PerDataAccountBaisc.OtherManagePerfor">
<summary>
其他管理绩效
</summary>
</member>
<member name="P:Performance.DtoModels.PerDataAccountBaisc.MedicineFactor"> <member name="P:Performance.DtoModels.PerDataAccountBaisc.MedicineFactor">
<summary> <summary>
药占比系数 药占比系数
......
...@@ -158,6 +158,11 @@ public class PerDataAccountBaisc : IPerData ...@@ -158,6 +158,11 @@ public class PerDataAccountBaisc : IPerData
/// </summary> /// </summary>
public decimal ShouldGiveFee { get; set; } public decimal ShouldGiveFee { get; set; }
/// <summary>
/// 其他管理绩效
/// </summary>
public decimal OtherManagePerfor { get; set; }
///// <summary> ///// <summary>
///// 保底绩效参考标准 ///// 保底绩效参考标准
///// </summary> ///// </summary>
...@@ -172,8 +177,8 @@ public class PerDataAccountBaisc : IPerData ...@@ -172,8 +177,8 @@ public class PerDataAccountBaisc : IPerData
///// 工作量倾斜系数 ///// 工作量倾斜系数
///// </summary> ///// </summary>
//public Nullable<decimal> WorkSlopeFactor { get; set; } //public Nullable<decimal> WorkSlopeFactor { get; set; }
#endregion
#endregion EXCEL读取
#region 由计算得出 #region 由计算得出
...@@ -227,6 +232,6 @@ public class PerDataAccountBaisc : IPerData ...@@ -227,6 +232,6 @@ public class PerDataAccountBaisc : IPerData
/// </summary> /// </summary>
public Nullable<decimal> RealGiveFee { get; set; } public Nullable<decimal> RealGiveFee { get; set; }
#endregion #endregion 由计算得出
} }
} }
...@@ -1262,6 +1262,8 @@ public DeptDataDetails GetDoctorDetail(int computeId) ...@@ -1262,6 +1262,8 @@ public DeptDataDetails GetDoctorDetail(int computeId)
EfficPerfor = resCompute.Efficiency ?? 0, //效率绩效 EfficPerfor = resCompute.Efficiency ?? 0, //效率绩效
Scale = employee.Scale ?? 0, //规模绩效系数 Scale = employee.Scale ?? 0, //规模绩效系数
ScalePerfor = resCompute.Scale ?? 0, //规模绩效 ScalePerfor = resCompute.Scale ?? 0, //规模绩效
Extra = resCompute.Punishment ?? 0, //医院奖罚
OtherManagePerfor = resCompute.OtherManagePerfor ?? 0, //其他管理绩效
Management = employee.Management,//管理绩效发放系数 Management = employee.Management,//管理绩效发放系数
ShouldGiveFee = resCompute.ShouldGiveFee ?? 0, //考核前管理绩效 ShouldGiveFee = resCompute.ShouldGiveFee ?? 0, //考核前管理绩效
ScoringAverage = resCompute.ScoreAverageRate ?? 1, //考核得分率 ScoringAverage = resCompute.ScoreAverageRate ?? 1, //考核得分率
......
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