Commit c37dbf8f by 钟博

修改行政中层管理绩效问题

parent 88d2bab9
...@@ -1595,11 +1595,11 @@ public DeptDataDetails GetDoctorDetail(int computeId) ...@@ -1595,11 +1595,11 @@ public DeptDataDetails GetDoctorDetail(int computeId)
Pandect = new PerDataAccountBaisc Pandect = new PerDataAccountBaisc
{ {
BasicFactor = employee?.Basics ?? 0, //基础绩效系数 BasicFactor = employee?.Basics ?? 0, //基础绩效系数
Effic = employee.Efficiency ?? 0, //效率绩效系数 Effic = employee?.Efficiency ?? 0, //效率绩效系数
Scale = employee.Scale ?? 0, //规模绩效系数 Scale = employee?.Scale ?? 0, //规模绩效系数
Management = employee.Management,//管理绩效发放系数 Management = employee?.Management??0,//管理绩效发放系数
AdjustFactor = employee?.Adjust ?? 1, //调节系数 AdjustFactor = employee?.Adjust ?? 1, //调节系数
AdjustLaterOtherFee = employee.AdjustLaterOtherFee, //调节后其他绩效 AdjustLaterOtherFee = employee?.AdjustLaterOtherFee??0, //调节后其他绩效
AccountingUnit = resCompute.AccountingUnit, AccountingUnit = resCompute.AccountingUnit,
EmployeeName = resCompute.EmployeeName, EmployeeName = resCompute.EmployeeName,
......
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