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
fb64f6f7
Commit
fb64f6f7
authored
Oct 18, 2024
by
wyc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
自定义提取(区分医院)
parent
2a7e72a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
performance/Performance.Services/ExtractExcelService/SheetDataWrite/CustomDataWrite.cs
+1
-1
No files found.
performance/Performance.Services/ExtractExcelService/SheetDataWrite/CustomDataWrite.cs
View file @
fb64f6f7
...
...
@@ -45,7 +45,7 @@ public class CustomDataWrite : IAutoInjection
public
void
WriteDataToCustom
(
IWorkbook
workbook
,
per_allot
allot
,
ExcelStyle
style
,
int
allotId
,
string
groupName
,
bool
isSingle
)
{
_logService
.
ReturnTheLog
(
allotId
,
groupName
,
2
,
"自定义提取"
,
$"测算表自定义提取准备执行"
,
1
,
isSingle
);
var
modules
=
exmoduleRepository
.
GetEntities
(
t
=>
t
.
SheetType
==
(
int
)
SheetType
.
Custom
)?.
OrderBy
(
t
=>
t
.
ModuleName
);
var
modules
=
exmoduleRepository
.
GetEntities
(
t
=>
t
.
SheetType
==
(
int
)
SheetType
.
Custom
&&
t
.
HospitalId
==
allot
.
HospitalId
)?.
OrderBy
(
t
=>
t
.
ModuleName
);
if
(
modules
==
null
||
!
modules
.
Any
())
return
;
var
exscripts
=
exscriptRepository
.
GetEntities
(
t
=>
modules
.
Select
(
s
=>
s
.
TypeId
).
Contains
(
t
.
TypeId
));
...
...
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