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
e6133e28
Commit
e6133e28
authored
Jun 11, 2019
by
李承祥
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实发绩效计算
parent
87fe4451
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
performance/Performance.DtoModels/PerExcel/PerDataAccountDoctor.cs
+1
-1
performance/Performance.DtoModels/PerExcel/PerDataAccountNurse.cs
+1
-1
performance/Performance.Services/AllotCompute/ResultComputeService.cs
+2
-2
No files found.
performance/Performance.DtoModels/PerExcel/PerDataAccountDoctor.cs
View file @
e6133e28
...
...
@@ -86,7 +86,7 @@ public class PerDataAccountDoctor : IPerData
/// <summary>
/// 实发绩效
/// </summary>
public
decimal
RealGiveFee
{
get
=>
(
PerforTotal
*
ScoringAverage
+
Extra
+
OtherPerfor2
)
*
AdjustFactor
;
set
=>
giveFee
=
value
;
}
public
decimal
RealGiveFee
{
get
=>
(
PerforTotal
*
ScoringAverage
+
Extra
+
OtherPerfor2
)
*
(
AdjustFactor
==
0
?
1
:
AdjustFactor
)
;
set
=>
giveFee
=
value
;
}
/// <summary>
/// 人均绩效
/// </summary>
...
...
performance/Performance.DtoModels/PerExcel/PerDataAccountNurse.cs
View file @
e6133e28
...
...
@@ -85,7 +85,7 @@ public class PerDataAccountNurse : IPerData
/// <summary>
/// 实发绩效
/// </summary>
public
decimal
RealGiveFee
{
get
=>
(
PerforTotal
*
ScoringAverage
+
Extra
+
OtherPerfor2
)
*
AdjustFactor
;
set
=>
giveFee
=
value
;
}
public
decimal
RealGiveFee
{
get
=>
(
PerforTotal
*
ScoringAverage
+
Extra
+
OtherPerfor2
)
*
(
AdjustFactor
==
0
?
1
:
AdjustFactor
)
;
set
=>
giveFee
=
value
;
}
/// <summary>
/// 人均绩效
/// </summary>
...
...
performance/Performance.Services/AllotCompute/ResultComputeService.cs
View file @
e6133e28
...
...
@@ -114,7 +114,7 @@ public void SpecialUnitCompute(PerExcel excel, per_allot allot, List<res_baiscno
var
radio
=
perforImEmployeeRepository
.
GetEntities
(
p
=>
p
.
FitPeople
==
EnumHelper
.
GetDescription
((
PerformanceType
)
type
.
Value
)
&&
p
.
AllotID
==
allot
.
ID
)
?.
FirstOrDefault
().
FitPeopleRatio
??
1
;
var
basic
=
baiscNormService
.
GetBaiscNorm
(
baiscnormList
,
(
PerformanceType
)
type
.
Value
);
t
.
Quantity
=
basic
!=
null
?
basic
*
radio
:
null
;
//添加参数计算
t
.
Quantity
=
basic
!=
null
?
basic
*
radio
:
0
;
//添加参数计算
}
var
res
=
new
res_specialunit
...
...
@@ -132,7 +132,7 @@ public void SpecialUnitCompute(PerExcel excel, per_allot allot, List<res_baiscno
Adjust
=
t
.
Adjust
??
1
,
Avg
=
t
.
Number
!=
0
?
t
.
Quantity
*
t
.
QuantitativeIndicatorsValue
/
t
.
Number
:
null
,
GiveFee
=
t
.
Quantity
*
t
.
QuantitativeIndicatorsValue
,
RealGiveFee
=
(
t
.
Quantity
*
t
.
QuantitativeIndicatorsValue
+
t
.
OtherPerfor
+
t
.
Punishment
)
*
(
t
.
Adjust
??
1
),
RealGiveFee
=
(
t
.
Quantity
*
t
.
QuantitativeIndicatorsValue
+
(
t
.
OtherPerfor
??
0
)
+
(
t
.
Punishment
??
0
)
)
*
(
t
.
Adjust
??
1
),
};
resDataList
.
Add
(
res
);
}
...
...
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