no message

parent 337c3c63
...@@ -38,7 +38,7 @@ public class res_compute ...@@ -38,7 +38,7 @@ public class res_compute
/// <summary> /// <summary>
/// 绩效基数核算参考对象 /// 绩效基数核算参考对象
/// </summary> /// </summary>
public Nullable<decimal> FitPeople { get; set; } public string FitPeople { get; set; }
/// <summary> /// <summary>
/// 人员姓名 /// 人员姓名
...@@ -76,6 +76,11 @@ public class res_compute ...@@ -76,6 +76,11 @@ public class res_compute
public Nullable<decimal> ShouldGiveFee { get; set; } public Nullable<decimal> ShouldGiveFee { get; set; }
/// <summary> /// <summary>
/// 绩效合计(需计算)
/// </summary>
public Nullable<decimal> PerforSumFee { get; set; }
/// <summary>
/// 发放系数(来自人员名单) /// 发放系数(来自人员名单)
/// </summary> /// </summary>
public Nullable<decimal> Grant { get; set; } public Nullable<decimal> Grant { get; set; }
......
...@@ -37,7 +37,7 @@ public class ComputeDirector ...@@ -37,7 +37,7 @@ public class ComputeDirector
Scale = scale?.Value * resAccount?.PerforTotal, Scale = scale?.Value * resAccount?.PerforTotal,
Grant = item.Grant, Grant = item.Grant,
ShouldGiveFee = (efficiency?.Value * resAccount?.Avg + scale?.Value * resAccount?.PerforTotal) * item.Grant, ShouldGiveFee = (efficiency?.Value * resAccount?.Avg + scale?.Value * resAccount?.PerforTotal) * item.Grant,
//PerforSumFee = PerforSumFee = 0,
ScoreAverageRate = item.ScoreAverageRate, ScoreAverageRate = item.ScoreAverageRate,
Punishment = item.Punishment, Punishment = item.Punishment,
OtherPerfor = item.OtherPerfor, OtherPerfor = item.OtherPerfor,
......
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