Commit fc4580db by 钟博

全员核算绩效发放考核后绩效金额取整

parent 6b93e79f
......@@ -1938,6 +1938,11 @@
工号
</summary>
</member>
<member name="P:Performance.DtoModels.Request.BatchDetail.Batch">
<summary>
批次
</summary>
</member>
<member name="P:Performance.DtoModels.Request.ComputerAvgRequest.PositionName">
<summary>
绩效核算人群
......
......@@ -599,7 +599,7 @@ public List<DeptResponse> GetAdminPerformance(int allotId)
MedicineExtra = 0,
MaterialsExtra = 0,
AssessLaterOtherFee = 0,
AssessLaterPerforTotal = t.Sum(w => w.GiveFee),
AssessLaterPerforTotal = t.Sum(w => Math.Round(w.GiveFee ?? 0, MidpointRounding.AwayFromZero)),
AdjustFactor = t.FirstOrDefault()?.Adjust ?? 1,
AdjustLaterOtherFee = t.Sum(w => w.AdjustLaterOtherFee),
RealGiveFee = t.Sum(w => w.RealGiveFee),
......
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