Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
performance
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zry
performance
Commits
c32cdc96
Commit
c32cdc96
authored
Oct 16, 2020
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
公式修改
parent
19535867
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
performance/Performance.DtoModels/PerExcel/ComputeResult.cs
+6
-1
performance/Performance.Services/PerExcelService/ComputeEmpolyee/ComputeDirector.cs
+5
-3
No files found.
performance/Performance.DtoModels/PerExcel/ComputeResult.cs
View file @
c32cdc96
...
...
@@ -71,11 +71,16 @@ public class ComputeResult
public
Nullable
<
decimal
>
Grant
{
get
;
set
;
}
/// <summary>
///
应发管理绩效(需计算)
///
考核前管理绩效
/// </summary>
public
Nullable
<
decimal
>
ShouldGiveFee
{
get
;
set
;
}
/// <summary>
/// 考核后管理绩效
/// </summary>
public
Nullable
<
decimal
>
AssessLaterManagementFee
{
get
;
set
;
}
/// <summary>
/// 绩效合计 考核前(需计算)
/// </summary>
public
Nullable
<
decimal
>
PerforSumFee
{
get
;
set
;
}
...
...
performance/Performance.Services/PerExcelService/ComputeEmpolyee/ComputeDirector.cs
View file @
c32cdc96
...
...
@@ -387,7 +387,7 @@ public List<ComputeResult> Compute(List<ComputeEmployee> empolyeeList, List<PerS
OtherManagePerfor
=
empolyee
.
OtherManagePerfor
??
0
,
Number
=
resAccount
.
Number
,
PerforTotal
=
resAccount
.
PerforTotal
,
Avg
=
avg
,
Avg
=
avg
*
(
empolyee
.
Basics
??
0
)
*
(
empolyee
.
Attendance
??
0
)
,
Efficiency
=
effAvg
*
(
empolyee
.
Efficiency
??
0
),
Scale
=
resAccount
.
PerforTotal
*
(
empolyee
.
Scale
??
0
),
Adjust
=
(
isBudget
?
adjust
:
empolyee
.
Adjust
)
??
1
m
,
...
...
@@ -405,8 +405,10 @@ public List<ComputeResult> Compute(List<ComputeEmployee> empolyeeList, List<PerS
&&
w
.
JobNumber
==
empolyee
.
JobNumber
&&
w
.
EmployeeName
==
empolyee
.
DoctorName
)?.
TotelValue
;
compute
.
Punishment
=
extra
??
0
;
//应发管理绩效
compute
.
ShouldGiveFee
=
Math
.
Round
((
compute
.
Efficiency
+
compute
.
Scale
+
compute
.
OtherManagePerfor
)
*
compute
.
Grant
??
0
);
// 考核前管理绩效
compute
.
ShouldGiveFee
=
Math
.
Round
((
compute
.
Efficiency
+
compute
.
Scale
)
*
compute
.
Grant
+
compute
.
OtherManagePerfor
??
0
);
// 考核后管理绩效
compute
.
AssessLaterManagementFee
=
Math
.
Round
(
compute
.
ShouldGiveFee
*
compute
.
ScoreAverageRate
*
compute
.
Attendance
+
compute
.
Punishment
??
0
);
//绩效合计
compute
.
PerforSumFee
=
Math
.
Round
((
compute
.
Avg
*
(
empolyee
.
Basics
??
0
))
+
compute
.
ShouldGiveFee
+
compute
.
AssessBeforeOtherFee
??
0
);
//应发绩效
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment