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
daa778bf
Commit
daa778bf
authored
Nov 29, 2023
by
wyc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
管理详情 排序功能修改
parent
a77bf37f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
35 deletions
+2
-35
performance/Performance.Api/Controllers/ComputeController.cs
+1
-30
performance/Performance.DtoModels/Enum.cs
+1
-5
performance/Performance.Services/ComputeService.UniteDeptDetail.cs
+0
-0
No files found.
performance/Performance.Api/Controllers/ComputeController.cs
View file @
daa778bf
...
@@ -278,35 +278,6 @@ public ApiResponse SaveEmpDetailSetting([FromQuery] int allotId, [FromBody] List
...
@@ -278,35 +278,6 @@ public ApiResponse SaveEmpDetailSetting([FromQuery] int allotId, [FromBody] List
[
HttpPost
]
[
HttpPost
]
public
ApiResponse
EmpDetail
([
FromBody
]
EmpDetailRequest
request
)
public
ApiResponse
EmpDetail
([
FromBody
]
EmpDetailRequest
request
)
{
{
#
region
提示
// 两个入口
// 一种只传参数 ComputeId
// 一种只传参数 AllotId、UnitType、AccountingUnit
/*
考核前绩效
核算人数
人均绩效
基础绩效系数(6.11 个人岗位系数)
出勤率
实际人均
效率绩效人数
效率系数
效率绩效小计
规模绩效系数
规模绩效小计
管理绩效发放系数
考核前管理绩效
考核得分率
考核后管理绩效
医院奖罚(5.2 业务中层行政中高层业务奖罚)
其他管理绩效(6.9 其他管理绩效)
调节系数
调节后其他绩效(6.10 调节后其他管理绩效)
绩效合计
*/
#
endregion
var
userid
=
_claim
.
GetUserId
();
var
userid
=
_claim
.
GetUserId
();
var
response
=
_computeService
.
EmpDetail
(
request
,
userid
);
var
response
=
_computeService
.
EmpDetail
(
request
,
userid
);
return
new
ApiResponse
(
ResponseType
.
OK
,
response
);
return
new
ApiResponse
(
ResponseType
.
OK
,
response
);
...
@@ -324,7 +295,7 @@ public IActionResult DownloadEmpDetail([FromBody] EmpDetailRequest request)
...
@@ -324,7 +295,7 @@ public IActionResult DownloadEmpDetail([FromBody] EmpDetailRequest request)
var
userid
=
_claim
.
GetUserId
();
var
userid
=
_claim
.
GetUserId
();
var
response
=
_computeService
.
EmpDetail
(
request
,
userid
);
var
response
=
_computeService
.
EmpDetail
(
request
,
userid
);
var
filepath
=
_computeService
.
ExcelDownload
(
response
,
"管理绩效详情"
,
request
.
AllotId
);
var
filepath
=
_computeService
.
ExcelDownload
(
response
,
"管理绩效详情"
);
var
memoryStream
=
new
MemoryStream
();
var
memoryStream
=
new
MemoryStream
();
using
(
var
stream
=
new
FileStream
(
filepath
,
FileMode
.
Open
))
using
(
var
stream
=
new
FileStream
(
filepath
,
FileMode
.
Open
))
{
{
...
...
performance/Performance.DtoModels/Enum.cs
View file @
daa778bf
...
@@ -246,9 +246,6 @@ public class ManagementDept
...
@@ -246,9 +246,6 @@ public class ManagementDept
{
{
public
enum
TitleManage
public
enum
TitleManage
{
{
//人员工号 = 2701,
//人员分类 = 2801,
//核算单元 = 2901,
考核前其他绩效
=
3001
,
考核前其他绩效
=
3001
,
考核前绩效
=
3101
,
考核前绩效
=
3101
,
核算人数
=
3200
,
核算人数
=
3200
,
...
@@ -262,17 +259,16 @@ public enum TitleManage
...
@@ -262,17 +259,16 @@ public enum TitleManage
规模绩效系数
=
4000
,
规模绩效系数
=
4000
,
规模绩效小计
=
4100
,
规模绩效小计
=
4100
,
管理绩效发放系数
=
4200
,
管理绩效发放系数
=
4200
,
其他管理绩效
=
4220
,
考核前管理绩效
=
4300
,
考核前管理绩效
=
4300
,
考核得分率
=
4401
,
考核得分率
=
4401
,
考核后管理绩效
=
4500
,
考核后管理绩效
=
4500
,
医院奖罚
=
4601
,
医院奖罚
=
4601
,
夜班费
=
4611
,
夜班费
=
4611
,
考核后绩效
=
4621
,
考核后绩效
=
4621
,
其他管理绩效
=
4700
,
调节系数
=
4801
,
调节系数
=
4801
,
调节后其他绩效
=
4901
,
调节后其他绩效
=
4901
,
调节后其他管理绩效
=
4910
,
调节后其他管理绩效
=
4910
,
// 业务中层行政中高层调节后其他绩效 = 4920,
绩效合计
=
5001
,
绩效合计
=
5001
,
}
}
public
enum
DisplayRule
public
enum
DisplayRule
...
...
performance/Performance.Services/ComputeService.UniteDeptDetail.cs
View file @
daa778bf
This diff is collapsed.
Click to expand it.
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