Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
haoban3.0
haoban-manage3.0
Commits
7d4fb148
Commit
7d4fb148
authored
Mar 16, 2022
by
墨竹
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into developer
parents
81334f8e
9d293256
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
21 deletions
+25
-21
DepartmentServiceImpl.java
...an/manage/service/service/impl/DepartmentServiceImpl.java
+3
-0
AuditApiServiceImpl.java
.../manage/service/service/out/impl/AuditApiServiceImpl.java
+8
-6
DepartmentMapper.xml
...e3-service/src/main/resources/mapper/DepartmentMapper.xml
+0
-0
StaffMapper.xml
...manage3-service/src/main/resources/mapper/StaffMapper.xml
+14
-15
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/DepartmentServiceImpl.java
View file @
7d4fb148
...
...
@@ -182,6 +182,9 @@ public class DepartmentServiceImpl implements DepartmentService {
@Override
public
List
<
DepartmentDTO
>
listByIds
(
List
<
String
>
departmentIds
)
{
if
(
CollectionUtils
.
isEmpty
(
departmentIds
))
{
return
null
;
}
return
EntityUtil
.
changeEntityListByJSON
(
DepartmentDTO
.
class
,
mapper
.
listByIds
(
departmentIds
));
}
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/AuditApiServiceImpl.java
View file @
7d4fb148
...
...
@@ -120,12 +120,14 @@ public class AuditApiServiceImpl implements AuditApiService {
}
if
(
CollectionUtil
.
isNotEmpty
(
page
.
getResult
()))
{
List
<
String
>
commitStaffIds
=
page
.
getResult
().
stream
().
map
(
s
->
s
.
getCommitStaffId
()).
collect
(
Collectors
.
toList
());
List
<
TabHaobanStaff
>
staffList
=
staffMapper
.
listByIds
(
commitStaffIds
);
Map
<
String
,
TabHaobanStaff
>
map
=
com
.
gic
.
commons
.
util
.
CollectionUtil
.
toMap
(
staffList
,
"staffId"
);
for
(
TabHaobanAudit
tab
:
page
.
getResult
())
{
String
commitStaffId
=
tab
.
getCommitStaffId
();
tab
.
setCommitStaffName
(
map
.
get
(
commitStaffId
)
==
null
?
""
:
map
.
get
(
commitStaffId
).
getStaffName
());
tab
.
setCommitStaffImg
(
map
.
get
(
commitStaffId
)
==
null
?
""
:
map
.
get
(
commitStaffId
).
getHeadImg
());
if
(
CollectionUtil
.
isNotEmpty
(
commitStaffIds
))
{
List
<
TabHaobanStaff
>
staffList
=
staffMapper
.
listByIds
(
commitStaffIds
);
Map
<
String
,
TabHaobanStaff
>
map
=
com
.
gic
.
commons
.
util
.
CollectionUtil
.
toMap
(
staffList
,
"staffId"
);
for
(
TabHaobanAudit
tab
:
page
.
getResult
())
{
String
commitStaffId
=
tab
.
getCommitStaffId
();
tab
.
setCommitStaffName
(
map
.
get
(
commitStaffId
)
==
null
?
""
:
map
.
get
(
commitStaffId
).
getStaffName
());
tab
.
setCommitStaffImg
(
map
.
get
(
commitStaffId
)
==
null
?
""
:
map
.
get
(
commitStaffId
).
getHeadImg
());
}
}
}
return
PageUtil
.
changePageHelperToCurrentPage
(
page
,
AuditDTO
.
class
);
...
...
haoban-manage3-service/src/main/resources/mapper/DepartmentMapper.xml
View file @
7d4fb148
This diff is collapsed.
Click to expand it.
haoban-manage3-service/src/main/resources/mapper/StaffMapper.xml
View file @
7d4fb148
...
...
@@ -45,7 +45,8 @@
<update
id=
"delOtherStaffByWxUserId"
>
update tab_haoban_staff
set status_flag = 0,update_time = now()
set status_flag = 0,
update_time = now()
where wx_enterprise_id = #{wxEnterpriseId}
and wx_user_id = #{wxUserId}
and status_flag = 1
...
...
@@ -295,12 +296,10 @@
<include
refid=
"Base_Column_List"
/>
from tab_haoban_staff
where status_flag = 1
<if
test=
"staffIds != null and staffIds.size() > 0"
>
and staff_id IN
<foreach
collection=
"staffIds"
item=
"id"
index=
"index"
open=
"("
close=
")"
separator=
","
>
#{id,jdbcType=VARCHAR}
</foreach>
</if>
and staff_id IN
<foreach
collection=
"staffIds"
item=
"id"
index=
"index"
open=
"("
close=
")"
separator=
","
>
#{id,jdbcType=VARCHAR}
</foreach>
</select>
<select
id=
"listByWxUserId"
resultMap=
"BaseResultMap"
>
select
...
...
@@ -344,12 +343,10 @@
from tab_haoban_staff
where status_flag = 1
and wx_enterprise_id = #{wxEnterpriseId}
<if
test=
"userIds != null and userIds.size() > 0"
>
and wx_user_id IN
<foreach
collection=
"userIds"
item=
"id"
index=
"index"
open=
"("
close=
")"
separator=
","
>
#{id,jdbcType=VARCHAR}
</foreach>
</if>
and wx_user_id IN
<foreach
collection=
"userIds"
item=
"id"
index=
"index"
open=
"("
close=
")"
separator=
","
>
#{id,jdbcType=VARCHAR}
</foreach>
</select>
<update
id=
"cleanStaff"
parameterType=
"com.gic.haoban.manage.service.entity.TabHaobanStaff"
>
...
...
@@ -473,7 +470,8 @@
<update
id=
"delStaffByWxUserId"
>
update tab_haoban_staff
set status_flag = 0,update_time = now()
set status_flag = 0,
update_time = now()
where wx_enterprise_id = #{wxEnterpriseId}
and wx_user_id = #{wxUserId}
and status_flag = 1
...
...
@@ -482,7 +480,8 @@
<update
id=
"delStaffByPhoneNumber"
>
update tab_haoban_staff
set status_flag = 0,update_time = now()
set status_flag = 0,
update_time = now()
where wx_enterprise_id = #{wxEnterpriseId}
and phone_number = #{phoneNumber}
and status_flag = 1
...
...
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