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
1ab989c7
Commit
1ab989c7
authored
Jun 27, 2022
by
1391696987
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改注释以及保存人员标签列头匹配改为转小写匹配
parent
ac711091
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
performance/Performance.Api/Controllers/ReportGlobalController.cs
+1
-1
performance/Performance.Api/wwwroot/Performance.Api.xml
+1
-1
performance/Performance.Services/ReportGlobalService.cs
+1
-1
No files found.
performance/Performance.Api/Controllers/ReportGlobalController.cs
View file @
1ab989c7
...
...
@@ -200,7 +200,7 @@ public ActionResult DownloadReportPersonTag(int hospitalId, int allotId)
}
/// <summary>
/// 保存
科室
标签配置
/// 保存
人员
标签配置
/// </summary>
/// <param name="hospitalId"></param>
/// <param name="allotId"></param>
...
...
performance/Performance.Api/wwwroot/Performance.Api.xml
View file @
1ab989c7
...
...
@@ -2026,7 +2026,7 @@
</member>
<member
name=
"M:Performance.Api.Controllers.ReportGlobalController.SaveReportPersonTag(System.Int32,System.Int32,Performance.DtoModels.SaveCollectData)"
>
<summary>
保存
科室
标签配置
保存
人员
标签配置
</summary>
<param
name=
"hospitalId"
></param>
<param
name=
"allotId"
></param>
...
...
performance/Performance.Services/ReportGlobalService.cs
View file @
1ab989c7
...
...
@@ -916,7 +916,7 @@ public void SaveReportTag(int hospitalId, SaveCollectData request)
for
(
int
c
=
0
;
c
<
request
.
ColHeaders
.
Length
;
c
++)
{
var
header
=
request
.
ColHeaders
[
c
];
var
first
=
alias
.
FirstOrDefault
(
w
=>
w
.
Alias
==
header
);
var
first
=
alias
.
FirstOrDefault
(
w
=>
w
.
Alias
.
ToLower
()
==
header
.
ToLower
()
);
if
(!
default
(
KeyValuePair
<
string
,
string
>).
Equals
(
first
)
&&
!
result
.
ContainsKey
(
header
)
&&
request
.
Data
[
rownumber
].
Length
>
c
)
...
...
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