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
a00c6c01
Commit
a00c6c01
authored
Jul 18, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
45cb9754
0036ddd5
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
762 additions
and
645 deletions
+762
-645
attendance-performance-manager-ui/admin/src/views/attendance/stat/list.vue
...mance-manager-ui/admin/src/views/attendance/stat/list.vue
+11
-6
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/PerformApiController.java
...va/com/mortals/xhx/busiz/h5/web/PerformApiController.java
+2
-0
attendance-performance-manager/src/main/java/com/mortals/xhx/module/attendance/model/AttendanceStatEntity.java
...als/xhx/module/attendance/model/AttendanceStatEntity.java
+30
-631
attendance-performance-manager/src/main/java/com/mortals/xhx/module/attendance/model/AttendanceStatQuery.java
...tals/xhx/module/attendance/model/AttendanceStatQuery.java
+508
-1
attendance-performance-manager/src/main/resources/sqlmap/module/attendance/AttendanceStatMapper.xml
...sources/sqlmap/module/attendance/AttendanceStatMapper.xml
+206
-7
db/add.sql
db/add.sql
+5
-0
doc/考勤绩效管理系统.docx
doc/考勤绩效管理系统.docx
+0
-0
No files found.
attendance-performance-manager-ui/admin/src/views/attendance/stat/list.vue
View file @
a00c6c01
...
@@ -111,11 +111,11 @@
...
@@ -111,11 +111,11 @@
if
(
element
.
attendanceStaffStatEntities
.
length
>
0
){
if
(
element
.
attendanceStaffStatEntities
.
length
>
0
){
element
.
attendanceStaffStatEntities
.
forEach
(
item1
=>
{
element
.
attendanceStaffStatEntities
.
forEach
(
item1
=>
{
item1
.
createTime
=
timestampToTime
(
item1
.
createTime
,
3
)
item1
.
createTime
=
timestampToTime
(
item1
.
createTime
,
3
)
})
})
}
}
})
})
return
row
return
row
},
},
/** 重写新增方法 */
/** 重写新增方法 */
toAdd
(
row
)
{
toAdd
(
row
)
{
...
@@ -195,13 +195,13 @@
...
@@ -195,13 +195,13 @@
name
:
"
staffName
"
,
name
:
"
staffName
"
,
type
:
"
text
"
,
type
:
"
text
"
,
label
:
"
员工姓名
"
,
label
:
"
员工姓名
"
,
fuzzy
:
fals
e
fuzzy
:
tru
e
},
},
{
{
name
:
"
phoneNumber
"
,
name
:
"
phoneNumber
"
,
type
:
"
text
"
,
type
:
"
text
"
,
label
:
"
手机号
"
,
label
:
"
手机号
"
,
fuzzy
:
fals
e
fuzzy
:
tru
e
}
}
],
],
columns
:
[
columns
:
[
...
@@ -211,7 +211,12 @@
...
@@ -211,7 +211,12 @@
{
label
:
"
窗口类别
"
,
prop
:
"
windowCategory
"
,
fixed
:
'
left
'
,
width
:
100
},
{
label
:
"
窗口类别
"
,
prop
:
"
windowCategory
"
,
fixed
:
'
left
'
,
width
:
100
},
{
label
:
"
员工姓名
"
,
prop
:
"
staffName
"
,
fixed
:
'
left
'
,
width
:
100
},
{
label
:
"
员工姓名
"
,
prop
:
"
staffName
"
,
fixed
:
'
left
'
,
width
:
100
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
},
{
label
:
"
部门
"
,
prop
:
"
deptName
"
},
{
label
:
"
出勤天数
"
,
prop
:
"
goTimes
"
,
formatter
:
this
.
formatter
},
{
label
:
"
上午缺卡次数
"
,
prop
:
"
morningTimes
"
,
formatter
:
this
.
formatter
},
{
label
:
"
下午缺卡次数
"
,
prop
:
"
afternoonTimes
"
,
formatter
:
this
.
formatter
},
{
label
:
"
回单位(天)
"
,
prop
:
"
backToUnit
"
},
{
label
:
"
回单位(天)
"
,
prop
:
"
backToUnit
"
},
{
label
:
"
因公请假(天)
"
,
prop
:
"
onDutyLeave
"
},
{
label
:
"
因公请假(天)
"
,
prop
:
"
onDutyLeave
"
},
...
@@ -296,4 +301,4 @@
...
@@ -296,4 +301,4 @@
margin: 20px 0;
margin: 20px 0;
color: #999;
color: #999;
}
}
</
style
>
</
style
>
\ No newline at end of file
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/PerformApiController.java
View file @
a00c6c01
...
@@ -188,6 +188,8 @@ public class PerformApiController extends AbstractBaseController<PerformReq> {
...
@@ -188,6 +188,8 @@ public class PerformApiController extends AbstractBaseController<PerformReq> {
List
<
PerformInfo
>
collect
=
allCheckRecord
.
stream
().
map
(
item
->
{
List
<
PerformInfo
>
collect
=
allCheckRecord
.
stream
().
map
(
item
->
{
PerformInfo
performInfo
=
new
PerformInfo
();
PerformInfo
performInfo
=
new
PerformInfo
();
BeanUtils
.
copyProperties
(
item
,
performInfo
,
BeanUtil
.
getNullPropertyNames
(
item
));
BeanUtils
.
copyProperties
(
item
,
performInfo
,
BeanUtil
.
getNullPropertyNames
(
item
));
PerformAttendAppealEntity
entity
=
appealService
.
selectOne
(
new
PerformAttendAppealQuery
().
checkRecordId
(
item
.
getRecordId
()));
updateAppealResult
(
performInfo
,
entity
);
return
performInfo
;
return
performInfo
;
}).
collect
(
Collectors
.
toList
());
}).
collect
(
Collectors
.
toList
());
model
.
put
(
KEY_RESULT_DATA
,
collect
);
model
.
put
(
KEY_RESULT_DATA
,
collect
);
...
...
attendance-performance-manager/src/main/java/com/mortals/xhx/module/attendance/model/AttendanceStatEntity.java
View file @
a00c6c01
This diff is collapsed.
Click to expand it.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/attendance/model/AttendanceStatQuery.java
View file @
a00c6c01
This diff is collapsed.
Click to expand it.
attendance-performance-manager/src/main/resources/sqlmap/module/attendance/AttendanceStatMapper.xml
View file @
a00c6c01
This diff is collapsed.
Click to expand it.
db/add.sql
View file @
a00c6c01
...
@@ -762,3 +762,8 @@ PRIMARY KEY (`id`)
...
@@ -762,3 +762,8 @@ PRIMARY KEY (`id`)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'请假记录信息'
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'请假记录信息'
;
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`phoneNumer`
varchar
(
64
)
default
''
COMMENT
'手机号码'
AFTER
staffName
;
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`goTimes`
int
(
9
)
default
0
COMMENT
'出勤天数'
AFTER
phoneNumer
;
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`morningTimes`
int
(
9
)
default
0
COMMENT
'上午缺卡次数'
AFTER
goTimes
;
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`afternoonTimes`
int
(
9
)
default
0
COMMENT
'下午缺卡次数'
AFTER
morningTimes
;
doc/考勤绩效管理系统.docx
View file @
a00c6c01
No preview for this file type
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