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
b03bdaad
Commit
b03bdaad
authored
Oct 28, 2021
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
90d98c16
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
performance/Performance.Services/ComputeService.cs
+1
-1
performance/Performance.Services/DownloadService.cs
+2
-2
No files found.
performance/Performance.Services/ComputeService.cs
View file @
b03bdaad
...
@@ -2020,7 +2020,7 @@ public List<cof_alias> CustomColumnHeaders(int hospitalId, string route)
...
@@ -2020,7 +2020,7 @@ public List<cof_alias> CustomColumnHeaders(int hospitalId, string route)
{
{
foreach
(
var
item
in
alias
)
foreach
(
var
item
in
alias
)
{
{
var
x
=
init
.
FirstOrDefault
(
w
=>
w
.
Name
==
item
.
Name
);
var
x
=
init
.
FirstOrDefault
(
w
=>
w
.
Name
.
Equals
(
item
.
Name
,
StringComparison
.
OrdinalIgnoreCase
)
);
if
(
x
==
null
)
if
(
x
==
null
)
{
{
init
.
Add
(
item
);
init
.
Add
(
item
);
...
...
performance/Performance.Services/DownloadService.cs
View file @
b03bdaad
...
@@ -183,7 +183,7 @@ public string AllComputerViewReport(int allotId, List<dynamic> dynamics, string
...
@@ -183,7 +183,7 @@ public string AllComputerViewReport(int allotId, List<dynamic> dynamics, string
var
hospital
=
perforHospital
.
GetEntity
(
t
=>
t
.
ID
==
allot
.
HospitalId
);
var
hospital
=
perforHospital
.
GetEntity
(
t
=>
t
.
ID
==
allot
.
HospitalId
);
var
alias
=
perforCofalias
.
GetEntities
(
t
=>
t
.
HospitalId
==
hospital
.
ID
);
var
alias
=
perforCofalias
.
GetEntities
(
t
=>
t
.
HospitalId
==
hospital
.
ID
);
var
headList
=
_computeService
.
CustomColumnHeaders
(
hospital
.
ID
,
route
);
var
headList
=
_computeService
.
CustomColumnHeaders
(
hospital
.
ID
,
route
)
.
Where
(
w
=>
w
.
States
==
1
).
ToList
()
;
var
dpath
=
Path
.
Combine
(
evn
.
ContentRootPath
,
"Files"
,
"PerformanceRelease"
,
$"
{
allot
.
HospitalId
}
"
);
var
dpath
=
Path
.
Combine
(
evn
.
ContentRootPath
,
"Files"
,
"PerformanceRelease"
,
$"
{
allot
.
HospitalId
}
"
);
FileHelper
.
CreateDirectory
(
dpath
);
FileHelper
.
CreateDirectory
(
dpath
);
...
@@ -288,7 +288,7 @@ public string AllComputerViewReport(int allotId, List<dynamic> dynamics, string
...
@@ -288,7 +288,7 @@ public string AllComputerViewReport(int allotId, List<dynamic> dynamics, string
(
"实发绩效"
,
t
=>
t
.
RealGiveFee
,(
t
)
=>
Math
.
Round
(
t
.
Sum
(
item
=>
item
.
RealGiveFee
??
0
),
2
,
MidpointRounding
.
AwayFromZero
))
(
"实发绩效"
,
t
=>
t
.
RealGiveFee
,(
t
)
=>
Math
.
Round
(
t
.
Sum
(
item
=>
item
.
RealGiveFee
??
0
),
2
,
MidpointRounding
.
AwayFromZero
))
};
};
#
endregion
#
endregion
#
region
全院绩效核算
#
region
全院绩效核算
...
...
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