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
ea9615ad
Commit
ea9615ad
authored
May 21, 2020
by
lcx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改实体类型
parent
4efb0fad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
performance/Performance.Api/wwwroot/Performance.EntityModels.xml
+5
-0
performance/Performance.EntityModels/Entity/per_allot.cs
+1
-1
performance/Performance.Services/AllotService.cs
+1
-1
No files found.
performance/Performance.Api/wwwroot/Performance.EntityModels.xml
View file @
ea9615ad
...
...
@@ -2447,6 +2447,11 @@
是否在抽取数据0 否、1 是、2 抽取成功、3 抽取失败
</summary>
</member>
<member
name=
"P:Performance.EntityModels.per_allot.Generate"
>
<summary>
1、人事科提交重新生成 2、生成成功
</summary>
</member>
<member
name=
"T:Performance.EntityModels.per_budget_amount"
>
<summary>
预算管理金额
...
...
performance/Performance.EntityModels/Entity/per_allot.cs
View file @
ea9615ad
...
...
@@ -84,6 +84,6 @@ public class per_allot
/// <summary>
/// 1、人事科提交重新生成 2、生成成功
/// </summary>
public
Nullable
<
int
>
Generate
{
get
;
set
;
}
public
int
Generate
{
get
;
set
;
}
}
}
performance/Performance.Services/AllotService.cs
View file @
ea9615ad
...
...
@@ -261,7 +261,7 @@ public void Generate(per_allot allot, string mail)
logManageService
.
WriteMsg
(
"绩效开始执行"
,
$"正在生成
{
allot
.
Year
}
-
{
allot
.
Month
.
ToString
().
PadLeft
(
2
,
'0'
)}
月份绩效!"
,
1
,
allot
.
ID
,
"ReceiveMessage"
,
true
);
var
excel
=
new
PerExcel
();
if
(
(
allot
.
Generate
??
0
)
==
1
)
if
(
allot
.
Generate
==
1
)
{
configService
.
ClearResData
(
allot
.
ID
);
excel
=
queryDataService
.
QueryDataAndHeader
(
allot
);
...
...
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