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
b7afba65
Commit
b7afba65
authored
Mar 04, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.7-处理userId
parent
1e74e2d5
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
35 additions
and
14 deletions
+35
-14
TEmployeeProject.java
.../cloud/plus/v1/yifu/archives/entity/TEmployeeProject.java
+8
-0
TEmployeeProjectBelongDeptSearchCspVo.java
...fu/archives/vo/TEmployeeProjectBelongDeptSearchCspVo.java
+6
-0
TEmployeeInfoServiceImpl.java
.../yifu/archives/service/impl/TEmployeeInfoServiceImpl.java
+2
-0
TEmployeeProjectServiceImpl.java
...fu/archives/service/impl/TEmployeeProjectServiceImpl.java
+11
-0
TOperationLogController.java
...cloud/plus/v1/csp/controller/TOperationLogController.java
+0
-5
EmployeeRegistrationServiceImpl.java
.../v1/csp/service/impl/EmployeeRegistrationServiceImpl.java
+2
-6
TOperationLogServiceImpl.java
...ud/plus/v1/csp/service/impl/TOperationLogServiceImpl.java
+1
-1
EmployeeRegistrationMapper.xml
.../src/main/resources/mapper/EmployeeRegistrationMapper.xml
+5
-2
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TEmployeeProject.java
View file @
b7afba65
...
@@ -435,4 +435,12 @@ public class TEmployeeProject extends BaseEntity {
...
@@ -435,4 +435,12 @@ public class TEmployeeProject extends BaseEntity {
@TableField
(
exist
=
false
)
@TableField
(
exist
=
false
)
private
String
empDeptid
;
private
String
empDeptid
;
@Schema
(
description
=
"操作的用户id"
)
@TableField
(
exist
=
false
)
private
String
operationUserId
;
@Schema
(
description
=
"操作的用户Name"
)
@TableField
(
exist
=
false
)
private
String
operationUserName
;
}
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TEmployeeProjectBelongDeptSearchCspVo.java
View file @
b7afba65
...
@@ -49,4 +49,10 @@ public class TEmployeeProjectBelongDeptSearchCspVo {
...
@@ -49,4 +49,10 @@ public class TEmployeeProjectBelongDeptSearchCspVo {
@Schema
(
description
=
"项目档案创建与离职人"
)
@Schema
(
description
=
"项目档案创建与离职人"
)
private
String
empCreateAndLeaveUser
;
private
String
empCreateAndLeaveUser
;
@Schema
(
description
=
"登录人Id"
)
private
String
userId
;
// 项目档案入离职日期,与日志确认接收时间比较
@Schema
(
description
=
"登录人姓名"
)
private
String
userName
;
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TEmployeeInfoServiceImpl.java
View file @
b7afba65
...
@@ -2580,6 +2580,8 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
...
@@ -2580,6 +2580,8 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
.
last
(
CommonConstants
.
LAST_ONE_SQL
));
.
last
(
CommonConstants
.
LAST_ONE_SQL
));
if
(
Common
.
isNotNull
(
p
))
{
if
(
Common
.
isNotNull
(
p
))
{
p
.
setStatus
(
CommonConstants
.
ONE_INT
);
p
.
setStatus
(
CommonConstants
.
ONE_INT
);
p
.
setOperationUserId
(
vo
.
getCreateBy
());
p
.
setOperationUserName
(
vo
.
getCreateName
());
// hgw加所属部门逻辑:
// hgw加所属部门逻辑:
tEmployeeProjectService
.
doSaveBelongDept
(
p
,
CommonConstants
.
ONE_STRING
);
tEmployeeProjectService
.
doSaveBelongDept
(
p
,
CommonConstants
.
ONE_STRING
);
}
}
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TEmployeeProjectServiceImpl.java
View file @
b7afba65
...
@@ -2084,6 +2084,17 @@ public class TEmployeeProjectServiceImpl extends ServiceImpl<TEmployeeProjectMap
...
@@ -2084,6 +2084,17 @@ public class TEmployeeProjectServiceImpl extends ServiceImpl<TEmployeeProjectMap
searchCspVo
.
setDeptId
(
p
.
getDeptId
());
searchCspVo
.
setDeptId
(
p
.
getDeptId
());
searchCspVo
.
setEmpIdCard
(
p
.
getEmpIdcard
());
searchCspVo
.
setEmpIdCard
(
p
.
getEmpIdcard
());
searchCspVo
.
setFeedbackType
(
feedbackType
);
searchCspVo
.
setFeedbackType
(
feedbackType
);
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
user
!=
null
&&
Common
.
isNotNull
(
user
.
getNickname
()))
{
searchCspVo
.
setUserId
(
p
.
getOperationUserId
());
searchCspVo
.
setUserName
(
p
.
getOperationUserName
());
}
else
if
(
Common
.
isNotNull
(
p
.
getOperationUserId
()))
{
searchCspVo
.
setUserId
(
p
.
getOperationUserId
());
searchCspVo
.
setUserName
(
p
.
getOperationUserName
());
}
else
{
searchCspVo
.
setUserId
(
p
.
getCreateBy
());
searchCspVo
.
setUserName
(
p
.
getCreateName
());
}
if
(
CommonConstants
.
ONE_STRING
.
equals
(
feedbackType
))
{
if
(
CommonConstants
.
ONE_STRING
.
equals
(
feedbackType
))
{
searchCspVo
.
setEmpCreateAndLeaveTime
(
p
.
getCreateTime
());
searchCspVo
.
setEmpCreateAndLeaveTime
(
p
.
getCreateTime
());
searchCspVo
.
setEmpCreateAndLeaveUser
(
p
.
getCreateName
());
searchCspVo
.
setEmpCreateAndLeaveUser
(
p
.
getCreateName
());
...
...
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/controller/TOperationLogController.java
View file @
b7afba65
...
@@ -22,12 +22,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
...
@@ -22,12 +22,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import
com.yifu.cloud.plus.v1.csp.entity.TOperationLog
;
import
com.yifu.cloud.plus.v1.csp.entity.TOperationLog
;
import
com.yifu.cloud.plus.v1.csp.service.TOperationLogService
;
import
com.yifu.cloud.plus.v1.csp.service.TOperationLogService
;
import
com.yifu.cloud.plus.v1.csp.vo.TOperationLogSearchVo
;
import
com.yifu.cloud.plus.v1.csp.vo.TOperationLogSearchVo
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TEmployeeProjectBelongDeptSearchCspVo
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.security.annotation.Inner
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.RequiredArgsConstructor
;
import
lombok.RequiredArgsConstructor
;
...
...
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/service/impl/EmployeeRegistrationServiceImpl.java
View file @
b7afba65
...
@@ -521,10 +521,6 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
...
@@ -521,10 +521,6 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
* @return: boolean
* @return: boolean
**/
**/
private
boolean
doSaveLogBatch
(
TEmployeeProjectBelongDeptSearchCspVo
searchCspVo
,
List
<
TEmployeeProjectBelongDept
>
belongDeptList
)
{
private
boolean
doSaveLogBatch
(
TEmployeeProjectBelongDeptSearchCspVo
searchCspVo
,
List
<
TEmployeeProjectBelongDept
>
belongDeptList
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
user
==
null
||
Common
.
isEmpty
(
user
.
getId
()))
{
return
true
;
}
TOperationLog
log
;
TOperationLog
log
;
List
<
TOperationLog
>
logList
=
new
ArrayList
<>();
List
<
TOperationLog
>
logList
=
new
ArrayList
<>();
String
title
=
"已处理"
;
String
title
=
"已处理"
;
...
@@ -543,8 +539,8 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
...
@@ -543,8 +539,8 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
log
.
setRemark
(
"离职登记前已减员"
);
log
.
setRemark
(
"离职登记前已减员"
);
}
}
}
}
log
.
setCreateBy
(
user
.
get
Id
());
log
.
setCreateBy
(
searchCspVo
.
getUser
Id
());
log
.
setCreateName
(
user
.
getNickn
ame
());
log
.
setCreateName
(
searchCspVo
.
getUserN
ame
());
log
.
setCreateTime
(
LocalDateTime
.
now
());
log
.
setCreateTime
(
LocalDateTime
.
now
());
logList
.
add
(
log
);
logList
.
add
(
log
);
}
}
...
...
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/service/impl/TOperationLogServiceImpl.java
View file @
b7afba65
...
@@ -67,7 +67,7 @@ public class TOperationLogServiceImpl extends ServiceImpl<TOperationLogMapper, T
...
@@ -67,7 +67,7 @@ public class TOperationLogServiceImpl extends ServiceImpl<TOperationLogMapper, T
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
}
}
wrapper
.
orderBy
De
sc
(
TOperationLog:
:
getCreateTime
);
wrapper
.
orderBy
A
sc
(
TOperationLog:
:
getCreateTime
);
return
baseMapper
.
selectList
(
wrapper
);
return
baseMapper
.
selectList
(
wrapper
);
}
}
...
...
yifu-csp/yifu-csp-biz/src/main/resources/mapper/EmployeeRegistrationMapper.xml
View file @
b7afba65
...
@@ -265,13 +265,16 @@
...
@@ -265,13 +265,16 @@
</select>
</select>
<!-- 将数据处理为已处理 -->
<!-- 将数据处理为已处理 -->
<
select
id=
"updateTwoRegistrationByIdCard"
resultType=
"java.lang.Integer
"
>
<
update
id=
"updateTwoRegistrationByIdCard
"
>
update employee_registration a
update employee_registration a
set a.process_status= '2'
set a.process_status= '2'
where a.emp_idcard = #{searchCspVo.empIdCard} and a.process_status= '0'
where a.emp_idcard = #{searchCspVo.empIdCard} and a.process_status= '0'
<if
test=
"searchCspVo.deptId != null and searchCspVo.deptId.trim() != ''"
>
AND a.dept_id = #{searchCspVo.deptId}
</if>
<if
test=
"searchCspVo.feedbackType != null and searchCspVo.feedbackType.trim() != ''"
>
<if
test=
"searchCspVo.feedbackType != null and searchCspVo.feedbackType.trim() != ''"
>
AND a.feedback_type = #{searchCspVo.feedbackType}
AND a.feedback_type = #{searchCspVo.feedbackType}
</if>
</if>
</
select
>
</
update
>
</mapper>
</mapper>
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