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
e50ccb07
Commit
e50ccb07
authored
Mar 05, 2025
by
ruyun.zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加以”9.“开头的识别定制纵向数据,仅保存不做处理
parent
9a41ec4b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
performance/Performance.DtoModels/PerExcel/ExcelEnum.cs
+4
-0
performance/Performance.Services/PerExcelService/PerSheetService.cs
+3
-0
No files found.
performance/Performance.DtoModels/PerExcel/ExcelEnum.cs
View file @
e50ccb07
...
@@ -158,6 +158,10 @@ public enum SheetType
...
@@ -158,6 +158,10 @@ public enum SheetType
/// <summary> 抽取数据,不写入 </summary>
/// <summary> 抽取数据,不写入 </summary>
[
Description
(
"抽取数据,不写入"
)]
[
Description
(
"抽取数据,不写入"
)]
OnlyExtract
=
102
,
OnlyExtract
=
102
,
/// <summary> 抽取数据,不写入 </summary>
[
Description
(
"抽取数据,不写入"
)]
ReadOnly
=
91
,
}
}
/// <summary>
/// <summary>
...
...
performance/Performance.Services/PerExcelService/PerSheetService.cs
View file @
e50ccb07
...
@@ -131,6 +131,9 @@ public SheetType GetSheetType(string sheetName)
...
@@ -131,6 +131,9 @@ public SheetType GetSheetType(string sheetName)
else
if
(
sheetName
.
StartsWith
(
"6.9"
))
// 其他管理绩效
else
if
(
sheetName
.
StartsWith
(
"6.9"
))
// 其他管理绩效
return
SheetType
.
PersonOtherManagePerforFee
;
return
SheetType
.
PersonOtherManagePerforFee
;
else
if
(
sheetName
.
StartsWith
(
"9."
))
// lcr定制纵向数据,仅保存不做处理
return
SheetType
.
ReadOnly
;
return
SheetType
.
Unidentifiable
;
return
SheetType
.
Unidentifiable
;
}
}
}
}
...
...
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