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
97a18f72
Commit
97a18f72
authored
Jul 09, 2021
by
lcx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
绩效提取,获取核算单元修改
parent
081bd1ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
performance/Performance.Services/ExtractExcelService/ExtractHelper/WriteDataHelper.cs
+6
-6
No files found.
performance/Performance.Services/ExtractExcelService/ExtractHelper/WriteDataHelper.cs
View file @
97a18f72
...
@@ -272,18 +272,18 @@ public static string HasValue(params string[] list)
...
@@ -272,18 +272,18 @@ public static string HasValue(params string[] list)
private
static
readonly
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
fieldInpat
=
new
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
private
static
readonly
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
fieldInpat
=
new
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
{
{
{
"科室名称"
,
(
dto
)
=>
dto
.
Department
},
{
"科室名称"
,
(
dto
)
=>
dto
.
Department
},
{
"核算单元(医生组)"
,
(
dto
)
=>
new
string
[]{
dto
.
InpatDoctorAccounting
,
dto
.
OutDoctorAccounting
}.
FirstOrDefault
(
t
=>
!
string
.
IsNullOrEmpty
(
t
))
},
{
"核算单元(医生组)"
,
(
dto
)
=>
dto
.
InpatDoctorAccounting
},
{
"核算单元(护理组)"
,
(
dto
)
=>
new
string
[]{
dto
.
InpatNurseAccounting
,
dto
.
OutNurseAccounting
}.
FirstOrDefault
(
t
=>
!
string
.
IsNullOrEmpty
(
t
))
},
{
"核算单元(护理组)"
,
(
dto
)
=>
dto
.
InpatNurseAccounting
},
{
"核算单元(医技组)"
,
(
dto
)
=>
new
string
[]{
dto
.
InpatTechnicAccounting
,
dto
.
OutTechnicAccounting
}.
FirstOrDefault
(
t
=>
!
string
.
IsNullOrEmpty
(
t
))
},
{
"核算单元(医技组)"
,
(
dto
)
=>
dto
.
InpatTechnicAccounting
},
};
};
/// <summary> 门诊核算单元 </summary>
/// <summary> 门诊核算单元 </summary>
private
static
readonly
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
fieldOut
=
new
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
private
static
readonly
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
fieldOut
=
new
Dictionary
<
string
,
Func
<
ExtractTransDto
,
string
>>
{
{
{
"科室名称"
,
(
dto
)
=>
dto
.
Department
},
{
"科室名称"
,
(
dto
)
=>
dto
.
Department
},
{
"核算单元(医生组)"
,
(
dto
)
=>
new
string
[]{
dto
.
OutDoctorAccounting
,
dto
.
InpatDoctorAccounting
}.
FirstOrDefault
(
t
=>
!
string
.
IsNullOrEmpty
(
t
))
},
{
"核算单元(医生组)"
,
(
dto
)
=>
dto
.
OutDoctorAccounting
},
{
"核算单元(护理组)"
,
(
dto
)
=>
new
string
[]{
dto
.
OutNurseAccounting
,
dto
.
InpatNurseAccounting
}.
FirstOrDefault
(
t
=>
!
string
.
IsNullOrEmpty
(
t
))
},
{
"核算单元(护理组)"
,
(
dto
)
=>
dto
.
OutNurseAccounting
},
{
"核算单元(医技组)"
,
(
dto
)
=>
new
string
[]{
dto
.
OutTechnicAccounting
,
dto
.
InpatTechnicAccounting
}.
FirstOrDefault
(
t
=>
!
string
.
IsNullOrEmpty
(
t
))
},
{
"核算单元(医技组)"
,
(
dto
)
=>
dto
.
OutTechnicAccounting
},
};
};
/// <summary> 医生工作量 </summary>
/// <summary> 医生工作量 </summary>
...
...
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