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
991f1447
Commit
991f1447
authored
Sep 06, 2022
by
Licx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提取数据标准科室信息时,IsOrgDepartment的判断进行修改,只让科室显示,不影响核算单元的获取
parent
0142f2e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
+1
-3
performance/Performance.Services/ExtractExcelService/ExtractService.cs
+1
-3
No files found.
performance/Performance.Services/ExtractExcelService/ExtractService.cs
View file @
991f1447
...
...
@@ -339,13 +339,11 @@ private List<ExtractTransDto> StandDataFormat(int hospitalId, List<ex_script> sc
#
endregion
var
dept
=
!
string
.
IsNullOrEmpty
(
t
.
inner
.
FirstOrDefault
(
exp
)?.
Department
)
?
t
.
inner
.
FirstOrDefault
(
exp
)?.
Department
:
t
.
outer
.
Department
;
if
(
scripts
.
Any
(
w
=>
w
.
TypeId
==
t
.
outer
.
TypeId
&&
w
.
IsOrgDepartment
==
1
))
dept
=
t
.
outer
.
Department
;
return
new
ExtractTransDto
{
SheetName
=
t
.
outer
.
Source
,
Department
=
dept
,
Department
=
scripts
.
Any
(
w
=>
w
.
TypeId
==
t
.
outer
.
TypeId
&&
w
.
IsOrgDepartment
==
1
)
?
t
.
outer
.
Department
:
dept
,
Category
=
t
.
outer
.
Category
,
DoctorName
=
t
.
outer
.
DoctorName
,
PersonnelNumber
=
t
.
outer
.
PersonnelNumber
,
...
...
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