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
8939901e
Commit
8939901e
authored
Jun 29, 2021
by
lcx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sheettype枚举修改
parent
042ad975
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
performance/Performance.DtoModels/PerExcel/ExcelEnum.cs
+5
-1
performance/Performance.Services/ExtractIncomeService.cs
+1
-1
No files found.
performance/Performance.DtoModels/PerExcel/ExcelEnum.cs
View file @
8939901e
...
...
@@ -188,9 +188,13 @@ public enum SheetType
[
Description
(
"考核"
)]
Assess
=
38
,
//该参数作用类似于 其他工作量
/// <summary> 医生收入 </summary>
[
Description
(
"医生收入"
)]
DoctorIncome
=
100
,
/// <summary> 自定义抽取模板 </summary>
[
Description
(
"自定义抽取模板"
)]
Custom
=
10
0
,
Custom
=
10
1
,
}
/// <summary>
...
...
performance/Performance.Services/ExtractIncomeService.cs
View file @
8939901e
...
...
@@ -71,7 +71,7 @@ public string Execture(int allotId)
var
configs
=
hospitalconfigRepository
.
GetEntities
(
t
=>
t
.
HospitalId
==
allot
.
HospitalId
);
if
(
configs
==
null
||
!
configs
.
Any
())
throw
new
PerformanceException
(
"未添加医院提取配置"
);
var
types
=
extypeRepository
.
GetEntities
(
t
=>
t
.
Source
==
100
);
var
types
=
extypeRepository
.
GetEntities
(
t
=>
t
.
Source
==
(
int
)
SheetType
.
DoctorIncome
);
if
(
types
==
null
||
!
types
.
Any
())
throw
new
PerformanceException
(
"未配置数据提取内容"
);
Dictionary
<
string
,
List
<
IncomeDataDto
>>
pairs
=
new
Dictionary
<
string
,
List
<
IncomeDataDto
>>();
...
...
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