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
a18cb637
Commit
a18cb637
authored
Jul 30, 2019
by
799284587@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
df0aea33
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
2 deletions
+15
-2
performance/Performance.Api/wwwroot/Performance.DtoModels.xml
+10
-0
performance/Performance.DtoModels/Response/DoctorResponse.cs
+2
-0
performance/Performance.DtoModels/Response/NurseResponse.cs
+1
-0
performance/Performance.Services/ComputeService.cs
+2
-2
No files found.
performance/Performance.Api/wwwroot/Performance.DtoModels.xml
View file @
a18cb637
...
...
@@ -1661,6 +1661,11 @@
实发绩效
</summary>
</member>
<member
name=
"P:Performance.DtoModels.DoctorResponse.Remark"
>
<summary>
备注
</summary>
</member>
<member
name=
"P:Performance.DtoModels.DrugpropResponse.MaxRange"
>
<summary>
药占比最大范围(小于)
...
...
@@ -1816,6 +1821,11 @@
实发绩效
</summary>
</member>
<member
name=
"P:Performance.DtoModels.NurseResponse.Remark"
>
<summary>
备注
</summary>
</member>
<member
name=
"P:Performance.DtoModels.ResComputeResponse.ID"
>
<summary>
...
...
performance/Performance.DtoModels/Response/DoctorResponse.cs
View file @
a18cb637
...
...
@@ -21,6 +21,8 @@ public class DoctorResponse
/// </summary>
public
Nullable
<
int
>
SheetID
{
get
;
set
;
}
public
int
UnitType
{
get
;
set
;
}
/// <summary>
/// 分组名称(医生、护士)
/// </summary>
...
...
performance/Performance.DtoModels/Response/NurseResponse.cs
View file @
a18cb637
...
...
@@ -21,6 +21,7 @@ public class NurseResponse
/// </summary>
public
Nullable
<
int
>
SheetID
{
get
;
set
;
}
public
int
UnitType
{
get
;
set
;
}
/// <summary>
/// 分组名称(医生、护士)
/// </summary>
...
...
performance/Performance.Services/ComputeService.cs
View file @
a18cb637
...
...
@@ -117,7 +117,7 @@ public List<DoctorResponse> GetDoctorPerformance(int allotId)
{
var
list
=
perforResaccountRepository
.
GetEntities
(
t
=>
t
.
UnitType
!=
(
int
)
UnitType
.
护理组
&&
t
.
AllotID
==
allotId
)?.
OrderByDescending
(
t
=>
t
.
AccountingUnit
);
List
<
DoctorResponse
>
doctor
=
Mapper
.
Map
<
List
<
DoctorResponse
>>(
list
);
doctor
?.
ForEach
(
t
=>
t
.
UnitName
=
"医生组"
);
doctor
?.
ForEach
(
t
=>
t
.
UnitName
=
((
UnitType
)
t
.
UnitType
).
ToString
()
);
return
doctor
;
}
...
...
@@ -130,7 +130,7 @@ public List<NurseResponse> GetNursePerformance(int allotId)
{
var
list
=
perforResaccountRepository
.
GetEntities
(
t
=>
t
.
UnitType
==
(
int
)
UnitType
.
护理组
&&
t
.
AllotID
==
allotId
)?.
OrderByDescending
(
t
=>
t
.
AccountingUnit
);
List
<
NurseResponse
>
nurse
=
Mapper
.
Map
<
List
<
NurseResponse
>>(
list
);
nurse
?.
ForEach
(
t
=>
t
.
UnitName
=
"护理组"
);
nurse
?.
ForEach
(
t
=>
t
.
UnitName
=
((
UnitType
)
t
.
UnitType
).
ToString
()
);
return
nurse
;
}
...
...
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