Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
attendance-performance-platform
Commits
61abed36
Commit
61abed36
authored
May 15, 2024
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
绩效申述不通过也将核查处理状态更新为已处理
parent
b9cdd5b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
0 deletions
+58
-0
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/service/impl/PerformAttendAppealServiceImpl.java
.../perform/service/impl/PerformAttendAppealServiceImpl.java
+58
-0
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/service/impl/PerformAttendAppealServiceImpl.java
View file @
61abed36
...
@@ -271,6 +271,64 @@ public class PerformAttendAppealServiceImpl extends AbstractCRUDServiceImpl<Perf
...
@@ -271,6 +271,64 @@ public class PerformAttendAppealServiceImpl extends AbstractCRUDServiceImpl<Perf
}
}
}
}
}
}
}
else
{
if
(
PerformTypeEnum
.
考勤绩效
.
getValue
().
equals
(
appealEntity
.
getPerformType
()))
{
CheckAttendRecordEntity
checkEntity
=
checkAttendRecordService
.
get
(
appealEntity
.
getCheckRecordId
(),
context
);
if
(
checkEntity
!=
null
)
{
if
(
checkEntity
.
getCheckStatus
()!=
CheckStatusEnum
.
已处理
.
getValue
()){
checkEntity
.
setCheckResult
(
CheckResultSubEnum
.
核查扣分
.
getValue
());
checkAttendRecordService
.
examine
(
checkEntity
,
context
);
}
}
}
else
if
(
PerformTypeEnum
.
评价差评绩效
.
getValue
().
equals
(
appealEntity
.
getPerformType
()))
{
CheckReviewRecordEntity
checkEntity
=
checkReviewRecordService
.
get
(
appealEntity
.
getCheckRecordId
(),
context
);
if
(
checkEntity
!=
null
)
{
if
(
checkEntity
.
getCheckStatus
()!=
CheckStatusEnum
.
已处理
.
getValue
()){
checkEntity
.
setCheckResult
(
CheckResultSubEnum
.
核查扣分
.
getValue
());
checkReviewRecordService
.
examine
(
checkEntity
,
context
);
}
}
}
else
if
(
PerformTypeEnum
.
评价投诉绩效
.
getValue
().
equals
(
appealEntity
.
getPerformType
()))
{
CheckComplainRecordEntity
checkEntity
=
checkComplainRecordService
.
get
(
appealEntity
.
getCheckRecordId
(),
context
);
if
(
checkEntity
!=
null
)
{
if
(
checkEntity
.
getCheckStatus
()!=
CheckStatusEnum
.
已处理
.
getValue
()){
checkEntity
.
setCheckResult
(
CheckResultSubEnum
.
核查扣分
.
getValue
());
checkComplainRecordService
.
examine
(
checkEntity
,
context
);
}
}
}
else
if
(
PerformTypeEnum
.
办件绩效
.
getValue
().
equals
(
appealEntity
.
getPerformType
()))
{
CheckGoworkRecordEntity
checkEntity
=
checkGoworkRecordService
.
get
(
appealEntity
.
getCheckRecordId
(),
context
);
if
(
checkEntity
!=
null
)
{
if
(
checkEntity
.
getCheckStatus
()!=
CheckStatusEnum
.
已处理
.
getValue
()){
checkEntity
.
setCheckResult
(
CheckResultSubEnum
.
核查扣分
.
getValue
());
checkGoworkRecordService
.
examine
(
checkEntity
,
context
);
}
}
}
else
if
(
PerformTypeEnum
.
效能绩效
.
getValue
().
equals
(
appealEntity
.
getPerformType
()))
{
CheckEffectRecordEntity
checkEntity
=
checkEffectRecordService
.
get
(
appealEntity
.
getCheckRecordId
(),
context
);
if
(
checkEntity
!=
null
)
{
if
(
checkEntity
.
getCheckStatus
()!=
CheckStatusEnum
.
已处理
.
getValue
()){
checkEntity
.
setCheckResult
(
CheckResultSubEnum
.
核查扣分
.
getValue
());
checkEffectRecordService
.
examine
(
checkEntity
,
context
);
}
}
}
else
if
(
PerformTypeEnum
.
其它绩效
.
getValue
().
equals
(
appealEntity
.
getPerformType
()))
{
CheckOtherRecordEntity
checkEntity
=
checkOtherRecordService
.
get
(
appealEntity
.
getCheckRecordId
(),
context
);
if
(
checkEntity
!=
null
)
{
if
(
checkEntity
.
getCheckStatus
()!=
CheckStatusEnum
.
已处理
.
getValue
()){
checkEntity
.
setCheckResult
(
CheckResultSubEnum
.
核查扣分
.
getValue
());
checkOtherRecordService
.
examine
(
checkEntity
,
context
);
}
}
}
}
}
//更新绩效异常信息核查状态
//更新绩效异常信息核查状态
try
{
try
{
...
...
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