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
c7d8444c
Commit
c7d8444c
authored
Jun 19, 2019
by
李承祥
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
临床科室医护绩效测算表 -- 写出数据时修改;核算单元修改
parent
29c87a87
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
performance/Performance.Services/ExtractService.cs
+5
-4
No files found.
performance/Performance.Services/ExtractService.cs
View file @
c7d8444c
...
@@ -292,8 +292,8 @@ private bool WriteExcel(string newpath, string originalPath, List<PerSheet> shee
...
@@ -292,8 +292,8 @@ private bool WriteExcel(string newpath, string originalPath, List<PerSheet> shee
var
importRow
=
importSheet
.
CreateRow
(
maxHeaderRowNumber
+
i
+
1
);
var
importRow
=
importSheet
.
CreateRow
(
maxHeaderRowNumber
+
i
+
1
);
Dictionary
<
string
,
Func
<
PerDataAccountBaisc
,
object
>>
keyValues
=
new
Dictionary
<
string
,
Func
<
PerDataAccountBaisc
,
object
>>
Dictionary
<
string
,
Func
<
PerDataAccountBaisc
,
object
>>
keyValues
=
new
Dictionary
<
string
,
Func
<
PerDataAccountBaisc
,
object
>>
{
{
{
"核算单元"
,
(
t
)
=>
t
.
AccountingUnit
},
{
"核算单元
(医生组)
"
,
(
t
)
=>
t
.
AccountingUnit
},
{
"
科室
"
,
(
t
)
=>
t
.
Department
},
{
"
核算单元(护理组)
"
,
(
t
)
=>
t
.
Department
},
{
"医生组核算单元医生数量"
,
(
t
)
=>
t
.
DoctorNumber
},
{
"医生组核算单元医生数量"
,
(
t
)
=>
t
.
DoctorNumber
},
{
"医生组基础系数"
,
(
t
)
=>
t
.
DoctorBasicFactor
},
{
"医生组基础系数"
,
(
t
)
=>
t
.
DoctorBasicFactor
},
{
"医生组倾斜系数"
,
(
t
)
=>
t
.
DoctorSlopeFactor
},
{
"医生组倾斜系数"
,
(
t
)
=>
t
.
DoctorSlopeFactor
},
...
@@ -318,6 +318,7 @@ private bool WriteExcel(string newpath, string originalPath, List<PerSheet> shee
...
@@ -318,6 +318,7 @@ private bool WriteExcel(string newpath, string originalPath, List<PerSheet> shee
if
(
headInfo
!=
null
)
if
(
headInfo
!=
null
)
{
{
var
value
=
(
keyValues
[
item
].
Invoke
(
dataList
[
i
])
??
""
).
ToString
();
var
value
=
(
keyValues
[
item
].
Invoke
(
dataList
[
i
])
??
""
).
ToString
();
if
(
value
!=
"0"
)
importRow
.
CreateCell
(
headInfo
.
PointCell
).
SetCellValue
(
Verify
(
value
));
importRow
.
CreateCell
(
headInfo
.
PointCell
).
SetCellValue
(
Verify
(
value
));
}
}
}
}
...
@@ -606,8 +607,8 @@ public List<PerHeader> GetHeader(SheetType sheetType)
...
@@ -606,8 +607,8 @@ public List<PerHeader> GetHeader(SheetType sheetType)
{
{
header
=
new
List
<
PerHeader
>
header
=
new
List
<
PerHeader
>
{
{
new
PerHeader
{
CellValue
=
"核算单元"
,
MergeCell
=
1
,
MergeRow
=
2
,
PointCell
=
0
,
PointRow
=
1
},
new
PerHeader
{
CellValue
=
"核算单元
(医生组)
"
,
MergeCell
=
1
,
MergeRow
=
2
,
PointCell
=
0
,
PointRow
=
1
},
new
PerHeader
{
CellValue
=
"
科室
"
,
MergeCell
=
1
,
MergeRow
=
2
,
PointCell
=
1
,
PointRow
=
1
},
new
PerHeader
{
CellValue
=
"
核算单元(护理组)
"
,
MergeCell
=
1
,
MergeRow
=
2
,
PointCell
=
1
,
PointRow
=
1
},
new
PerHeader
{
CellValue
=
"医生组"
,
MergeCell
=
8
,
MergeRow
=
1
,
PointCell
=
2
,
PointRow
=
1
,
new
PerHeader
{
CellValue
=
"医生组"
,
MergeCell
=
8
,
MergeRow
=
1
,
PointCell
=
2
,
PointRow
=
1
,
Children
=
new
List
<
PerHeader
>{
Children
=
new
List
<
PerHeader
>{
new
PerHeader
{
CellValue
=
"核算单元医生数量"
,
MergeCell
=
1
,
MergeRow
=
1
,
PointCell
=
2
,
PointRow
=
2
},
new
PerHeader
{
CellValue
=
"核算单元医生数量"
,
MergeCell
=
1
,
MergeRow
=
1
,
PointCell
=
2
,
PointRow
=
2
},
...
...
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