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
cec0ed3e
Commit
cec0ed3e
authored
Jul 15, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加照片海康下载
parent
13d4abe4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/rsp/PerformDetailInfo.java
.../java/com/mortals/xhx/busiz/h5/rsp/PerformDetailInfo.java
+10
-0
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/FeedbackApiController.java
...a/com/mortals/xhx/busiz/h5/web/FeedbackApiController.java
+2
-0
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/PerformApiController.java
...va/com/mortals/xhx/busiz/h5/web/PerformApiController.java
+9
-1
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/rsp/PerformDetailInfo.java
View file @
cec0ed3e
...
...
@@ -221,4 +221,14 @@ public class PerformDetailInfo {
* 申诉状态(0.未申诉,1.申诉中,2.申诉拒绝,3.申诉通过)
*/
private
Integer
appealStatus
;
private
String
ruleDesc
;
private
String
deductPerson
;
private
Date
deductTime
;
}
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/FeedbackApiController.java
View file @
cec0ed3e
...
...
@@ -86,6 +86,8 @@ public class FeedbackApiController extends AbstractBaseController<FeedbackReq> {
feedbackQuery
.
setIdList
(
feedbackIdList
);
Result
<
FeedbackEntity
>
result
=
feedbackService
.
find
(
feedbackQuery
,
pageAllInfo
,
null
);
model
.
put
(
PAGEINFO_KEY
,
result
.
getPageInfo
());
model
.
put
(
KEY_RESULT_DATA
,
result
.
getList
());
parsePageInfo
(
model
,
result
.
getPageInfo
());
...
...
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/PerformApiController.java
View file @
cec0ed3e
...
...
@@ -24,7 +24,9 @@ import com.mortals.xhx.module.check.model.vo.CheckAllRecordVo;
import
com.mortals.xhx.module.check.service.*
;
import
com.mortals.xhx.module.perform.model.PerformAttendAppealEntity
;
import
com.mortals.xhx.module.perform.model.PerformAttendAppealQuery
;
import
com.mortals.xhx.module.perform.model.PerformRulesEntity
;
import
com.mortals.xhx.module.perform.service.PerformAttendAppealService
;
import
com.mortals.xhx.module.perform.service.PerformRulesService
;
import
com.mortals.xhx.module.staff.model.StaffPerformStatEntity
;
import
com.mortals.xhx.module.staff.model.StaffPerformStatQuery
;
import
com.mortals.xhx.module.staff.service.StaffPerformStatService
;
...
...
@@ -78,6 +80,8 @@ public class PerformApiController extends AbstractBaseController<PerformReq> {
private
CheckAllRecordDao
checkAllRecordDao
;
@Autowired
private
StaffPerformStatService
staffPerformStatService
;
@Autowired
private
PerformRulesService
rulesService
;
/**
* 个人当天绩效统计
...
...
@@ -201,7 +205,6 @@ public class PerformApiController extends AbstractBaseController<PerformReq> {
return
performInfo
;
}).
collect
(
Collectors
.
toList
());
model
.
put
(
KEY_RESULT_DATA
,
collect
);
model
.
put
(
PAGEINFO_KEY
,
result
.
getPageInfo
());
parsePageInfo
(
model
,
result
.
getPageInfo
());
...
...
@@ -412,6 +415,11 @@ public class PerformApiController extends AbstractBaseController<PerformReq> {
}
}
PerformRulesEntity
rulesEntity
=
rulesService
.
getCache
(
performDetailInfo
.
getRuleId
().
toString
());
performDetailInfo
.
setRuleDesc
(
rulesEntity
.
getContent
());
rest
.
setData
(
performDetailInfo
);
log
.
info
(
"rspperformDetailInfo:{}"
,
JSON
.
toJSONString
(
performDetailInfo
));
...
...
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