Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
e8774cf1
Commit
e8774cf1
authored
Jul 11, 2024
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
档案完整监控
parent
454f34cf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
TCompleteMonitorVo.java
...fu/cloud/plus/v1/yifu/archives/vo/TCompleteMonitorVo.java
+10
-10
TCompleteMonitorMapper.xml
...-biz/src/main/resources/mapper/TCompleteMonitorMapper.xml
+3
-3
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TCompleteMonitorVo.java
View file @
e8774cf1
...
...
@@ -102,26 +102,26 @@ public class TCompleteMonitorVo implements Serializable {
/**
* 6月及后入职人数
*/
@ExcelAttribute
(
name
=
"
6
月及后入职人数"
)
@Schema
(
description
=
"
6
月及后入职人数"
)
@ExcelProperty
(
"
6
月及后入职人数"
)
@ExcelAttribute
(
name
=
"
8
月及后入职人数"
)
@Schema
(
description
=
"
8
月及后入职人数"
)
@ExcelProperty
(
"
8
月及后入职人数"
)
private
Integer
afterEmployment
;
/**
* 6月及后入职信息是否完整
*/
@Length
(
max
=
1
,
message
=
"
6
月及后入职信息是否完整 不能超过1 个字符"
)
@ExcelAttribute
(
name
=
"
6
月及后入职信息是否完整"
,
maxLength
=
1
,
readConverterExp
=
"0=是,1=否"
)
@Schema
(
description
=
"
6
月及后入职信息是否完整"
)
@ExcelProperty
(
"
6
月及后入职信息是否完整"
)
@Length
(
max
=
1
,
message
=
"
8
月及后入职信息是否完整 不能超过1 个字符"
)
@ExcelAttribute
(
name
=
"
8
月及后入职信息是否完整"
,
maxLength
=
1
,
readConverterExp
=
"0=是,1=否"
)
@Schema
(
description
=
"
8
月及后入职信息是否完整"
)
@ExcelProperty
(
"
8
月及后入职信息是否完整"
)
private
String
afterIsComplete
;
/**
* 6月及后入职信息不完整人数
*/
@ExcelAttribute
(
name
=
"
6
月及后入职信息不完整人数"
)
@Schema
(
description
=
"
6
月及后入职信息不完整人数"
)
@ExcelProperty
(
"
6
月及后入职信息不完整人数"
)
@ExcelAttribute
(
name
=
"
8
月及后入职信息不完整人数"
)
@Schema
(
description
=
"
8
月及后入职信息不完整人数"
)
@ExcelProperty
(
"
8
月及后入职信息不完整人数"
)
private
Integer
afterIncompleteNum
;
/**
...
...
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TCompleteMonitorMapper.xml
View file @
e8774cf1
...
...
@@ -179,9 +179,9 @@
if(sum(if((PROJECT_STATUS = 0 and IS_COMPLETE = '0') or PROJECT_STATUS = 1,0,1)) > 0,1,0) as IS_COMPLETE,
sum(if((PROJECT_STATUS = 0 and IS_COMPLETE = '0') or PROJECT_STATUS = 1,0,1)) as INCOMPLETE_NUM,
concat(ROUND((sum(if(PROJECT_STATUS = 0,1,0)) - sum(if((PROJECT_STATUS = 0 and IS_COMPLETE = '0') or PROJECT_STATUS = 1,0,1)))*100/sum(if(PROJECT_STATUS = 0,1,0)),2),'%') as COMPLETE_PER,
sum(if(PROJECT_STATUS = 0 and DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') >= '2024-0
5
-01',1,0)) as AFTER_EMPLOYMENT,
if(sum(if((PROJECT_STATUS = 0 and DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') >= '2024-0
5-01' and IS_COMPLETE = '0') or '2024-05
-01' > DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') or PROJECT_STATUS = 1,0,1)) > 0,1,0) AFTER_IS_COMPLETE,
sum(if(PROJECT_STATUS = 0 and DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') >= '2024-0
5
-01' and IS_COMPLETE = '1',1,0)) as AFTER_INCOMPLETE_NUM
sum(if(PROJECT_STATUS = 0 and DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') >= '2024-0
8
-01',1,0)) as AFTER_EMPLOYMENT,
if(sum(if((PROJECT_STATUS = 0 and DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') >= '2024-0
8-01' and IS_COMPLETE = '0') or '2024-08
-01' > DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') or PROJECT_STATUS = 1,0,1)) > 0,1,0) AFTER_IS_COMPLETE,
sum(if(PROJECT_STATUS = 0 and DATE_FORMAT(CREATE_TIME,'%Y-%m-%d') >= '2024-0
8
-01' and IS_COMPLETE = '1',1,0)) as AFTER_INCOMPLETE_NUM
from t_employee_project where DELETE_FLAG = '0' and PROJECT_STATUS = 0 group by DEPT_NO) a on a.DEPT_NO = b.DEPART_NO
where b.DELETE_FLAG = '0'
<if
test=
"deptNo != null and deptNo.trim() != ''"
>
...
...
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