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
2569411f
Commit
2569411f
authored
Sep 06, 2022
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release/v22.4.18-Beta-wuzhou' into develop
parents
331a8fff
cace3dbc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
performance/Performance.Services/RedistributionService.cs
+2
-2
No files found.
performance/Performance.Services/RedistributionService.cs
View file @
2569411f
...
...
@@ -456,9 +456,9 @@ public void RowsExpand(per_allot allot, List<SecondColumnDictionary> dic, List<D
{
// 优先取 业务中层实际人均绩效 否则 取 科室人均
var
empolyee
=
_imemployeeclinicRepository
.
GetEntity
(
w
=>
w
.
AllotID
==
allot
.
ID
&&
w
.
AccountingUnit
==
second
.
Department
&&
w
.
UnitType
==
second
.
UnitType
);
var
rescompute
=
_resaccountRepository
.
GetEntity
(
w
=>
w
.
AllotID
==
allot
.
ID
&&
w
.
AccountingUnit
==
second
.
Department
&&
w
.
UnitType
==
(
int
)
((
UnitType
)
unittype
)
);
var
rescompute
=
_resaccountRepository
.
GetEntity
(
w
=>
w
.
AllotID
==
allot
.
ID
&&
w
.
AccountingUnit
==
second
.
Department
&&
w
.
UnitType
==
(
int
)
unittype
);
var
avg
=
(
empolyee
!=
null
&&
empolyee
.
FitPeopleValue
.
HasValue
)
?
empolyee
.
FitPeopleValue
:
rescompute
?.
Avg
??
0
;
refAvg
=
rescompute
?.
A
vg
??
0
;
refAvg
=
a
vg
??
0
;
}
head
.
AddOrUpdate
(
"RefAvg"
,
Math
.
Round
(
refAvg
,
0
,
MidpointRounding
.
AwayFromZero
));
#
endregion
...
...
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